qtmodel 0.5.39__tar.gz → 0.5.40__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.5.39 → qtmodel-0.5.40}/PKG-INFO +3 -3
- {qtmodel-0.5.39 → qtmodel-0.5.40}/README.md +2 -2
- {qtmodel-0.5.39 → qtmodel-0.5.40}/qtmodel/qt_odb.py +4 -4
- {qtmodel-0.5.39 → qtmodel-0.5.40}/qtmodel.egg-info/PKG-INFO +3 -3
- {qtmodel-0.5.39 → qtmodel-0.5.40}/setup.py +1 -1
- {qtmodel-0.5.39 → qtmodel-0.5.40}/qtmodel/__init__.py +0 -0
- {qtmodel-0.5.39 → qtmodel-0.5.40}/qtmodel/qt_db.py +0 -0
- {qtmodel-0.5.39 → qtmodel-0.5.40}/qtmodel/qt_mdb.py +0 -0
- {qtmodel-0.5.39 → qtmodel-0.5.40}/qtmodel.egg-info/SOURCES.txt +0 -0
- {qtmodel-0.5.39 → qtmodel-0.5.40}/qtmodel.egg-info/dependency_links.txt +0 -0
- {qtmodel-0.5.39 → qtmodel-0.5.40}/qtmodel.egg-info/top_level.txt +0 -0
- {qtmodel-0.5.39 → qtmodel-0.5.40}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qtmodel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.40
|
|
4
4
|
Summary: python modeling for qt 24/11/14
|
|
5
5
|
Home-page: https://github.com/Inface0443/pyqt
|
|
6
6
|
Author: dqy-zhj
|
|
@@ -12,9 +12,9 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
|
|
15
|
-
# 最新版本 V0.5.
|
|
15
|
+
# 最新版本 V0.5.40 - 2024.11.14
|
|
16
16
|
> pip install --upgrade qtmodel -i https://pypi.org/simple
|
|
17
|
-
-
|
|
17
|
+
- 修复odb图像绘制
|
|
18
18
|
## 项目管理
|
|
19
19
|
### update_bim
|
|
20
20
|
刷新Bim模型信息
|
|
@@ -304,7 +304,7 @@ class Odb:
|
|
|
304
304
|
Returns: 无
|
|
305
305
|
"""
|
|
306
306
|
try:
|
|
307
|
-
qt_model.PlotReactionResult(
|
|
307
|
+
qt_model.PlotReactionResult(filePath=file_path, stageId=stage_id, loadCaseName=load_case_name, showIncrementResult=show_increment,
|
|
308
308
|
envelopeType=envelope_type, component=component,
|
|
309
309
|
showNumber=show_number, textRotationAngle=text_rotation, maxMinValueKind=max_min_kind,
|
|
310
310
|
showLegend=show_legend, digitalCount=digital_count,
|
|
@@ -342,7 +342,7 @@ class Odb:
|
|
|
342
342
|
Returns: 无
|
|
343
343
|
"""
|
|
344
344
|
try:
|
|
345
|
-
qt_model.PlotDisplacementResult(
|
|
345
|
+
qt_model.PlotDisplacementResult(filePath=file_path, stageId=stage_id, loadCaseName=load_case_name, showIncrementResult=show_increment,
|
|
346
346
|
envelopeType=envelope_type, component=component,
|
|
347
347
|
showAsDeformedShape=show_deformed, deformedScale=deformed_scale, deformedActual=deformed_actual,
|
|
348
348
|
showNumber=show_number, textRotationAngle=text_rotation, digitalCount=digital_count,
|
|
@@ -1367,9 +1367,9 @@ class Odb:
|
|
|
1367
1367
|
item_list = qt_model.GetBeamConstraintData(group)
|
|
1368
1368
|
for data in item_list:
|
|
1369
1369
|
info_i = (
|
|
1370
|
-
|
|
1370
|
+
not data.IsIFreedX, not data.IsIFreedY, not data.IsIFreedZ, not data.IsIFreedRx, not data.IsIFreedRy, not data.IsIFreedRZ)
|
|
1371
1371
|
info_j = (
|
|
1372
|
-
|
|
1372
|
+
not data.IsJFreedX, not data.IsJFreedY, not data.IsJFreedZ, not data.IsJFreedRx, not data.IsJFreedRy, not data.IsJFreedRZ)
|
|
1373
1373
|
res_list.append(str(BeamConstraint(constraint_id=data.Id, beam_id=data.Beam.Id, info_i=info_i, info_j=info_j, group_name=group)))
|
|
1374
1374
|
return json.dumps(res_list)
|
|
1375
1375
|
except Exception as ex:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qtmodel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.40
|
|
4
4
|
Summary: python modeling for qt 24/11/14
|
|
5
5
|
Home-page: https://github.com/Inface0443/pyqt
|
|
6
6
|
Author: dqy-zhj
|
|
@@ -12,9 +12,9 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
|
|
15
|
-
# 最新版本 V0.5.
|
|
15
|
+
# 最新版本 V0.5.40 - 2024.11.14
|
|
16
16
|
> pip install --upgrade qtmodel -i https://pypi.org/simple
|
|
17
|
-
-
|
|
17
|
+
- 修复odb图像绘制
|
|
18
18
|
## 项目管理
|
|
19
19
|
### update_bim
|
|
20
20
|
刷新Bim模型信息
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|