midas-civil 0.0.4__tar.gz → 0.0.5__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.

Potentially problematic release.


This version of midas-civil might be problematic. Click here for more details.

Files changed (25) hide show
  1. {midas_civil-0.0.4 → midas_civil-0.0.5}/PKG-INFO +1 -1
  2. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_material.py +1 -1
  3. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_model.py +1 -1
  4. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil.egg-info/PKG-INFO +1 -1
  5. {midas_civil-0.0.4 → midas_civil-0.0.5}/setup.py +1 -1
  6. {midas_civil-0.0.4 → midas_civil-0.0.5}/LICENSE +0 -0
  7. {midas_civil-0.0.4 → midas_civil-0.0.5}/README.md +0 -0
  8. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/__init__.py +0 -0
  9. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_boundary.py +0 -0
  10. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_construction.py +0 -0
  11. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_element.py +0 -0
  12. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_group.py +0 -0
  13. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_load.py +0 -0
  14. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_mapi.py +0 -0
  15. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_node.py +0 -0
  16. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_result.py +0 -0
  17. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_result_extract.py +0 -0
  18. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_section.py +0 -0
  19. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_thickness.py +0 -0
  20. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil/_utils.py +0 -0
  21. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil.egg-info/SOURCES.txt +0 -0
  22. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil.egg-info/dependency_links.txt +0 -0
  23. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil.egg-info/requires.txt +0 -0
  24. {midas_civil-0.0.4 → midas_civil-0.0.5}/midas_civil.egg-info/top_level.txt +0 -0
  25. {midas_civil-0.0.4 → midas_civil-0.0.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: midas_civil
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: Python library for MIDAS Civil NX
5
5
  Author: Sumit Shekhar
6
6
  Author-email: sumit.midasit@gmail.com
@@ -55,7 +55,7 @@ class Material:
55
55
 
56
56
  @staticmethod
57
57
  def create():
58
- if Material.mats!=[] : Material.create()
58
+ if Material.mats!=[] : Material.create_only()
59
59
  if CreepShrinkage.mats!=[] : CreepShrinkage.create()
60
60
  if CompStrength.mats!=[] : CompStrength.create()
61
61
  if TDLink.json()!={'Assign':{}} : TDLink.create()
@@ -230,7 +230,7 @@ class Model:
230
230
  @staticmethod
231
231
  def create():
232
232
  """Create Material, Section, Node, Elements, Groups and Boundary."""
233
- if Material.mats!=[]: Material.createAll()
233
+ if Material.mats!=[]: Material.create()
234
234
  if Section.sect!=[]: Section.create()
235
235
  if Thickness.thick!=[]: Thickness.create()
236
236
  if Node.nodes!=[]: Node.create()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: midas_civil
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: Python library for MIDAS Civil NX
5
5
  Author: Sumit Shekhar
6
6
  Author-email: sumit.midasit@gmail.com
@@ -5,7 +5,7 @@ with open('README.md','r') as f:
5
5
 
6
6
 
7
7
  setup(name='midas_civil',
8
- version='0.0.4',
8
+ version='0.0.5',
9
9
  description='Python library for MIDAS Civil NX',
10
10
  author='Sumit Shekhar',
11
11
  author_email='sumit.midasit@gmail.com',
File without changes
File without changes
File without changes