Skip to content

Commit 0d42b27

Browse files
committed
bump version, update readme
1 parent f81ba9f commit 0d42b27

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PyniteFEA is excellent and it is generally design-ready...if it weren't for all
66

77
This package provides a series of functions that consume a `Pynite.FEModel3D` object and returns consistently-structured dictionaries of analysis results.
88

9-
> **Note:** As of 2025-06-25, this package has only been "casually tested" (meaning simple visual checking of outputs). No test suite has been written (but is coming).
9+
> **Note:** As of 2025-06-30, this package has only been "casually tested" (meaning simple visual checking of outputs). No test suite has been written (but is coming).
1010
1111

1212
## Installation
@@ -201,13 +201,7 @@ Here is how the above results are returned:
201201

202202
So, you know that all other load combos result in null values _without having to physically read a bunch of zeros or confusing "near zero" values._
203203

204-
The tolerance for this is an absolute tolerance of `1e-8`. Currently, this is not parameterized and is hard-coded into the package (because it was easier and made the function signatures cleaner). So, even if you have REALLY small result values (on the order of `0.0000001` units), those values will still be returned to you (and not excluded).
205-
206-
**Note: Not ALL functions have this behaviour**
207-
208-
Functions which will always return all results:
209-
210-
* `pynite_reporting.extract_member_forces_at_locations`
204+
The tolerance for this is an absolute tolerance of `1e-7`. Currently, this is not parameterized and is hard-coded into the package (because it was easier and made the function signatures cleaner). So, even if you have REALLY small result values (on the order of `0.000001` units), those values will still be returned to you (and not excluded).
211205

212206
This is allows you to see all concurrent forces for a load combination at a given location.
213207

src/pynite_reporting/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
results from solved Pynite.FEModel3D objects.
44
"""
55

6-
__version__ = "0.2.0"
6+
__version__ = "0.3.0"
77

88
from .extraction import (
99
extract_node_reactions,

0 commit comments

Comments
 (0)