PyNiteFEA 2.1.0__tar.gz → 2.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pynitefea-2.1.0 → pynitefea-2.2.0}/PKG-INFO +5 -1
- {pynitefea-2.1.0 → pynitefea-2.2.0}/PyNiteFEA.egg-info/PKG-INFO +5 -1
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Rendering.py +642 -99
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Visualization.py +552 -172
- {pynitefea-2.1.0 → pynitefea-2.2.0}/README.md +4 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/setup.py +1 -1
- {pynitefea-2.1.0 → pynitefea-2.2.0}/LICENSE +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/PyNiteFEA.egg-info/SOURCES.txt +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/PyNiteFEA.egg-info/dependency_links.txt +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/PyNiteFEA.egg-info/requires.txt +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/PyNiteFEA.egg-info/top_level.txt +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Analysis.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/BeamSegY.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/BeamSegZ.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/FEModel3D.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/FixedEndReactions.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/LoadCombo.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/MainStyleSheet.css +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/MatFoundation.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Material.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Member3D.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Mesh.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Node3D.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/PhysMember.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Plate3D.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Quad3D.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Report_Template.html +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Reporting.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Section.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/ShearWall.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Spring3D.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/Tri3D.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/VTKWriter.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/Pynite/__init__.py +0 -0
- {pynitefea-2.1.0 → pynitefea-2.2.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyNiteFEA
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
4
4
|
Summary: A simple elastic 3D structural finite element library for Python.
|
|
5
5
|
Home-page: https://github.com/JWock82/Pynite.git
|
|
6
6
|
Author: D. Craig Brinck, PE, SE
|
|
@@ -121,6 +121,10 @@ Here's a list of projects that use Pynite:
|
|
|
121
121
|
* Phaenotyp (https://github.com/bewegende-Architektur/Phaenotyp) (https://youtu.be/shloSw9HjVI)
|
|
122
122
|
|
|
123
123
|
# What's New?
|
|
124
|
+
v2.2.0
|
|
125
|
+
* Added member diagrams feature for easy visualization of shear, moment, axial, and torsion diagrams along members.
|
|
126
|
+
* Updated documentation for rendering.
|
|
127
|
+
|
|
124
128
|
v2.1.0
|
|
125
129
|
* Major speed boost and leaner memory usage: the global stiffness/mass assembly plus the nodal load and fixed-end reaction builders now use block-based vectorized writes instead of Python loops, which keeps data in contiguous NumPy buffers rather than thousands of temporary Python objects. The dense solver sees ~15-25% faster `K`/`M` builds in our targeted benchmarks, while sparse solver runs see ~30% faster stiffness assembly in our benchmarks.
|
|
126
130
|
* Meshes can now be regenerated with the `FEModel3D.meshes[mesh_name].generate()` command. This command removes the old mesh and replaces it with an updated one. The mesh will not remove nodes needed by other elements outside the mesh. Note that any loads applied to the old mesh will be lost when its elements and nodes are deleted. This makes meshes truly parametric.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyNiteFEA
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
4
4
|
Summary: A simple elastic 3D structural finite element library for Python.
|
|
5
5
|
Home-page: https://github.com/JWock82/Pynite.git
|
|
6
6
|
Author: D. Craig Brinck, PE, SE
|
|
@@ -121,6 +121,10 @@ Here's a list of projects that use Pynite:
|
|
|
121
121
|
* Phaenotyp (https://github.com/bewegende-Architektur/Phaenotyp) (https://youtu.be/shloSw9HjVI)
|
|
122
122
|
|
|
123
123
|
# What's New?
|
|
124
|
+
v2.2.0
|
|
125
|
+
* Added member diagrams feature for easy visualization of shear, moment, axial, and torsion diagrams along members.
|
|
126
|
+
* Updated documentation for rendering.
|
|
127
|
+
|
|
124
128
|
v2.1.0
|
|
125
129
|
* Major speed boost and leaner memory usage: the global stiffness/mass assembly plus the nodal load and fixed-end reaction builders now use block-based vectorized writes instead of Python loops, which keeps data in contiguous NumPy buffers rather than thousands of temporary Python objects. The dense solver sees ~15-25% faster `K`/`M` builds in our targeted benchmarks, while sparse solver runs see ~30% faster stiffness assembly in our benchmarks.
|
|
126
130
|
* Meshes can now be regenerated with the `FEModel3D.meshes[mesh_name].generate()` command. This command removes the old mesh and replaces it with an updated one. The mesh will not remove nodes needed by other elements outside the mesh. Note that any loads applied to the old mesh will be lost when its elements and nodes are deleted. This makes meshes truly parametric.
|