qtmodel 0.9.8__tar.gz → 0.9.9__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,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qtmodel
3
- Version: 0.9.8
4
- Summary: python modeling for qt 2025-07-17
3
+ Version: 0.9.9
4
+ Summary: python modeling for qt 2025-08-21
5
5
  Home-page: https://github.com/Inface0443/pyqt
6
6
  Author: dqy-zhj
7
7
  Author-email: 1105417715@qq.com
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Operating System :: OS Independent
13
13
  Description-Content-Type: text/markdown
14
14
 
15
- > 最新版本 V0.9.8 - 2025-07-17
15
+ > 最新版本 V0.9.9 - 2025-08-21
16
16
  > pip install --upgrade qtmodel -i https://pypi.org/simple
17
17
  - 新增更新结构组接口
18
18
  # 建模操作
@@ -2477,11 +2477,12 @@ Returns: 无
2477
2477
  > 参数:
2478
2478
  > element_id:单元编号,支持整数或整数型列表且支持XtoYbyN形式字符串
2479
2479
  > case_name:荷载工况名
2480
- > code_index:规范编号 (1-公路规范2015 2-美规2017)
2480
+ > code_index:规范编号 (1-公路规范2015 2-美规2017 3-BS5400)
2481
2481
  > sec_type:截面类型(1-混凝土 2-组合梁)
2482
2482
  > t1:温度1
2483
2483
  > t2:温度2
2484
2484
  > t3:温度3
2485
+ > t4:温度3
2485
2486
  > thick:厚度
2486
2487
  > group_name:荷载组名
2487
2488
  ```Python
@@ -1,4 +1,4 @@
1
- > 最新版本 V0.9.8 - 2025-07-17
1
+ > 最新版本 V0.9.9 - 2025-08-21
2
2
  > pip install --upgrade qtmodel -i https://pypi.org/simple
3
3
  - 新增更新结构组接口
4
4
  # 建模操作
@@ -2463,11 +2463,12 @@ Returns: 无
2463
2463
  > 参数:
2464
2464
  > element_id:单元编号,支持整数或整数型列表且支持XtoYbyN形式字符串
2465
2465
  > case_name:荷载工况名
2466
- > code_index:规范编号 (1-公路规范2015 2-美规2017)
2466
+ > code_index:规范编号 (1-公路规范2015 2-美规2017 3-BS5400)
2467
2467
  > sec_type:截面类型(1-混凝土 2-组合梁)
2468
2468
  > t1:温度1
2469
2469
  > t2:温度2
2470
2470
  > t3:温度3
2471
+ > t4:温度3
2471
2472
  > thick:厚度
2472
2473
  > group_name:荷载组名
2473
2474
  ```Python
@@ -3971,18 +3971,19 @@ class Mdb:
3971
3971
 
3972
3972
  @staticmethod
3973
3973
  def add_beam_section_temperature(element_id=1, case_name: str = "", code_index: int = 1,
3974
- sec_type: int = 1, t1: float = 0, t2: float = 0, t3: float = 0,
3974
+ sec_type: int = 1, t1: float = 0, t2: float = 0, t3: float = 0,t4: float = 0,
3975
3975
  thick: float = 0, group_name: str = "默认荷载组"):
3976
3976
  """
3977
3977
  添加梁截面温度
3978
3978
  Args:
3979
3979
  element_id:单元编号,支持整数或整数型列表且支持XtoYbyN形式字符串
3980
3980
  case_name:荷载工况名
3981
- code_index:规范编号 (1-公路规范2015 2-美规2017)
3981
+ code_index:规范编号 (1-公路规范2015 2-美规2017 3-BS5400)
3982
3982
  sec_type:截面类型(1-混凝土 2-组合梁)
3983
3983
  t1:温度1
3984
3984
  t2:温度2
3985
3985
  t3:温度3
3986
+ t4:温度3
3986
3987
  thick:厚度
3987
3988
  group_name:荷载组名
3988
3989
  Example:
@@ -3991,8 +3992,8 @@ class Mdb:
3991
3992
  """
3992
3993
  try:
3993
3994
  qt_model.AddBeamSectionTemperature(elementId=element_id, caseName=case_name, codeIndex=code_index,
3994
- sectionType=sec_type, temperature1=t1, temperature2=t2,
3995
- temperature3=t3, groupName=group_name, thickness=thick)
3995
+ sectionType=sec_type, t1=t1, t2=t2,
3996
+ t3=t3, t4=t4,groupName=group_name, thick=thick)
3996
3997
  except Exception as ex:
3997
3998
  raise Exception(ex)
3998
3999
 
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qtmodel
3
- Version: 0.9.8
4
- Summary: python modeling for qt 2025-07-17
3
+ Version: 0.9.9
4
+ Summary: python modeling for qt 2025-08-21
5
5
  Home-page: https://github.com/Inface0443/pyqt
6
6
  Author: dqy-zhj
7
7
  Author-email: 1105417715@qq.com
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Operating System :: OS Independent
13
13
  Description-Content-Type: text/markdown
14
14
 
15
- > 最新版本 V0.9.8 - 2025-07-17
15
+ > 最新版本 V0.9.9 - 2025-08-21
16
16
  > pip install --upgrade qtmodel -i https://pypi.org/simple
17
17
  - 新增更新结构组接口
18
18
  # 建模操作
@@ -2477,11 +2477,12 @@ Returns: 无
2477
2477
  > 参数:
2478
2478
  > element_id:单元编号,支持整数或整数型列表且支持XtoYbyN形式字符串
2479
2479
  > case_name:荷载工况名
2480
- > code_index:规范编号 (1-公路规范2015 2-美规2017)
2480
+ > code_index:规范编号 (1-公路规范2015 2-美规2017 3-BS5400)
2481
2481
  > sec_type:截面类型(1-混凝土 2-组合梁)
2482
2482
  > t1:温度1
2483
2483
  > t2:温度2
2484
2484
  > t3:温度3
2485
+ > t4:温度3
2485
2486
  > thick:厚度
2486
2487
  > group_name:荷载组名
2487
2488
  ```Python
@@ -11,7 +11,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
11
11
 
12
12
  setup(
13
13
  name="qtmodel",
14
- version=f"V0.9.8",
14
+ version=f"V0.9.9",
15
15
  author="dqy-zhj",
16
16
  author_email="1105417715@qq.com",
17
17
  description=f"python modeling for qt {datetime.now().date()} ",
File without changes
File without changes
File without changes
File without changes