midas-civil 0.1.3__tar.gz → 0.1.4__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.
- {midas_civil-0.1.3 → midas_civil-0.1.4}/PKG-INFO +1 -1
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_node.py +4 -2
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil.egg-info/PKG-INFO +1 -1
- {midas_civil-0.1.3 → midas_civil-0.1.4}/setup.py +1 -1
- {midas_civil-0.1.3 → midas_civil-0.1.4}/LICENSE +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/README.md +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/__init__.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_boundary.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_construction.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_construction_backup.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_element.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_group.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_load.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_mapi.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_material.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_model.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_result copy.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_result.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_result_extract.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_section.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_temperature.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_tendon.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_thickness.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_utils.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil/_view.py +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil.egg-info/SOURCES.txt +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil.egg-info/dependency_links.txt +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil.egg-info/requires.txt +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/midas_civil.egg-info/top_level.txt +0 -0
- {midas_civil-0.1.3 → midas_civil-0.1.4}/setup.cfg +0 -0
|
@@ -115,13 +115,14 @@ class Node:
|
|
|
115
115
|
|
|
116
116
|
@staticmethod
|
|
117
117
|
def sync():
|
|
118
|
-
Node.nodes
|
|
118
|
+
Node.nodes=[]
|
|
119
119
|
Node.ids=[]
|
|
120
|
+
Node.Grid={}
|
|
120
121
|
a = Node.get()
|
|
121
122
|
if a != {'message': ''}:
|
|
122
123
|
if list(a['NODE'].keys()) != []:
|
|
123
124
|
for j in a['NODE'].keys():
|
|
124
|
-
Node(round(a['NODE'][j]['X'],6), round(a['NODE'][j]['Y'],6), round(a['NODE'][j]['Z'],6),int(j),0)
|
|
125
|
+
Node(round(a['NODE'][j]['X'],6), round(a['NODE'][j]['Y'],6), round(a['NODE'][j]['Z'],6), id=int(j), group='', merge=0)
|
|
125
126
|
|
|
126
127
|
@staticmethod
|
|
127
128
|
def delete2(nodes_list):
|
|
@@ -142,6 +143,7 @@ class Node:
|
|
|
142
143
|
MidasAPI("DELETE",f"/db/NODE/")
|
|
143
144
|
Node.nodes=[]
|
|
144
145
|
Node.ids=[]
|
|
146
|
+
Node.Grid={}
|
|
145
147
|
|
|
146
148
|
@staticmethod
|
|
147
149
|
def delete():
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|