qtmodel 0.6.6__tar.gz → 0.6.7__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 qtmodel might be problematic. Click here for more details.
- {qtmodel-0.6.6 → qtmodel-0.6.7}/PKG-INFO +2 -2
- {qtmodel-0.6.6 → qtmodel-0.6.7}/qtmodel/qt_odb.py +14 -7
- {qtmodel-0.6.6 → qtmodel-0.6.7}/qtmodel.egg-info/PKG-INFO +2 -2
- {qtmodel-0.6.6 → qtmodel-0.6.7}/setup.py +1 -1
- {qtmodel-0.6.6 → qtmodel-0.6.7}/README.md +0 -0
- {qtmodel-0.6.6 → qtmodel-0.6.7}/qtmodel/__init__.py +0 -0
- {qtmodel-0.6.6 → qtmodel-0.6.7}/qtmodel/qt_db.py +0 -0
- {qtmodel-0.6.6 → qtmodel-0.6.7}/qtmodel/qt_mdb.py +0 -0
- {qtmodel-0.6.6 → qtmodel-0.6.7}/qtmodel.egg-info/SOURCES.txt +0 -0
- {qtmodel-0.6.6 → qtmodel-0.6.7}/qtmodel.egg-info/dependency_links.txt +0 -0
- {qtmodel-0.6.6 → qtmodel-0.6.7}/qtmodel.egg-info/top_level.txt +0 -0
- {qtmodel-0.6.6 → qtmodel-0.6.7}/setup.cfg +0 -0
|
@@ -355,7 +355,8 @@ class Odb:
|
|
|
355
355
|
Returns: json字符串,包含信息为dict
|
|
356
356
|
"""
|
|
357
357
|
try:
|
|
358
|
-
qt_model.GetSelfConcurrentReaction(nodeId=node_id, loadCaseName=case_name)
|
|
358
|
+
res_dict = qt_model.GetSelfConcurrentReaction(nodeId=node_id, loadCaseName=case_name)
|
|
359
|
+
return json.dumps(res_dict)
|
|
359
360
|
except Exception as ex:
|
|
360
361
|
raise Exception(ex)
|
|
361
362
|
|
|
@@ -371,7 +372,8 @@ class Odb:
|
|
|
371
372
|
Returns: json字符串,包含信息为dict
|
|
372
373
|
"""
|
|
373
374
|
try:
|
|
374
|
-
qt_model.GetAllConcurrentReaction(nodeId=node_id, loadCaseName=case_name)
|
|
375
|
+
res_dict = qt_model.GetAllConcurrentReaction(nodeId=node_id, loadCaseName=case_name)
|
|
376
|
+
return json.dumps(res_dict)
|
|
375
377
|
except Exception as ex:
|
|
376
378
|
raise Exception(ex)
|
|
377
379
|
|
|
@@ -387,7 +389,8 @@ class Odb:
|
|
|
387
389
|
Returns: json字符串,包含信息为dict
|
|
388
390
|
"""
|
|
389
391
|
try:
|
|
390
|
-
qt_model.GetBeamConcurrentForce(eleId=ele_id, loadCaseName=case_name)
|
|
392
|
+
res_dict = qt_model.GetBeamConcurrentForce(eleId=ele_id, loadCaseName=case_name)
|
|
393
|
+
return json.dumps(res_dict)
|
|
391
394
|
except Exception as ex:
|
|
392
395
|
raise Exception(ex)
|
|
393
396
|
|
|
@@ -403,7 +406,8 @@ class Odb:
|
|
|
403
406
|
Returns: json字符串,包含信息为dict
|
|
404
407
|
"""
|
|
405
408
|
try:
|
|
406
|
-
qt_model.GetCompositeBeamConcurrentForce(eleId=ele_id, loadCaseName=case_name)
|
|
409
|
+
res_dict = qt_model.GetCompositeBeamConcurrentForce(eleId=ele_id, loadCaseName=case_name)
|
|
410
|
+
return json.dumps(res_dict)
|
|
407
411
|
except Exception as ex:
|
|
408
412
|
raise Exception(ex)
|
|
409
413
|
|
|
@@ -443,7 +447,8 @@ class Odb:
|
|
|
443
447
|
Returns: json字符串,包含信息为dict
|
|
444
448
|
"""
|
|
445
449
|
try:
|
|
446
|
-
qt_model.GetPeriodAndFrequency(mode=mode)
|
|
450
|
+
res_dict = qt_model.GetPeriodAndFrequency(mode=mode)
|
|
451
|
+
return json.dumps(res_dict)
|
|
447
452
|
except Exception as ex:
|
|
448
453
|
raise Exception(ex)
|
|
449
454
|
|
|
@@ -458,7 +463,8 @@ class Odb:
|
|
|
458
463
|
Returns: json字符串,包含信息为dict
|
|
459
464
|
"""
|
|
460
465
|
try:
|
|
461
|
-
qt_model.GetParticipationMass(mode=mode)
|
|
466
|
+
res_dict = qt_model.GetParticipationMass(mode=mode)
|
|
467
|
+
return json.dumps(res_dict)
|
|
462
468
|
except Exception as ex:
|
|
463
469
|
raise Exception(ex)
|
|
464
470
|
|
|
@@ -473,7 +479,8 @@ class Odb:
|
|
|
473
479
|
Returns: json字符串,包含信息为dict
|
|
474
480
|
"""
|
|
475
481
|
try:
|
|
476
|
-
qt_model.GetParticipationFactor(mode=mode)
|
|
482
|
+
res_dict = qt_model.GetParticipationFactor(mode=mode)
|
|
483
|
+
return json.dumps(res_dict)
|
|
477
484
|
except Exception as ex:
|
|
478
485
|
raise Exception(ex)
|
|
479
486
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|