RS2Scripting 11.23.0.dev4__py3-none-any.whl → 11.24.0__py3-none-any.whl

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.
Files changed (89) hide show
  1. {RS2Scripting-11.23.0.dev4.dist-info → RS2Scripting-11.24.0.dist-info}/METADATA +4 -4
  2. {RS2Scripting-11.23.0.dev4.dist-info → RS2Scripting-11.24.0.dist-info}/RECORD +83 -80
  3. {RS2Scripting-11.23.0.dev4.dist-info → RS2Scripting-11.24.0.dist-info}/WHEEL +1 -1
  4. rs2/BaseModel.py +46 -0
  5. rs2/Units.py +15 -0
  6. rs2/_common/Client.py +1 -9
  7. rs2/interpreter/InterpreterModel.py +12 -49
  8. rs2/interpreter/{HistoryQueryResults.py → queryResults/HistoryQueryResults.py} +10 -0
  9. rs2/interpreter/{MaterialQueryResults.py → queryResults/MaterialQueryResults.py} +20 -1
  10. rs2/interpreter/queryResults/MeshResults.py +28 -0
  11. rs2/interpreter/{TimeQueryResults.py → queryResults/TimeQueryResults.py} +60 -27
  12. rs2/interpreter/queryResults/__init__.py +0 -0
  13. rs2/interpreter/supportResults/BoltResult.py +87 -0
  14. rs2/interpreter/supportResults/CompositeResult.py +51 -0
  15. rs2/interpreter/supportResults/JointResult.py +50 -0
  16. rs2/interpreter/supportResults/LinerResult.py +189 -0
  17. rs2/interpreter/supportResults/__init__.py +0 -0
  18. rs2/modeler/Model.py +4 -39
  19. rs2/modeler/properties/AbsoluteStageFactorGettersInterface.py +4 -1
  20. rs2/modeler/properties/AbsoluteStageFactorInterface.py +4 -1
  21. rs2/modeler/properties/CompositeProperty.py +2 -1
  22. rs2/modeler/properties/MaterialJoint.py +7 -1
  23. rs2/modeler/properties/RelativeStageFactorInterface.py +4 -0
  24. rs2/modeler/properties/StructuralInterface.py +2 -1
  25. rs2/modeler/properties/bolt/Bolt.py +9 -1
  26. rs2/modeler/properties/joint/BartonBandis.py +7 -0
  27. rs2/modeler/properties/joint/BartonBandisMaterial.py +11 -0
  28. rs2/modeler/properties/joint/DisplacementDependent.py +7 -0
  29. rs2/modeler/properties/joint/GeosyntheticHyperbolic.py +7 -0
  30. rs2/modeler/properties/joint/GeosyntheticHyperbolicMaterial.py +11 -0
  31. rs2/modeler/properties/joint/HyperbolicSoftening.py +7 -0
  32. rs2/modeler/properties/joint/Joint.py +11 -1
  33. rs2/modeler/properties/joint/MaterialDependent.py +7 -0
  34. rs2/modeler/properties/joint/MohrCoulomb.py +7 -0
  35. rs2/modeler/properties/joint/MohrCoulombMaterial.py +11 -0
  36. rs2/modeler/properties/joint/NoneSlip.py +7 -0
  37. rs2/modeler/properties/liner/CableTruss.py +7 -0
  38. rs2/modeler/properties/liner/Geosynthetic.py +7 -0
  39. rs2/modeler/properties/liner/Liner.py +8 -1
  40. rs2/modeler/properties/liner/ReinforcedConcrete.py +7 -0
  41. rs2/modeler/properties/liner/StandardBeam.py +7 -0
  42. rs2/modeler/properties/material/InitialConditions.py +7 -0
  43. rs2/modeler/properties/material/MaterialProperty.py +11 -1
  44. rs2/modeler/properties/material/datum/Datum.py +5 -1
  45. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Brooks.py +7 -0
  46. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Constant.py +7 -0
  47. rs2/modeler/properties/material/hydraulic/FEAGroundwater/FEAGroundwater.py +12 -1
  48. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Fredlund.py +7 -0
  49. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Gardner.py +7 -0
  50. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Genuchten.py +7 -0
  51. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Simple.py +7 -0
  52. rs2/modeler/properties/material/hydraulic/Hydraulic.py +7 -1
  53. rs2/modeler/properties/material/hydraulic/StaticGroundwater.py +5 -1
  54. rs2/modeler/properties/material/stiffness/Isotropic.py +7 -0
  55. rs2/modeler/properties/material/stiffness/NonLinearHyperbolic.py +7 -0
  56. rs2/modeler/properties/material/stiffness/NonLinearIsotropic.py +7 -0
  57. rs2/modeler/properties/material/stiffness/Orthotropic.py +7 -0
  58. rs2/modeler/properties/material/stiffness/Stiffness.py +23 -1
  59. rs2/modeler/properties/material/stiffness/TransverselyIsotropic.py +12 -4
  60. rs2/modeler/properties/material/strength/BarcelonaBasic.py +7 -0
  61. rs2/modeler/properties/material/strength/CamClay.py +7 -0
  62. rs2/modeler/properties/material/strength/DiscreteFunction.py +7 -0
  63. rs2/modeler/properties/material/strength/DruckerPrager.py +7 -0
  64. rs2/modeler/properties/material/strength/GeneralizedHoekBrown.py +7 -0
  65. rs2/modeler/properties/material/strength/HoekBrown.py +7 -0
  66. rs2/modeler/properties/material/strength/JointedGeneralizedHoekBrown.py +7 -0
  67. rs2/modeler/properties/material/strength/JointedMohrCoulomb.py +7 -0
  68. rs2/modeler/properties/material/strength/ModifiedCamClay.py +7 -0
  69. rs2/modeler/properties/material/strength/MohrCoulombStrength.py +7 -0
  70. rs2/modeler/properties/material/strength/MohrCoulombWithCap.py +7 -0
  71. rs2/modeler/properties/material/strength/PM4SiltStrength.py +8 -1
  72. rs2/modeler/properties/material/strength/SofteningHardeningModel.py +15 -1
  73. rs2/modeler/properties/material/strength/Strength.py +40 -1
  74. rs2/modeler/properties/material/thermal/Thermal.py +8 -1
  75. rs2/modeler/properties/material/thermal/conductivity/Conductivity.py +10 -1
  76. rs2/modeler/properties/material/thermal/heatcapacity/HeatCapacity.py +7 -1
  77. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/SoilUnfrozenWaterContent.py +8 -1
  78. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/HydraulicModel.py +9 -1
  79. rs2/modeler/properties/pile/ForceDisplacement.py +7 -0
  80. rs2/modeler/properties/pile/Pile.py +11 -1
  81. rs2/_common/Units.py +0 -7
  82. rs2/interpreter/BoltResult.py +0 -49
  83. rs2/interpreter/CompositeResult.py +0 -24
  84. rs2/interpreter/JointResult.py +0 -25
  85. rs2/interpreter/LinerResult.py +0 -33
  86. rs2/interpreter/MeshResults.py +0 -12
  87. {RS2Scripting-11.23.0.dev4.dist-info → RS2Scripting-11.24.0.dist-info}/License.txt +0 -0
  88. {RS2Scripting-11.23.0.dev4.dist-info → RS2Scripting-11.24.0.dist-info}/top_level.txt +0 -0
  89. /rs2/interpreter/{UtilityResult.py → _UtilityResult.py} +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: RS2Scripting
3
- Version: 11.23.0.dev4
3
+ Version: 11.24.0
4
4
  Summary: Client library for interacting with RS2 through python
5
5
  Author: Rocscience
6
6
  License: MIT License
@@ -13,7 +13,7 @@ Classifier: Topic :: Scientific/Engineering
13
13
  Requires-Python: >=3.7
14
14
  Description-Content-Type: text/markdown
15
15
  License-File: License.txt
16
- Requires-Dist: rsmessages ==0.0.2.dev1
16
+ Requires-Dist: rsmessages ==0.0.2
17
17
 
18
18
  ## Introduction
19
19
  This project is a library that can be used to interact with RS2 through python.
@@ -47,9 +47,9 @@ The current set of functionality exposed is limited. With this version of the li
47
47
  ## Getting Started
48
48
 
49
49
  **Getting started guide**
50
- <!---TODO: add link-->
50
+ https://www.rocscience.com/help/rs2/tutorials/scripting/getting-started-with-rs2-python-scripting
51
51
  **First Tutorial**
52
- <!---TODO: add link-->
52
+ https://www.rocscience.com/help/rs2/tutorials/scripting/anchored-sheet-pile-wall
53
53
 
54
54
  # For Contributors:
55
55
 
@@ -1,84 +1,87 @@
1
+ rs2/BaseModel.py,sha256=9seLvsFnTI96H1cb508EzFnquEE0UL0Oz8cflNRjsaA,1181
2
+ rs2/Units.py,sha256=4sZvhBHTbREX8BS6Jrd0m0qIzUvjq9Fqq0uNNckNBjw,526
1
3
  rs2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- rs2/_common/Client.py,sha256=SxR_NvCu2FTR6Xwk90Y7sRzJApabnafsyDxuIUY27g8,2659
4
+ rs2/_common/Client.py,sha256=t275KOGm5mO-WWWKHp6VwveFWaoQVyq21GO07Di5Rws,2377
3
5
  rs2/_common/ProxyObject.py,sha256=6c6AJPTTAR7dSBowNhw2OzizAFNHixkRy8sQRv8gqlU,471
4
- rs2/_common/Units.py,sha256=T0JYsYuxtc2b59_I83GztMETmssqOXI-oQ-KREfgMm8,202
5
6
  rs2/_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
7
  rs2/_common/documentProxy.py,sha256=W1a2uezHNIG0VXjF1IODN680j0q-hzAH2WEwe0xCKW8,182
7
- rs2/interpreter/BoltResult.py,sha256=HDNqEXMJYcKdu2fUddZHyTMQZhzpjkryYd_C1kKRedU,2050
8
- rs2/interpreter/CompositeResult.py,sha256=IvCxvSJvBwe1fn_ZQhN3823RUIWDTyWbjxyACszPijc,896
9
- rs2/interpreter/HistoryQueryResults.py,sha256=7HjZL8mLqNW-apVOhY42Jxo-uMFWzTH_meAwjuEXBMg,956
10
8
  rs2/interpreter/InterpreterEnums.py,sha256=LLf6L3t4EdlqTAvV6yEpwGyZTd3Ph-perIKyfLfRbC4,5468
11
9
  rs2/interpreter/InterpreterGraphEnums.py,sha256=EzhwBih2TC7Us5NY2GTL6W0_7wsIWi1NDv16Jjl6AC8,1757
12
- rs2/interpreter/InterpreterModel.py,sha256=7hqSRzTQxQp0awQJ9Y3k_ZF-5fcZy1gPMhROkmTcQN8,12964
13
- rs2/interpreter/JointResult.py,sha256=vW04g5hdvkbWaAew6tNmCSeNp-1ecRyIjs_DhbGiJP4,937
14
- rs2/interpreter/LinerResult.py,sha256=yZpw6ceJNYGDeu8a4iAHJPYFtKeN0xDRDwgmMT2TKE8,1457
15
- rs2/interpreter/MaterialQueryResults.py,sha256=xlHpPQ0VvysyPkJekP6OU0HPJlSUBo0HEHIvFgZHvUI,2099
16
- rs2/interpreter/MeshResults.py,sha256=Chwg2Tp7cYuhSpeEmR96TCXUgsdevidWHBI7JQ9yIsI,333
10
+ rs2/interpreter/InterpreterModel.py,sha256=apoCrvjR59rqlipCo4a-WY9CoVvemNbLFRzAkp52x-s,12191
17
11
  rs2/interpreter/RS2Interpreter.py,sha256=JOtwxV_EMBBhJwi57HhyOF1rBH1VeGI_U65VVLf6siM,2998
18
- rs2/interpreter/TimeQueryResults.py,sha256=uZxpJQsRsEY4c2nkTs4NYl4LFVAe7MK2AVKZb2UGohg,4231
19
- rs2/interpreter/UtilityResult.py,sha256=6VsLAdwxXuXyR7a7yAJ-6axxSqSURk92HDDVnyPcZsU,500
12
+ rs2/interpreter/_UtilityResult.py,sha256=6VsLAdwxXuXyR7a7yAJ-6axxSqSURk92HDDVnyPcZsU,500
20
13
  rs2/interpreter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- rs2/modeler/Model.py,sha256=pK-8GRjMh29KcWuWwJi2n0J-dCsfKhB22Asj7bo4-tg,14875
14
+ rs2/interpreter/queryResults/HistoryQueryResults.py,sha256=71TljXSCO8tZ-Xu4XhETcpiyaD0F1vBASEX87_kJdds,1338
15
+ rs2/interpreter/queryResults/MaterialQueryResults.py,sha256=unxya7WuTebGl4SHee8FZo0sS_P8AkFffwhjcmdqI6k,2763
16
+ rs2/interpreter/queryResults/MeshResults.py,sha256=TP0G4XpdKaGlA6YsWtOb6vAOhDg-BTcKbDwMBvWLaJg,874
17
+ rs2/interpreter/queryResults/TimeQueryResults.py,sha256=p06I7bCJwYxjEmAbjDVnXWiW5dlNdJmtY_Iv0LEmnoU,5115
18
+ rs2/interpreter/queryResults/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ rs2/interpreter/supportResults/BoltResult.py,sha256=YW7rYFGtUQKfnkBqxLNH7e66nKhaFo6mJUuAjSA8LSg,3720
20
+ rs2/interpreter/supportResults/CompositeResult.py,sha256=D-DMGQlYAsxlAgZjTn4Hd6h8WdDhNiMLdtWwCLaMbgg,1999
21
+ rs2/interpreter/supportResults/JointResult.py,sha256=TagpHPKs7wEIkcn3yDgA1TzSrsjXP8MnJ8qOuxgxZLU,2035
22
+ rs2/interpreter/supportResults/LinerResult.py,sha256=4tbFYwBgj1a8zT1uuln1lAzMP9uvOgTBJcDmNCAuRFs,8431
23
+ rs2/interpreter/supportResults/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ rs2/modeler/Model.py,sha256=p9r2kFmmHBSgj0T26CbybnnbnjeiZJufznsdB6mTqtM,14000
22
25
  rs2/modeler/RS2Modeler.py,sha256=vISeaUuktlqG4wMPmXvUs1YgB7LIc2m7eoAgY5IF0DQ,2994
23
26
  rs2/modeler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- rs2/modeler/properties/AbsoluteStageFactorGettersInterface.py,sha256=HpsdM0TBPgZ_wfwyC0pY87PnFZWbbwSBWpwqh8vzBQo,1475
25
- rs2/modeler/properties/AbsoluteStageFactorInterface.py,sha256=QM0T-oJUoSzTXIoExRGvg6avEsmNRoazKsUE_gv1IXI,2382
26
- rs2/modeler/properties/CompositeProperty.py,sha256=YXUaO3F_9CA1NJwF8pl813ZbRet_vRCHXS6_MnxDBFE,3324
27
+ rs2/modeler/properties/AbsoluteStageFactorGettersInterface.py,sha256=6sBwuOaKw8XpCexO5sWnIZ0ntkFLicu1t-H_3nh9T54,1528
28
+ rs2/modeler/properties/AbsoluteStageFactorInterface.py,sha256=wz2lRNl6KCE4qJOblRusv8m0dBZpgVTmoIDfqahpsns,2435
29
+ rs2/modeler/properties/CompositeProperty.py,sha256=djv1LTbW_LMAuG8Mmh6JXLkPXsxI5hVwRGcjvdi0hXg,3337
27
30
  rs2/modeler/properties/DiscreteFunction.py,sha256=7g1iNA1HwA3hTWrQ5fWL_DFdSgayW6wTmWuIjGYjXAo,2858
28
- rs2/modeler/properties/MaterialJoint.py,sha256=PHs9oGfNoQG8pr6y8WnFyt9gDu_Qovfgw1UtPwjJHJM,1348
31
+ rs2/modeler/properties/MaterialJoint.py,sha256=d29PbSMnuFsC1xu563fsSnxpMDBOliAkhUwlSDLkLDo,1662
29
32
  rs2/modeler/properties/MaterialJointOptions.py,sha256=8Tf1MZZ7nEN581Abq16nX6kLISP65KgsVsyn-E7ICQM,1806
30
33
  rs2/modeler/properties/PropertyEnums.py,sha256=CaLg0H6OM90BIB3mM2kzhy1Q0k8JEX-5f5ujAaZuSQI,15313
31
- rs2/modeler/properties/RelativeStageFactorInterface.py,sha256=ijkFvOQbZWEAT1Ecc8nFx80iQAvAAFj7pzZrPiZzs2I,2702
34
+ rs2/modeler/properties/RelativeStageFactorInterface.py,sha256=wJrQt-8cwCcYk2bVQo7hYFM82vJJ9coHUGadYDe-rB0,2758
32
35
  rs2/modeler/properties/ShearNormalFunction.py,sha256=zDI6jm7X_tebNa-GSquGKuNR5J6BSWqXNoVYHv6DG6w,2551
33
36
  rs2/modeler/properties/SnowdenAnisotropicFunction.py,sha256=0_65PkquiDTvxhs03tSJZQhwG2fgHHXjgx7_3Ss-J0w,3151
34
- rs2/modeler/properties/StructuralInterface.py,sha256=IbsTskaZJA_1kf8vZo4RkjZAwDmsKMvOpgfS0C-qJ6U,1957
37
+ rs2/modeler/properties/StructuralInterface.py,sha256=jlZJj44m1s_iWrlZIEGERLiupeRsQ994WqJXKd879U4,1970
35
38
  rs2/modeler/properties/UserDefinedWaterMode.py,sha256=1LlVp4e3eUflQ5RFEJIcjna79kyZweOwOv-afwJrQ7I,1284
36
39
  rs2/modeler/properties/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
40
  rs2/modeler/properties/propertyProxy.py,sha256=TWprB5wfknPc7_bmuOXPdPrMeBItsnrBsfm8bzFXqE0,25565
38
- rs2/modeler/properties/bolt/Bolt.py,sha256=EILcvqrYU5lCHlsM-71QDbxXxOKHq9CQ1C5ecE388rU,1571
41
+ rs2/modeler/properties/bolt/Bolt.py,sha256=TMrWavAS72CJs_ZJCbfOpGUj07w6qU3SN9kxkeMw2LE,1949
39
42
  rs2/modeler/properties/bolt/EndAnchored.py,sha256=RIrASej0zFW4VDAS-CFXJ14w8SCYm3sf0mah32je9n8,3273
40
43
  rs2/modeler/properties/bolt/FullyBonded.py,sha256=L-rDvPhIpmQRgIbicrfW3MZSzhXJf3y1J7yyU8S1QHg,3620
41
44
  rs2/modeler/properties/bolt/PlainStrandCable.py,sha256=p7Da5XMTCKUolwe4Knf-QuHsz3TNzX5HhYHoHBCcg54,5888
42
45
  rs2/modeler/properties/bolt/Swellex.py,sha256=lvJ0S2QnirPeoZftPLW_AWNd_xIV8YFsnuMmrKAoip4,7740
43
46
  rs2/modeler/properties/bolt/Tieback.py,sha256=w9ValpDAWPqn94r7dNMv-fumJ2KXyfE_6SdvT7eC5XQ,11492
44
47
  rs2/modeler/properties/bolt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- rs2/modeler/properties/joint/BartonBandis.py,sha256=wgGV63woMdf8OsbkztVyH71mrGPxqh6TgT9pNB1xunQ,9143
46
- rs2/modeler/properties/joint/BartonBandisMaterial.py,sha256=rAsBahIrtT8q7Cw-G5l5k0lJEW60VCCCRjmhQl6BvVU,4562
47
- rs2/modeler/properties/joint/DisplacementDependent.py,sha256=sUobR_QbVzY2UQh9hnM8dlzN4CPTgDymixbj-usq1eE,9157
48
- rs2/modeler/properties/joint/GeosyntheticHyperbolic.py,sha256=eAcrrCyeRtPjVh5jyElR7IiIuI4fEpN5cmQFgtWtfUU,10101
49
- rs2/modeler/properties/joint/GeosyntheticHyperbolicMaterial.py,sha256=VUQv2_CA6sGKYoVWhVtPk8zf1PJ4UWoOWOtTM88-sgs,5899
50
- rs2/modeler/properties/joint/HyperbolicSoftening.py,sha256=UO7E9zo5l4rp-wkohJez3uW-mwCw9hmAvOuVKOkyoq4,13380
51
- rs2/modeler/properties/joint/Joint.py,sha256=BEDg_hw4EioZSzINPF06rZK6I5HHX2kerHEAPUBPIC8,3039
52
- rs2/modeler/properties/joint/MaterialDependent.py,sha256=yZjFudNWNI5BP-LMlQJdy6lSWFwOC0FqKC0ipgseJBg,8565
53
- rs2/modeler/properties/joint/MohrCoulomb.py,sha256=-u7O1MdIPVpqBx-iaMBfnrNuHsAIpfjruHJDxYRzGOQ,13221
54
- rs2/modeler/properties/joint/MohrCoulombMaterial.py,sha256=FBL__lgMzN8QKr1ccPoLjYvxPMcRz2VJVAobdealGhI,6977
55
- rs2/modeler/properties/joint/NoneSlip.py,sha256=S7FYiaZMfv-mip4YN_-6WaHU7AW9YJr8iFDNmVQoytM,6749
48
+ rs2/modeler/properties/joint/BartonBandis.py,sha256=dQ854Ak0VKegIueN3mZ07294Bnv1TA7QXKOo1xNvtqI,9388
49
+ rs2/modeler/properties/joint/BartonBandisMaterial.py,sha256=vYvbEH5oGTSdGlS_fBRxzUpkXkYVU8moZssXu242aLM,5079
50
+ rs2/modeler/properties/joint/DisplacementDependent.py,sha256=aU9KnjfyGgIHzRBwdyYsU2D4TCIvqeB-3pvUE8xC8A8,9420
51
+ rs2/modeler/properties/joint/GeosyntheticHyperbolic.py,sha256=kKp3VdN56zzSOb86QUTCSP_ZEL2E0RYQqk6RGI3xJak,10366
52
+ rs2/modeler/properties/joint/GeosyntheticHyperbolicMaterial.py,sha256=sNgkSbwmAVi_BVQ2_8clnPf6NJ1zoFp8W-JFHmGdiss,6436
53
+ rs2/modeler/properties/joint/HyperbolicSoftening.py,sha256=yrNeiCHGuxhslRpFDZcIVdISxsCHUNcfBcbA4UqlRyY,13639
54
+ rs2/modeler/properties/joint/Joint.py,sha256=jwweVJm55xRe8Z0_XrRequBhfmFg-MlwURR5L2Bos5o,3631
55
+ rs2/modeler/properties/joint/MaterialDependent.py,sha256=ruyXkce_vzV4Jui7BQkEFKhDeieI7URT4hjzG0m6tZo,8820
56
+ rs2/modeler/properties/joint/MohrCoulomb.py,sha256=S3tYMHSkb5hwd9-ufZg36FB9upI3ORnCXCvmzYbKvKI,13464
57
+ rs2/modeler/properties/joint/MohrCoulombMaterial.py,sha256=HaUFtmITDFgHMDufCR8Wki9fvv3O0l4gSiSIMq2HLG4,7492
58
+ rs2/modeler/properties/joint/NoneSlip.py,sha256=EgpDoFE2lVEn1Wb8eXWaZKn24pS9YPa8md5Kb4zDAz0,6986
56
59
  rs2/modeler/properties/joint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
- rs2/modeler/properties/liner/CableTruss.py,sha256=fON8ShaXsO9WDtKDqe52j6LIo12QXfWCEzj2rIYo_ns,12762
58
- rs2/modeler/properties/liner/Geosynthetic.py,sha256=Vr6o-hIe3nXx8bMKRNrVaFoesu92yfxI9Fb3VqNiDAM,11075
59
- rs2/modeler/properties/liner/Liner.py,sha256=KCmHXvLPLAyjJ28n9cbq5dYuox7uKJPxT6n23AHhhtk,1522
60
- rs2/modeler/properties/liner/ReinforcedConcrete.py,sha256=uP-fMC5mKsWrn5tIxf22ZhSlpvRmGXUSnV2vLaoTxV8,18461
61
- rs2/modeler/properties/liner/StandardBeam.py,sha256=E6TlKqybZJbCdh-k2KEsbY0ljSofw8Te5EvMWZUIMLY,17424
60
+ rs2/modeler/properties/liner/CableTruss.py,sha256=hNa-27S9_j4xamudos1guD--OwF0Ot6aP6HiZGVnA3w,13003
61
+ rs2/modeler/properties/liner/Geosynthetic.py,sha256=mctblmYDDx0e2W5b9R4Vp95e2-eWv1vS4n-EPvsS27E,11320
62
+ rs2/modeler/properties/liner/Liner.py,sha256=MsSo_vNgG040U_SVCtKOMyhi5eOI3fd_yjcmnNYaG1A,1851
63
+ rs2/modeler/properties/liner/ReinforcedConcrete.py,sha256=UZjvb8ZP0ApqYHQ3M9XlmorrVWZNzTeK8J9w7pihPwI,18718
64
+ rs2/modeler/properties/liner/StandardBeam.py,sha256=rmKwF6SwzoyJlyUDseGOkAHjGa2rBElp2QzYIJBpiCQ,17669
62
65
  rs2/modeler/properties/liner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
- rs2/modeler/properties/material/InitialConditions.py,sha256=7NcB11DhNJ8g3FSXCeYr2kQK4zcJZlBqq92PCzbRSGU,9142
64
- rs2/modeler/properties/material/MaterialProperty.py,sha256=7f2iHM6m4K-rrf7wqIM_FHUOzEAIRoMjqRABv2cOx2c,3054
66
+ rs2/modeler/properties/material/InitialConditions.py,sha256=LEdgL9Dv-pdzUceue0yi9DfIDdfzmh5GxHz7-Aao7Sk,9416
67
+ rs2/modeler/properties/material/MaterialProperty.py,sha256=lvdvcU0y8PPikydftFf8-u9MLMAeuHXIRK_Y65kb3A0,3560
65
68
  rs2/modeler/properties/material/StageFactors.py,sha256=JP70Ow79AKra3yrQpNGFnCOdWk9cGWaWV2HQguS9pcc,6165
66
69
  rs2/modeler/properties/material/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
70
  rs2/modeler/properties/material/datum/BaseDatum.py,sha256=t4DlusPp6zYfmgIQOCQ--LtEiBkygCR8ipQCfZ7V0KI,949
68
- rs2/modeler/properties/material/datum/Datum.py,sha256=uAjFf1GKP4FcClricpPn0zZmeijGMoiMBeTNyJRzG6Q,4435
71
+ rs2/modeler/properties/material/datum/Datum.py,sha256=peL_8DIZTtQfFQsyJCzjjd5mWyPbayTPxqa6-ur5X4I,4617
69
72
  rs2/modeler/properties/material/datum/PeakResidualDatum.py,sha256=mt5pO3q5quq0UMCEPZyDJLlnvewAjX8HYLLn7Uqg-Dw,1531
70
73
  rs2/modeler/properties/material/datum/SimpleDatum.py,sha256=J9CpDpY3UGmDYzO6RhAbZcReCOfG3JzEwD86i_tgXN4,773
71
74
  rs2/modeler/properties/material/datum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- rs2/modeler/properties/material/hydraulic/Hydraulic.py,sha256=Spb0hRzljC1s5JJx6fL1IMRZForsALh2qcjasj0j_D8,2559
73
- rs2/modeler/properties/material/hydraulic/StaticGroundwater.py,sha256=Hs5GzrX-cOGZAEzUdiMhUh6zhH2-tVdWqvWqcKC_nRo,4322
75
+ rs2/modeler/properties/material/hydraulic/Hydraulic.py,sha256=Y789p83Eh8DqDnueCla9K3pAWsCyNgRbwzPvOtLeKhs,2916
76
+ rs2/modeler/properties/material/hydraulic/StaticGroundwater.py,sha256=n09SZEPWzK4S4LoACJ8pjZOuTCN0WvxOVLB4DhP_n90,4536
74
77
  rs2/modeler/properties/material/hydraulic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Brooks.py,sha256=egniL7URWGMkhDuRJUdwoYtUfZEEtymjiXjupwdPEYo,5922
76
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Constant.py,sha256=T0HHiFgxJB4jSoOarcYKP9G9X70aNfJq9zVUGSIo9As,2659
77
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/FEAGroundwater.py,sha256=DT-GXKlt1mD7xfuPPEJfCZN_5PrZ5wCJrs86poiRABY,5077
78
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Fredlund.py,sha256=EZtbgcM7gq6LMug3JZ3GWCyBlkYutbZ1qcAeU4_I_xc,6286
79
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Gardner.py,sha256=M9UU0VBBKuyitpOz4B0Fe6AHB7xM4HEcdQMsg4ABRv8,5617
80
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Genuchten.py,sha256=H9eAFv1xR0dfviiwmat9_PAMDWkUAaRcX6seLf_3B4A,6664
81
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Simple.py,sha256=SEX9EavaZBqnP1P_l97PbW4DbzxkPL3qpPXGC4OsbDk,4936
78
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Brooks.py,sha256=akZoGYH7wcVyZFHXScrtn9A64t_-9dR_4jH29oCn9lg,6177
79
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Constant.py,sha256=JX0hqyIsgcR7lDnHIaAQXyN4vwD6Ko44QpKa_LHgQmU,2918
80
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/FEAGroundwater.py,sha256=E5hYPDKSo7-18e06wkIVXgMaC48ZigDwrqVGeCRsqD8,5737
81
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Fredlund.py,sha256=yd9fc32oTe6hB9_VbALtr_7fIrfJeWixc7o69w-LC0k,6545
82
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Gardner.py,sha256=mhrYVUq_gQ2Be91Zdbff_5ymKyupXBYqU93f_PqJUEk,5874
83
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Genuchten.py,sha256=sykXwk3XxmdVIoMtVA0ZswLLSWL4z6F4WEUtQ7uuqxM,6925
84
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Simple.py,sha256=_5hM8D97X_Evp6-wEEbb57lGBQl2BhvB9oB4vmLf2I8,5191
82
85
  rs2/modeler/properties/material/hydraulic/FEAGroundwater/UserDefined.py,sha256=c7v5OGpcChZeUrOImj18rSHeGKqj5DdeT1FU8fiRabY,580
83
86
  rs2/modeler/properties/material/hydraulic/FEAGroundwater/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
87
  rs2/modeler/properties/material/stiffness/ChSoil.py,sha256=w91QDAIJCc6QYMhY5Gu1xBv32_k9MfYNGHe5kdGkYLw,1862
@@ -87,61 +90,61 @@ rs2/modeler/properties/material/stiffness/CySoil.py,sha256=USA6QQ71g7jTKMIswfDru
87
90
  rs2/modeler/properties/material/stiffness/DoubleYield.py,sha256=8Yytw_LNTDtAr_VMB5Ps4iwS0ACM8yM0eT-tget8RR4,1969
88
91
  rs2/modeler/properties/material/stiffness/HardeningSoil.py,sha256=vkPmSVq4HHsxcc_wRXJH-COxxp_sqK9IuOzSamA5SEc,3231
89
92
  rs2/modeler/properties/material/stiffness/HardeningSoilSmallStrainStiffness.py,sha256=l0qrjokDxpAtFtUrOhEK-E5e6wtc2asAjG49uCWCSn0,3251
90
- rs2/modeler/properties/material/stiffness/Isotropic.py,sha256=ESQ6ri5bA5SpziLMcqvtx2PHVseizzP51F3DIonBT0c,8026
93
+ rs2/modeler/properties/material/stiffness/Isotropic.py,sha256=SeuvgN080hczKICVZs2v5Fe_FP60NMgmHVTZXleNnxs,8281
91
94
  rs2/modeler/properties/material/stiffness/ManzariAndDafalias.py,sha256=cubdG5jVex2YmFiceDipSK_KfURKZUj57cV07_aPYVg,1747
92
- rs2/modeler/properties/material/stiffness/NonLinearHyperbolic.py,sha256=fia655vcdQdY1K5WsPOCjPZ_afmZwjyaYHKNnWV-eqs,7642
93
- rs2/modeler/properties/material/stiffness/NonLinearIsotropic.py,sha256=XzC8I_Kpfw4DMdEV2oRP5trDu5kNftdJAZLDjXw3wCc,15524
95
+ rs2/modeler/properties/material/stiffness/NonLinearHyperbolic.py,sha256=D7oaCcOwHl8BVq1zRKsyfsYYCBSNFg70I1GSwI8CQ-4,7917
96
+ rs2/modeler/properties/material/stiffness/NonLinearIsotropic.py,sha256=ghHr8TuYh5jj-M_LZ8c3elt_9bTjJZ8TfJYVeCXGfg4,15797
94
97
  rs2/modeler/properties/material/stiffness/Norsand.py,sha256=2iCUHAmeKmwuY7ZG_BTRTJ_x4lStctzwAGKsqJqQZDY,2514
95
- rs2/modeler/properties/material/stiffness/Orthotropic.py,sha256=ICMfH7215XP7waSLVuGKi7uCQV1wiTEymfW42E3Z6Nc,12273
98
+ rs2/modeler/properties/material/stiffness/Orthotropic.py,sha256=FGBlbvoFORHIrPVtM3cdUY38CTwGKFN70oEGHbMQSjE,12532
96
99
  rs2/modeler/properties/material/stiffness/Pm4Sand.py,sha256=WBOT04q0MkpRqXL7tPmXweCsYG-VtfFt6mWP8AVdn3Y,4052
97
100
  rs2/modeler/properties/material/stiffness/Pm4Silt.py,sha256=ASmstIunEwVc0QE__9suJqQMe9ky0P5TunOqEqmZr7Y,4469
98
101
  rs2/modeler/properties/material/stiffness/SoftSoil.py,sha256=UE2zvyWk9ZwLZz_NLs8tV_35cWLHfIRs0uChWBlhhK8,987
99
102
  rs2/modeler/properties/material/stiffness/SoftSoilCreep.py,sha256=QilCey1Jh4K6O5oaoZVVruS1r_4HZ8RgGKvhEFchT04,998
100
- rs2/modeler/properties/material/stiffness/Stiffness.py,sha256=TZHnGmRQMXNrEX5KnXMXgS-07ZCEXbdY89esMYGBuyY,3659
103
+ rs2/modeler/properties/material/stiffness/Stiffness.py,sha256=_z0Lw1qjAJ1kIKnftOlFObzEfOBcjCeHn0zXv2l5sgY,5093
101
104
  rs2/modeler/properties/material/stiffness/SwellingRock.py,sha256=_t-jJVbCgWuVg2a4bfttO-XKlglUYt2C9eXDSrJQabU,3205
102
- rs2/modeler/properties/material/stiffness/TransverselyIsotropic.py,sha256=CYwMpI6CCKpAKW3oeGcI6R8aFEpe5Y5h2Gxi5kOCTw8,10147
105
+ rs2/modeler/properties/material/stiffness/TransverselyIsotropic.py,sha256=fk8-HDb5DZ6x8wijsTmmMXXwUqT_4yL2zkhXW-dUC3s,10533
103
106
  rs2/modeler/properties/material/stiffness/ViscoElastic.py,sha256=KWuKen1sz5ZNF0NRzf16cbMsxkvAZx33HL0CoIpS6S8,3206
104
107
  rs2/modeler/properties/material/stiffness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
108
  rs2/modeler/properties/material/strength/AnisotropicLinear.py,sha256=U4Bu3qngjb8PEkJC7bYFEUpgg69atTNEK-xtUC56wB8,8292
106
- rs2/modeler/properties/material/strength/BarcelonaBasic.py,sha256=vQqszyNj3HnHM1VrFXqGigCUljbhsLcJpJVFmb02bWc,10828
109
+ rs2/modeler/properties/material/strength/BarcelonaBasic.py,sha256=6SvX72PZqNyRjeG8PFQzpCqfoSVjWPHAOs5QY96fcG0,11092
107
110
  rs2/modeler/properties/material/strength/BartonBandisStrength.py,sha256=n2vgrB7z7ui_NdLGFTiwKZAj873PN1WY1zdUArlKGJ8,2847
108
111
  rs2/modeler/properties/material/strength/BoundingSurfacePlasticity.py,sha256=epo8K7-pG8Js32Y9uAl9Em4auroUywibPUCYYcjEDQ0,3907
109
- rs2/modeler/properties/material/strength/CamClay.py,sha256=3BCS-6-v86oz8eo5uDE5akd1MV6vBfhhfAXfTz3wQxw,7348
112
+ rs2/modeler/properties/material/strength/CamClay.py,sha256=OgVTerTO4v7_g4HS4nxte5dPqHHQnLLYJeacVN682HA,7598
110
113
  rs2/modeler/properties/material/strength/ChSoilStrength.py,sha256=2LDfE-JnGtgYFjnP_HYi0IL1k0iAoCezbL2h3nJy6bQ,3748
111
114
  rs2/modeler/properties/material/strength/CySoilStrength.py,sha256=61KNncs_NDig5pU0IITT3PUwm_ByNlwdYsLySnC7UFY,5450
112
- rs2/modeler/properties/material/strength/DiscreteFunction.py,sha256=IhCkxfi2PEJwbYrPppZy3iTLSupQ_udBPn_F7BED6iw,2627
115
+ rs2/modeler/properties/material/strength/DiscreteFunction.py,sha256=RB0brnUDU_2c-jj-x0DlCJMiaPxn8AeUBiqot6K6EiI,2895
113
116
  rs2/modeler/properties/material/strength/DoubleYieldStrength.py,sha256=fApg_IPjcRq8tlkpmr7mVg8rxb9MO0n5q-k3El7Xv24,5455
114
- rs2/modeler/properties/material/strength/DruckerPrager.py,sha256=1Je2XOhCZYT9dWZUtN4X2mn5M4UawRQ55juKvUfKHaY,7388
117
+ rs2/modeler/properties/material/strength/DruckerPrager.py,sha256=uaKW7-RfFNIgIvxcA5C-bDeYfRvZP6mEi8tAvLHu-Qw,7650
115
118
  rs2/modeler/properties/material/strength/Finn.py,sha256=crhKU3yqToQTotwg3CxNAVKuD1aOxpBK6-4yp9N1S7M,7120
116
119
  rs2/modeler/properties/material/strength/GeneralizedAnisotropic.py,sha256=ou_DHzn1I2QH1aNm_xYGIUm-mHlrITliU5TEWat8IbQ,1011
117
- rs2/modeler/properties/material/strength/GeneralizedHoekBrown.py,sha256=iaibWNR9Gc1pBGJBUGnBIIAwkRh7F4KcCfdyNwFk9bk,12279
120
+ rs2/modeler/properties/material/strength/GeneralizedHoekBrown.py,sha256=XhxvzoIJ-Xov3NFZ1PweYPukcHShs5icEWEKsoj3_wM,12569
118
121
  rs2/modeler/properties/material/strength/HardeningSoilStrength.py,sha256=LUw-lX90uH1tKN8Qajsxhw72F0a9Qx6v52aiFKC7wAs,5437
119
122
  rs2/modeler/properties/material/strength/HardeningSoilWithSmallStrainStiffness.py,sha256=8e9zbRrK5BScky70Gu5jkrjlXTRASIT8NN46fxDZRNg,5453
120
- rs2/modeler/properties/material/strength/HoekBrown.py,sha256=aekpYDAEdgBgfIR32PceA5HxK0lAVH3ajcNOVNPDZtM,6468
123
+ rs2/modeler/properties/material/strength/HoekBrown.py,sha256=FJbo4fcuPKlNHa1gWEyIii1KS2Aa3cVyOu0PbyA4vzs,6722
121
124
  rs2/modeler/properties/material/strength/Hyperbolic.py,sha256=dgJyzQGoP_JhHu5hh1kTjZ9gNEQoo0POxuYrf7a-F60,3228
122
- rs2/modeler/properties/material/strength/JointedGeneralizedHoekBrown.py,sha256=OMBSVo-SLZZAFLoKZkYMZrSk8dBUlUzkTw4PSn0-SPw,12609
123
- rs2/modeler/properties/material/strength/JointedMohrCoulomb.py,sha256=7fgn2FlYZksZi8S0g0L9JemYvOx8MflUUs7bOkRrnt8,7699
125
+ rs2/modeler/properties/material/strength/JointedGeneralizedHoekBrown.py,sha256=x8556UHGXHdAeBk8VpBbeloP_1bGtQeMkAZbc4r4-3k,12899
126
+ rs2/modeler/properties/material/strength/JointedMohrCoulomb.py,sha256=KJFV1rh7eWGYzT2HlrQMQKQp0iOmxRvTex281OoBmRY,7971
124
127
  rs2/modeler/properties/material/strength/ManzariAndDafaliasStrength.py,sha256=K0XUUF_g_nmvzf1DOaSi5IMIVchMJHJFWOmYKvGqCwM,5592
125
- rs2/modeler/properties/material/strength/ModifiedCamClay.py,sha256=VeSx62FNUh6FbFUpyceSxUyvFh78su-v2h5eH93jZHU,7412
126
- rs2/modeler/properties/material/strength/MohrCoulombStrength.py,sha256=cNRKdXwLxeMpfHB_pl9ZU8bLdbov_tha5DVDrF-LE00,7433
127
- rs2/modeler/properties/material/strength/MohrCoulombWithCap.py,sha256=PJ44A4MHnmJhJSVeVqMiMrG4PmzRwdSiLR3210lr6p8,6858
128
+ rs2/modeler/properties/material/strength/ModifiedCamClay.py,sha256=jFxNIMVMIejGUJQMm5zDdxpMP5w_3C0lhktza49mjGA,7678
129
+ rs2/modeler/properties/material/strength/MohrCoulombStrength.py,sha256=QbFa2jOASUn6v44VF0kOy3kd1LkDPQaHb30OzglkQK8,7707
130
+ rs2/modeler/properties/material/strength/MohrCoulombWithCap.py,sha256=faESM0baCDKfCi81p-3k7UV4fcr2x29--ry13aKyhfs,7130
128
131
  rs2/modeler/properties/material/strength/NorSandStrength.py,sha256=nrWLqF6yFNtfQsHxp7I0FQKkot6HlDARp2lJSlbLVFw,6138
129
132
  rs2/modeler/properties/material/strength/PM4SandStrength.py,sha256=sw65gTYMaa6baWNpKRJJkUlG3DLZG7rl45SLx63E08w,9284
130
- rs2/modeler/properties/material/strength/PM4SiltStrength.py,sha256=AlRXV2sWxcFyFbDFTqroWnGdOBbEpZ3-Ki_hkDK9jRk,12538
133
+ rs2/modeler/properties/material/strength/PM4SiltStrength.py,sha256=7ABvpwKKe53hKPqEvJH8-WLeTMtxYrGaTvN5IopIe8w,12918
131
134
  rs2/modeler/properties/material/strength/PowerCurve.py,sha256=dqelX1W1jU_AbtlRSFdcb4hxPS0qNNHmMI9Oz0uHOb0,5200
132
135
  rs2/modeler/properties/material/strength/Shansep.py,sha256=O8W9YJaEwcJJEgoSTZd1KLkZUpqWlsbCyqiy_P8GUaM,10586
133
136
  rs2/modeler/properties/material/strength/ShearNormalFunction.py,sha256=CMA3CS47H9fyB1fOepld2Oj59nFx59aiUxYop5tvRTI,1024
134
137
  rs2/modeler/properties/material/strength/SnowdenModAnisotropicLinear.py,sha256=pNjpWYKpW5Av6NcS9EXDGxngkXC7-ErisGeql6OwAQI,4331
135
138
  rs2/modeler/properties/material/strength/SoftSoilCreepStrength.py,sha256=GacOfhHdpoK0wv8wJ7gFIVjMo0irnMiOW1Wkcu1xu2U,4507
136
139
  rs2/modeler/properties/material/strength/SoftSoilStrength.py,sha256=Wg8N4Rl5clzQUL2d7Yx9U8zxyVDGsSgQOHS2613xuzw,4211
137
- rs2/modeler/properties/material/strength/SofteningHardeningModel.py,sha256=jPQKBehZc_JmDce_1vVxP8XFVkDYowxjtPG9oCd5xuo,8961
138
- rs2/modeler/properties/material/strength/Strength.py,sha256=5XzbTR6l5kZW9WH-uxnQHySza-L3UQmCOxNikrScM1Q,13813
140
+ rs2/modeler/properties/material/strength/SofteningHardeningModel.py,sha256=7TYNih51JbBEe-MQhxe9ETdhP5c2OOHOlfArqvo3-Dg,9762
141
+ rs2/modeler/properties/material/strength/Strength.py,sha256=UwVrgo0qmNopkTO0K7UK6Y066mfcJSKxWUYF1X9o4Ac,16965
139
142
  rs2/modeler/properties/material/strength/SwellingRockStrength.py,sha256=WDStBPpMGO2R6W88_Y6wZvKrazG_7tT8nFMNW6Vy7R4,6886
140
143
  rs2/modeler/properties/material/strength/VerticalStressRatio.py,sha256=OH0JKEClwejKE2ReABEYcRdLrnR0oCs8p9ObLf9xHfc,5845
141
144
  rs2/modeler/properties/material/strength/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
- rs2/modeler/properties/material/thermal/Thermal.py,sha256=Tdhj9Yy_15F-6TRMvk6Ndw6N5EY6OpJDmwAED013gPU,4624
145
+ rs2/modeler/properties/material/thermal/Thermal.py,sha256=1MR0P8k3SHJLKAhh6HpgodJhRE5_rk-0okeukBB2KW4,5060
143
146
  rs2/modeler/properties/material/thermal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
- rs2/modeler/properties/material/thermal/conductivity/Conductivity.py,sha256=ghX8mZuV9TJDVunD3Ag38Tcn9xWO6NB-0X-Rt-u77yY,1550
147
+ rs2/modeler/properties/material/thermal/conductivity/Conductivity.py,sha256=QFcRcVX9A_tzVG_OnrukLCoEP9PTe-Bd50wjoPf5s7A,2003
145
148
  rs2/modeler/properties/material/thermal/conductivity/ConstantConductivity.py,sha256=joHkJpIp5qJapbpfEjoCNTfOeB9KZbnUyuLYIsm0oQ8,1678
146
149
  rs2/modeler/properties/material/thermal/conductivity/CoteAndKonrad.py,sha256=5jE6xHfr7VSETkcfLu6aj7lN1wK5ZKUuWZqv6Nlmt7U,2103
147
150
  rs2/modeler/properties/material/thermal/conductivity/Derives.py,sha256=qB1bBJAZYejzoSkOhrz40ZNBTAX31I--8nvOJF4NyFA,779
@@ -151,35 +154,35 @@ rs2/modeler/properties/material/thermal/conductivity/Tabular.py,sha256=9YxNddxSg
151
154
  rs2/modeler/properties/material/thermal/conductivity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
155
  rs2/modeler/properties/material/thermal/heatcapacity/ConstantHeatCapacity.py,sha256=Ro2lcuxFh2PvGQyqyCtknGGr5tHYkSkRlX3RYnpOWSk,2349
153
156
  rs2/modeler/properties/material/thermal/heatcapacity/CustomHeatCapacity.py,sha256=2VoKmyDxsDgk077-ojrFp_VsZ9o1mXwNmmoojFcvZZE,2281
154
- rs2/modeler/properties/material/thermal/heatcapacity/HeatCapacity.py,sha256=fLkrJD2479ET-UM5cZM2GBLIP7lWzr0f90XVoInDL2A,1239
157
+ rs2/modeler/properties/material/thermal/heatcapacity/HeatCapacity.py,sha256=T-Q812lc4YaG22C5FOXbn-rDEfeHmQpWsR1c5X8KecY,1511
155
158
  rs2/modeler/properties/material/thermal/heatcapacity/JameNewman.py,sha256=Wk-kaAhtbTQMvM3hHqd054jn3w5cT51qs0fF8S5cQGM,1218
156
159
  rs2/modeler/properties/material/thermal/heatcapacity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
160
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/CustomWaterContent.py,sha256=9nCQy4N3JFoG2kKvXZLn3L7YOEC3NrLQGlWQ7MGW17o,730
158
161
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/Konrad.py,sha256=pTeQCNvpv9KDY6PvpfxWRBw3W5HG8xZRoAeJbWUf5x0,1793
159
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/SoilUnfrozenWaterContent.py,sha256=w-4U-kDNrZ--6i0zevKgJDPGrph_9oWhWWTMltsMQlM,1426
162
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/SoilUnfrozenWaterContent.py,sha256=anyEiHKDeOtzX7iQYSwhu_TQJo6dfbM6BAo56TN_D2I,1751
160
163
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/TiceAnderson.py,sha256=YQBgKHdSCsRenDRu1sAizCFZjFdLrrSKFuFrH9vrztQ,1501
161
164
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
165
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/BrooksWaterContent.py,sha256=VLsn66kichFIo6gDEAPhl0GVv-XIPr-t9wTLhhZCIOE,1151
163
166
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/FredlundWaterContent.py,sha256=ROqhE3DGzFutIYgNZzHrgrelD75Olg69l0mClGzwAWs,1275
164
167
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GardnerWaterContent.py,sha256=R66IgVCDyCy62xrYjisU11AYe6FajXdJEK3tOBk2sHY,921
165
168
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GenuchtenWaterContent.py,sha256=2zqNiN7kix9uxneCZzAwQuwnouQjEVK7QKEJGAZHvdo,1660
166
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/HydraulicModel.py,sha256=K0eMyootJKZIYfVyacpeg4dKEsK9es5XwqGhmHnYKnI,2394
169
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/HydraulicModel.py,sha256=_tSkVUr3RkotkPRXyl_w4_nLIjnWDrugYSOcA7FYJQs,2860
167
170
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/SimpleWaterContent.py,sha256=R8Yd1sPfgdRNPvAcqQYGVyWGYxWNeQXeGMA4g798zPs,815
168
171
  rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
172
  rs2/modeler/properties/pile/Beam.py,sha256=VljEyMqHGdEDLFqL7BerXUrLvt7L8t_fHnH0Oaq085k,1460
170
173
  rs2/modeler/properties/pile/Elastic.py,sha256=0t9EovyRrPFLbIyVFYTZgsNGMQ0vKQA-zxbon615u1Y,2386
171
- rs2/modeler/properties/pile/ForceDisplacement.py,sha256=g2bX04Cf-8XJ06PxCe2GQ_pTJ1oL_FlUMiO8-DJ7a2k,3532
174
+ rs2/modeler/properties/pile/ForceDisplacement.py,sha256=Ws6PbWuAmSEIRq76vA5LeaGXYR2Qd1qDQrHsvfD91u8,3786
172
175
  rs2/modeler/properties/pile/Linear.py,sha256=J6WpTpZekgXF_4wl_9bLUyMIBe9hPq3r0eAj3gWNMDg,3265
173
176
  rs2/modeler/properties/pile/MaterialDependentPile.py,sha256=0Qll9JUNRAI3Uh4TJlj63Ifh2KZCxUGbQGs3kuXxRvI,5055
174
177
  rs2/modeler/properties/pile/MohrCoulombPile.py,sha256=-qJ7GoYHBWSjeqbHTOqxpphSlJcfiWhJLX0bAjWm8jM,5225
175
178
  rs2/modeler/properties/pile/MultiLinear.py,sha256=uffumS3SqbASqiBbmylssrgNWHlMVh4Z66W1p1pfPik,3184
176
- rs2/modeler/properties/pile/Pile.py,sha256=crbSqbB1ggq3jtuc5ZDtQETW7LRyT159DxbNx7EKc9s,3317
179
+ rs2/modeler/properties/pile/Pile.py,sha256=HgV4M9366pv8-bRqRrQ-rSqEnXiu8YNE0CtzeABGG50,3851
177
180
  rs2/modeler/properties/pile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
181
  rs2/utilities/ApplicationManager.py,sha256=u2GS_nW6uJcBcOc_CN5yy1DaBU5CF3yOtFGpJC7tdE4,2586
179
182
  rs2/utilities/ColorPicker.py,sha256=nOHwCHtn8p3KkVC-GSpa38AOhRh2urQVE3brViH3vzE,2534
180
183
  rs2/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
- RS2Scripting-11.23.0.dev4.dist-info/License.txt,sha256=_OkJXIBSGMEg07z5G3WiNn3yWOvhXK___X7MHTWR17E,1077
182
- RS2Scripting-11.23.0.dev4.dist-info/METADATA,sha256=GoUuJpCm81o1k8Rj2d_AjRyWZ9LN3WNOa-bH6TJ0gXw,9688
183
- RS2Scripting-11.23.0.dev4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
184
- RS2Scripting-11.23.0.dev4.dist-info/top_level.txt,sha256=9QT-lM7XOqDZtjDEtW-lpH9z4TZPnuq4_4rYcR1W8jM,4
185
- RS2Scripting-11.23.0.dev4.dist-info/RECORD,,
184
+ RS2Scripting-11.24.0.dist-info/License.txt,sha256=_OkJXIBSGMEg07z5G3WiNn3yWOvhXK___X7MHTWR17E,1077
185
+ RS2Scripting-11.24.0.dist-info/METADATA,sha256=WgnBXJGpMEneS4iDZC2GfPIShiQDYySD-vgj1kLDkpg,9813
186
+ RS2Scripting-11.24.0.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
187
+ RS2Scripting-11.24.0.dist-info/top_level.txt,sha256=9QT-lM7XOqDZtjDEtW-lpH9z4TZPnuq4_4rYcR1W8jM,4
188
+ RS2Scripting-11.24.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (70.1.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
rs2/BaseModel.py ADDED
@@ -0,0 +1,46 @@
1
+ from rs2._common.ProxyObject import ProxyObject
2
+ from rs2._common.documentProxy import DocumentProxy
3
+ from rs2.Units import Units
4
+ class BaseModel(ProxyObject):
5
+
6
+ def __init__(self, client, ID):
7
+ super().__init__(client, ID)
8
+ self._documentProxy = self._getDocument()
9
+
10
+ def _getDocument(self):
11
+ documentObjectID = self._callFunction('getDocument', [], keepReturnValueReference=True)
12
+ return DocumentProxy(self._client, documentObjectID)
13
+
14
+ def _enforceFeaFezEnding(self, path: str):
15
+ if not (path.endswith('.fea') or path.endswith('.fez')):
16
+ raise ValueError('Path must end with .fea or .fez')
17
+
18
+ def close(self):
19
+ '''
20
+ :ref:`Model Example`
21
+
22
+ | Closes the model
23
+
24
+ '''
25
+ return self._callFunction('close', [])
26
+
27
+ def save(self):
28
+ '''
29
+ :ref:`Model Example`
30
+
31
+ | Saves the model
32
+
33
+ '''
34
+ return self._callFunction('save', [])
35
+
36
+ def getUnits(self):
37
+ '''
38
+ :ref:`Get Model Units Example`
39
+
40
+ | Get Solid, Hydro and Thermal units for your model
41
+ '''
42
+ NUM_UNITS = 3
43
+ data = self._callFunction('getUnits', [])
44
+ if (len (data) !=NUM_UNITS) :
45
+ assert False, "Expected 3 units, got " + str(len(data))
46
+ return Units(*data)
rs2/Units.py ADDED
@@ -0,0 +1,15 @@
1
+
2
+ class Units:
3
+ """
4
+ Examples:
5
+ :ref:`Get Model Units Example`
6
+
7
+ Attributes:
8
+ solid_units (list[tuple[str]]): List of all solid units for your model.
9
+ hydro_units (list[tuple[str]]): List of all hydraulic units for your model.
10
+ thermal_units (list[tuple[str]]): List of all thermal units for your model.
11
+ """
12
+ def __init__(self, solid_units=None, hydro_units=None, thermal_units=None):
13
+ self.solid_units = solid_units
14
+ self.hydro_units = hydro_units
15
+ self.thermal_units = thermal_units
rs2/_common/Client.py CHANGED
@@ -1,18 +1,11 @@
1
- import logging
2
1
  import warnings
3
2
  from rsmessages.requestFormat import functionRequest
4
3
  from rsmessages.responseFormat import functionResponse, functionStatus
5
4
  from multiprocessing.connection import Client as multiProcessingClient
6
5
 
7
-
8
- logging.basicConfig(filename='python_client.log', filemode='w', format='%(process)d - %(asctime)s - %(levelname)s - %(message)s')
9
- logger = logging.getLogger(__name__)
10
- logger.level = logging.INFO
11
-
12
-
13
6
  class Client:
14
7
  def __init__(self, host, port):
15
- self.compatibleProgramVersion = "11.023"
8
+ self.compatibleProgramVersion = "11.024"
16
9
  self.connection = self.establishConnection(host, port)
17
10
  if self.connection == None:
18
11
  raise RuntimeError("Could not establish connection with the server. Make sure the server is started on the application.")
@@ -31,7 +24,6 @@ class Client:
31
24
  try:
32
25
  connection = multiProcessingClient((host, port) ,'AF_INET')
33
26
  except Exception as e:
34
- logger.error(f"Unable to create client. Full error: {e}")
35
27
  return
36
28
  return connection
37
29
 
@@ -1,37 +1,19 @@
1
- from rs2._common.ProxyObject import ProxyObject
2
- from rs2._common.documentProxy import DocumentProxy
3
- from rs2._common.Units import Units
4
1
  from rs2.interpreter.InterpreterEnums import *
5
- from rs2.interpreter.MeshResults import MeshResults
6
- from rs2.interpreter.HistoryQueryResults import *
7
- from rs2.interpreter.TimeQueryResults import *
2
+ from rs2.interpreter.queryResults.MeshResults import MeshResults
3
+ from rs2.interpreter.queryResults.HistoryQueryResults import *
4
+ from rs2.interpreter.queryResults.TimeQueryResults import *
8
5
  from rs2.interpreter.InterpreterGraphEnums import *
9
- from rs2.interpreter.JointResult import *
10
- from rs2.interpreter.LinerResult import *
11
- from rs2.interpreter.BoltResult import*
12
- from rs2.interpreter.CompositeResult import*
13
- from rs2.interpreter.MaterialQueryResults import *
14
- class Model(ProxyObject):
6
+ from rs2.interpreter.supportResults.JointResult import *
7
+ from rs2.interpreter.supportResults.LinerResult import *
8
+ from rs2.interpreter.supportResults.BoltResult import*
9
+ from rs2.interpreter.supportResults.CompositeResult import*
10
+ from rs2.interpreter.queryResults.MaterialQueryResults import *
11
+ from rs2.BaseModel import BaseModel
12
+
13
+ class Model(BaseModel):
15
14
  """
16
15
  :ref:`Model Example`
17
16
  """
18
- def __init__(self, client, ID):
19
- super().__init__(client, ID)
20
- self._documentProxy = self._getDocument()
21
-
22
- def _getDocument(self):
23
- documentObjectID = self._callFunction('getDocument', [], keepReturnValueReference=True)
24
- return DocumentProxy(self._client, documentObjectID)
25
-
26
- def close(self):
27
- '''
28
- :ref:`Model Example`
29
-
30
- | Closes the model
31
-
32
- '''
33
- return self._callFunction('close', [])
34
-
35
17
  def saveCopyAs(self, fileName : str):
36
18
  '''
37
19
  Saves the model using the given file name.
@@ -43,16 +25,10 @@ class Model(ProxyObject):
43
25
  model.saveCopyAs('C:/simple_3_stage.fez')
44
26
  '''
45
27
  formattedFileName = fileName.replace('/', '\\')
28
+ self._enforceFeaFezEnding(formattedFileName)
46
29
  return self._callFunction('saveAs', [formattedFileName])
47
30
 
48
- def save(self):
49
- '''
50
- :ref:`Model Example`
51
-
52
- | Saves the model
53
31
 
54
- '''
55
- return self._callFunction('save', [])
56
32
 
57
33
  def SetActiveStage(self, stageNumber: int):
58
34
  '''
@@ -344,19 +320,6 @@ class Model(ProxyObject):
344
320
 
345
321
  return structured_data
346
322
 
347
- def getUnits(self) -> Units:
348
- '''
349
- :ref:`Get Model Units Example`
350
-
351
- | Get Solid, Hydro and Thermal units for your model
352
-
353
- '''
354
- NUM_UNITS = 3
355
- data = self._callFunction('getUnits', [])
356
- if len(data) != NUM_UNITS:
357
- assert False
358
- return Units()
359
- return Units(*data)
360
323
 
361
324
  def getCriticalSRF(self):
362
325
  '''
@@ -1,4 +1,14 @@
1
1
  class HistoryQueryResult:
2
+ """
3
+ Examples:
4
+ :ref:`History Query Example`
5
+
6
+ Attributes:
7
+ horizontal_axis_result (double): Horizontal Axis Result for history query point.
8
+ vertical_axis_result (double): Vertical Axis Result for history query point.
9
+ location_x (double): X-Coordinate for history query point.
10
+ location_y (double): Y-Coordinate for history query point.
11
+ """
2
12
  def __init__(self, x_location, y_location, horizontal_axis_result, vertical_axis_result):
3
13
  self.horizontal_axis_result = horizontal_axis_result
4
14
  self.vertical_axis_result = vertical_axis_result
@@ -1,6 +1,16 @@
1
- from rs2.interpreter.UtilityResult import *
1
+ from rs2.interpreter._UtilityResult import *
2
2
 
3
3
  class QueryResult:
4
+ """
5
+ Examples:
6
+ :ref:`Material Query Example`
7
+
8
+ Attributes:
9
+ x_location (double): X-Coordinate for material query point.
10
+ y_location (double): Y-Coordinate for material query point.
11
+ distance (double): Distance for material query point.
12
+ value (double): Result type value for material query point.
13
+ """
4
14
  def __init__(self, x_location, y_location, distance, value):
5
15
  self.x_location = x_location
6
16
  self.y_location = y_location
@@ -33,6 +43,15 @@ class QueryResult:
33
43
  return self.value
34
44
 
35
45
  class MaterialQueryResults:
46
+ """
47
+ Examples:
48
+ :ref:`Material Query Example`
49
+
50
+ Attributes:
51
+ entity_ID (str): Unique Identifier for material query.
52
+ material_id (int): Material Identifier for material query.
53
+ query_values (list[QueryResult]): List of QueryResult point objects making up the material query.
54
+ """
36
55
  def __init__(self, entity_ID, material_id, query_values):
37
56
  self.entity_ID = entity_ID
38
57
  self.material_id = material_id
@@ -0,0 +1,28 @@
1
+ class MeshResults:
2
+ """
3
+ Examples:
4
+ :ref:`Get Mesh Results Example`
5
+
6
+ Attributes:
7
+ results (list[list[double]]): Mesh results containing x-coordinate, y-coordinate and result type value for each node in your model.
8
+ """
9
+ results = None
10
+
11
+ def __init__(self, results):
12
+ self.results = results
13
+
14
+ def getXCoordinate(self, index):
15
+ '''
16
+ Returns the X-Coordinate of the mesh node for specified index
17
+ '''
18
+ return self.results[index][0]
19
+ def getYCoordinate(self, index):
20
+ '''
21
+ Returns the Y-Coordinate of the mesh node for specified index
22
+ '''
23
+ return self.results[index][1]
24
+ def getValue(self, index):
25
+ '''
26
+ Returns the value of the mesh node based on model's current result type and specified index
27
+ '''
28
+ return self.results[index][2]