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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qtmodel
3
- Version: 0.5.39
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.39 - 2024.11.14
15
+ # 最新版本 V0.5.40 - 2024.11.14
16
16
  > pip install --upgrade qtmodel -i https://pypi.org/simple
17
- - 扩展ZH车辆荷载参数
17
+ - 修复odb图像绘制
18
18
  ## 项目管理
19
19
  ### update_bim
20
20
  刷新Bim模型信息
@@ -1,6 +1,6 @@
1
- # 最新版本 V0.5.39 - 2024.11.14
1
+ # 最新版本 V0.5.40 - 2024.11.14
2
2
  > pip install --upgrade qtmodel -i https://pypi.org/simple
3
- - 扩展ZH车辆荷载参数
3
+ - 修复odb图像绘制
4
4
  ## 项目管理
5
5
  ### update_bim
6
6
  刷新Bim模型信息
@@ -304,7 +304,7 @@ class Odb:
304
304
  Returns: 无
305
305
  """
306
306
  try:
307
- qt_model.PlotReactionResult(file_path=file_path, stageId=stage_id, loadCaseName=load_case_name, showIncrementResult=show_increment,
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(file_path=file_path, stageId=stage_id, loadCaseName=load_case_name, showIncrementResult=show_increment,
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
- not data.IsIFreedX, not data.IsIFreedY, not data.IsIFreedZ, not data.IsIFreedRx, not data.IsIFreedRy, not data.IsIFreedRZ)
1370
+ not data.IsIFreedX, not data.IsIFreedY, not data.IsIFreedZ, not data.IsIFreedRx, not data.IsIFreedRy, not data.IsIFreedRZ)
1371
1371
  info_j = (
1372
- not data.IsJFreedX, not data.IsJFreedY, not data.IsJFreedZ, not data.IsJFreedRx, not data.IsJFreedRy, not data.IsJFreedRZ)
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.39
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.39 - 2024.11.14
15
+ # 最新版本 V0.5.40 - 2024.11.14
16
16
  > pip install --upgrade qtmodel -i https://pypi.org/simple
17
- - 扩展ZH车辆荷载参数
17
+ - 修复odb图像绘制
18
18
  ## 项目管理
19
19
  ### update_bim
20
20
  刷新Bim模型信息
@@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
7
7
  # twine upload dist/*
8
8
  setup(
9
9
  name="qtmodel",
10
- version="0.5.39",
10
+ version="0.5.40",
11
11
  author="dqy-zhj",
12
12
  author_email="1105417715@qq.com",
13
13
  description="python modeling for qt 24/11/14 ",
File without changes
File without changes
File without changes
File without changes