-
Notifications
You must be signed in to change notification settings - Fork 1
/
initModel.py
438 lines (368 loc) · 14.5 KB
/
initModel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
import sys
import RFEM.dependencies
import requests
from suds.client import Client
from RFEM.enums import ObjectTypes, ModelType, AddOn
from RFEM.suds_requests import RequestsTransport
# Connect to server
# Check server port range set in "Program Options & Settings"
# By default range is set between 8081 ... 8089
print('Connecting to server...')
try:
client = Client('http://localhost:8081/wsdl')
except:
print('Error: Connection to server failed!')
print('Please check:')
print('- If you have started RFEM application')
print('- If all RFEM dialogs are closed')
print('- If server port range is set correctly')
print('- If you have a valid Web Services license')
print('- Check Program Options & Settings > Web Services')
sys.exit()
try:
modelLst = client.service.get_model_list()
except:
print('Error: Please check if all RFEM dialogs are closed.')
input('Press Enter to exit...')
sys.exit()
# Persistent connection
# Next 4 lines enables Client to work within 1 session which is much faster to execute.
# Without it the session lasts only one request which results in poor performance.
# Assigning session to application Client (here client) instead of model Client
# results also in poor performace.
session = requests.Session()
adapter = requests.adapters.HTTPAdapter(pool_connections=1, pool_maxsize=1)
session.mount('http://', adapter)
trans = RequestsTransport(session)
class Model:
clientModel = None
clientModelLst = []
activeSession = False
def __init__(self,
new_model: bool = True,
model_name: str = "TestModel",
delete: bool = False,
delete_all: bool = False):
"""
Class object representing individual model in RFEM.
Class enables to edit multiple models in one session through holding
one transport session active by not setting 'trans' into Client.
Args:
new_model (bool, optional): Set to True if new model is requested.
model_name (str, optional): Defaults to "TestModel".
delete (bool, optional): Delete results
delete_all (bool, optional): Delete all objects in Model.
"""
cModel = None
modelLs = client.service.get_model_list()
if new_model:
if modelLs and model_name in modelLs.name:
modelIndex = 0
for i, j in enumerate(modelLs.name):
if modelLs.name[i] == model_name:
modelIndex = i
new = client.service.get_model(modelIndex) + 'wsdl'
# Set transport parameter if it is the first model
if Model.activeSession:
cModel = Client(new)
else:
cModel = Client(new, transport=trans)
cModel.service.delete_all_results()
cModel.service.delete_all()
else:
new = client.service.new_model(model_name) + 'wsdl'
if Model.activeSession:
cModel = Client(new)
else:
cModel = Client(new, transport=trans)
if not modelLs:
Model.activeSession = True
else:
modelIndex = 0
for i, j in enumerate(modelLs.name):
if modelLs.name[i] == model_name:
modelIndex = i
new = client.service.get_model(modelIndex) + 'wsdl'
if Model.activeSession:
cModel = Client(new)
else:
cModel = Client(new, transport=trans)
if delete:
print('Deleting results...')
cModel.service.delete_all_results()
if delete_all:
print('Delete all...')
cModel.service.delete_all()
# when using multiple intances/model
self.clientModel = cModel
if not modelLs or not model_name in modelLs.name:
Model.clientModelLst.append(cModel)
# when using only one instace/model
Model.clientModel = cModel
def __delete__(self, index):
if len(self.clientModelLst) == 1:
self.clientModelLst.clear()
self.clientModel = None
else:
self.clientModelLst.pop(index)
self.clientModel = self.clientModelLst[-1]
def clearAtributes(obj):
'''
Clears object atributes.
Sets all atributes to None.
Args:
obj: object to clear
'''
# iterator
it = iter(obj)
for i in it:
obj[i[0]] = None
return obj
def closeModel(index_or_name, save_changes=False):
"""
Close any model with index or name. Be sure to close the first created
model last (2,1, and then 0). 0 index carries whole session.
"""
if isinstance(index_or_name, int):
client.service.close_model(index_or_name, save_changes)
Model.__delete__(Model, index_or_name)
elif isinstance(index_or_name, str):
modelLs = client.service.get_model_list()
for i, j in enumerate(modelLs.name):
if modelLs.name[i] == index_or_name:
client.service.close_model(i, save_changes)
else:
assert False, 'Parameter index_or_name must be int or string.'
def insertSpaces(lst: list):
'''
Add spaces between list of numbers.
Returns list of values.
'''
return ' '.join(str(item) for item in lst)
def \
Calculate_all(generateXmlSolverInput: bool = False, model: object = Model) -> object:
'''
Calculates model.
CAUTION: Don't use it in unit tests!
It works when executing tests individualy but when running all of them
it causes RFEM to stuck and generates failures, which are hard to investigate.
Args:
- generateXmlSolverInput: generate XML solver input
'''
print('got here')
model.clientModel.service.calculate_all(generateXmlSolverInput)
def ConvertToDlString(s):
'''
The function converts strings commonly used in RSTAB / RFEM so that they
can be used In WebServices. It solved issue #4.
Examples:
'1,3' -> '1 3'
'1, 3' -> '1 3'
'1-3' -> '1 2 3'
'1,3,5-9' -> '1 3 5 6 7 8 9'
Args:
RSTAB / RFEM common string
Returns a WS conform string.
'''
# Parameter is not of required type.
assert isinstance(s, (list, str))
if isinstance(s, list):
return ' '.join(map(str, s))
s = s.strip()
s = s.replace(',', ' ')
s = s.replace(' ', ' ')
lst = s.split(' ')
new_lst = []
for element in lst:
if '-' in element:
inLst = element.split('-')
start = int(inLst[0])
end = int(inLst[1])
inLst = []
for i in range(start, end + 1):
inLst.append(str(i))
inS = ' '.join(inLst)
new_lst.append(inS)
else:
new_lst.append(element)
s = ' '.join(new_lst)
return s
def ConvertStrToListOfInt(st):
"""
This function coverts string to list of integers.
"""
st = ConvertToDlString(st)
lstInt = []
while st:
intNumber = 0
if ' ' in st:
idx = st.index(' ')
intNumber = int(st[:idx])
st = st[idx + 1:]
else:
intNumber = int(st)
st = ''
lstInt.append(intNumber)
return lstInt
def CheckIfMethodOrTypeExists(modelClient, method_or_type, unitTestMode=False):
"""
Check if SOAP method or type is present in your version of RFEM/RSTAB.
Use it only in your examples.
Unit tests except msg from SUDS where this is checked already.
Args:
modelClient (Model.clientModel)
method_or_type (string): method or type of SOAP client
Returns:
bool: Status of method or type.
Note:
To get list of methods invoke:
list_of_methods = [method for method in Model.clientModel.wsdl.services[0].ports[0]]
"""
assert modelClient is not None, "WARNING: modelClient is not initialized."
if method_or_type not in str(modelClient):
if unitTestMode:
return True
else:
assert False, "WARNING: Used method/type: %s is not implemented in Web Services yet." % (method_or_type)
return not unitTestMode
def GetAddonStatus(modelClient, addOn=AddOn.stress_analysis_active):
"""
Check if Add-on is reachable and active.
For some types of objects, specific Add-ons need to be ennabled.
Args:
modelClient (Model.clientModel)
method_or_type (string): method or type of SOAP client
Returns:
(bool): Status of Add-on
"""
if modelClient is None:
print("WARNING: modelClient is not initialized.")
return False
addons = modelClient.service.get_addon_statuses()
dct = {}
for lstType in addons:
if not isinstance(lstType[1], bool) and len(lstType[1]) > 1:
addon = [lst for lst in lstType[1]]
for item in addon:
dct[str(item[0])] = bool(item[1])
elif isinstance(lstType[1], bool):
dct[str(lstType[0])] = bool(lstType[1])
else:
assert False
# sanity check
assert addOn.name in dct, f"WARNING: {addOn.name} Add-on can not be reached."
return dct[addOn.name]
def SetAddonStatus(modelClient, addOn=AddOn.stress_analysis_active, status=True):
"""
Activate or deactivate Add-on.
For some types of objects, specific Add-ons need to be ennabled.
Analysis addOns list:
material_nonlinear_analysis_active
structure_stability_active
construction_stages_active
time_dependent_active
form_finding_active
cutting_patterns_active
torsional_warping_active
cost_estimation_active
Design addOns list:
stress_analysis_active
concrete_design_active
steel_design_active
timber_design_active
aluminum_design_active
steel_joints_active
timber_joints_active
craneway_design_active
Dynamic addOns list:
modal_active
spectral_active
time_history_active
pushover_active
harmonic_response_active
Special aadOns list:
building_model_active
wind_simulation_active
geotechnical_analysis_active
Args:
modelClient (Model.clientModel)
method_or_type (string): method or type of SOAP client
status (bool): in/active
"""
# this will also provide sanity check
currentStatus = GetAddonStatus(modelClient, addOn)
if currentStatus != status:
addonLst = modelClient.service.get_addon_statuses()
if addOn.name in addonLst['__keylist__']:
addonLst[addOn.name] = status
else:
for listType in addonLst['__keylist__']:
if not isinstance(addonLst[listType], bool) and addOn.name in addonLst[listType]:
addonLst[listType][addOn.name] = status
modelClient.service.set_addon_statuses(addonLst)
def CalculateSelectedCases(loadCases: list = None, designSituations: list = None, loadCombinations: list = None,
model=Model):
'''
This method calculate just selected objects - load cases, desingSituations, loadCombinations
Args:
loadCases (list, optional): [description]. Defaults to None.
designSituations (list, optional): [description]. Defaults to None.
loadCombinations (list, optional): [description]. Defaults to None.
'''
specificObjectsToCalculate = model.clientModel.factory.create('ns0:array_of_calculate_specific_objects_elements')
if loadCases is not None:
for loadCase in loadCases:
specificObjectsToCalculateLC = model.clientModel.factory.create(
'ns0:array_of_calculate_specific_objects_elements.element')
specificObjectsToCalculateLC.no = loadCase
specificObjectsToCalculateLC.parent_no = 0
specificObjectsToCalculateLC.type = ObjectTypes.E_OBJECT_TYPE_LOAD_CASE.name
specificObjectsToCalculate.element.append(specificObjectsToCalculateLC)
if designSituations is not None:
for designSituation in designSituations:
specificObjectsToCalculateDS = model.clientModel.factory.create(
'ns0:array_of_calculate_specific_objects_elements.element')
specificObjectsToCalculateDS.no = designSituation
specificObjectsToCalculateDS.parent_no = 0
specificObjectsToCalculateDS.type = ObjectTypes.E_OBJECT_TYPE_DESIGN_SITUATION.name
specificObjectsToCalculate.element.append(specificObjectsToCalculateDS)
if loadCombinations is not None:
for loadCombination in loadCombinations:
specificObjectsToCalculateLC = model.clientModel.factory.create(
'ns0:array_of_calculate_specific_objects_elements.element')
specificObjectsToCalculateLC.no = loadCombination
specificObjectsToCalculateLC.parent_no = 0
specificObjectsToCalculateLC.type = ObjectTypes.E_OBJECT_TYPE_LOAD_CASE.name
specificObjectsToCalculate.element.append(specificObjectsToCalculateLC)
model.clientModel.service.calculate_specific_objects(specificObjectsToCalculate)
def FirstFreeIdNumber(memType=ObjectTypes.E_OBJECT_TYPE_MEMBER, parent_no: int = 0, model=Model):
'''
This method returns the next available Id Number for the selected object type
Args:
type (enum): Object Type
parent_no (int): Object Parent Number
Note:
(1) A geometric object has, in general, a parent_no = 0
(2) The parent_no parameter becomes significant for example with loads
'''
return model.clientModel.service.get_first_free_number(memType.name, parent_no)
def SetModelType(model_type=ModelType.E_MODEL_TYPE_3D, model=Model):
'''
This method sets the model type. The model type is E_MODEL_TYPE_3D by default.
Args:
model_type (enum): The available model types are listed below.
ModelType.E_MODEL_TYPE_1D_X_3D
ModelType.E_MODEL_TYPE_1D_X_AXIAL
ModelType.E_MODEL_TYPE_2D_XY_3D
ModelType.E_MODEL_TYPE_2D_XY_PLATE
ModelType.E_MODEL_TYPE_2D_XZ_3D
ModelType.E_MODEL_TYPE_2D_XZ_PLANE_STRAIN
ModelType.E_MODEL_TYPE_2D_XZ_PLANE_STRESS
ModelType.E_MODEL_TYPE_3D
'''
model.clientModel.service.set_model_type(model_type.name)
def GetModelType(model=Model):
'''
The method returns a string of the current model type.
'''
return model.clientModel.service.get_model_type()