RS2Scripting 11.26.0__tar.gz → 11.28.0__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.
Files changed (223) hide show
  1. {rs2scripting-11.26.0/src/RS2Scripting.egg-info → rs2scripting-11.28.0}/PKG-INFO +5 -6
  2. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/README.md +2 -1
  3. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/pyproject.toml +5 -3
  4. {rs2scripting-11.26.0 → rs2scripting-11.28.0/src/RS2Scripting.egg-info}/PKG-INFO +5 -6
  5. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/RS2Scripting.egg-info/SOURCES.txt +13 -0
  6. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/BaseModel.py +83 -83
  7. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/Units.py +35 -35
  8. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/_common/Client.py +1 -1
  9. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/_common/ProxyObject.py +12 -12
  10. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/_common/documentProxy.py +5 -5
  11. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/InterpreterEnums.py +90 -90
  12. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/InterpreterGraphEnums.py +64 -64
  13. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/InterpreterModel.py +326 -326
  14. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/_UtilityResult.py +20 -20
  15. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/queryResults/HistoryQueryResults.py +43 -43
  16. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/queryResults/MaterialQueryResults.py +90 -90
  17. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/queryResults/MeshResults.py +31 -31
  18. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/queryResults/TimeQueryResults.py +148 -148
  19. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/supportResults/BoltResult.py +91 -91
  20. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/supportResults/CompositeResult.py +55 -55
  21. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/supportResults/JointResult.py +51 -51
  22. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/supportResults/LinerResult.py +192 -192
  23. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/Model.py +510 -391
  24. rs2scripting-11.28.0/src/rs2/modeler/managed_properties/GanFunctions.py +108 -0
  25. rs2scripting-11.28.0/src/rs2/modeler/managed_properties/material/strength/GeneralizedHoekBrown.py +49 -0
  26. rs2scripting-11.28.0/src/rs2/modeler/managed_properties/material/strength/JointedGeneralizedHoekBrown.py +49 -0
  27. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/AbsoluteStageFactorGettersInterface.py +35 -35
  28. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/AbsoluteStageFactorInterface.py +54 -54
  29. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/CompositeProperty.py +82 -82
  30. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/DiscreteFunction.py +44 -43
  31. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/HydroDistributionFunction.py +18 -18
  32. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/MaterialJoint.py +31 -31
  33. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/MaterialJointOptions.py +27 -27
  34. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/PropertyEnums.py +421 -393
  35. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/RelativeStageFactorInterface.py +55 -55
  36. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/ShearNormalFunction.py +44 -44
  37. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/SnowdenAnisotropicFunction.py +55 -55
  38. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/StructuralInterface.py +60 -60
  39. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/UserDefinedWaterMode.py +20 -20
  40. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/bolt/Bolt.py +41 -41
  41. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/bolt/EndAnchored.py +59 -59
  42. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/bolt/FullyBonded.py +66 -66
  43. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/bolt/PlainStrandCable.py +112 -112
  44. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/bolt/Swellex.py +136 -136
  45. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/bolt/Tieback.py +192 -192
  46. rs2scripting-11.28.0/src/rs2/modeler/properties/field_stress/Constant.py +35 -0
  47. rs2scripting-11.28.0/src/rs2/modeler/properties/field_stress/FieldStress.py +24 -0
  48. rs2scripting-11.28.0/src/rs2/modeler/properties/field_stress/Gravity.py +115 -0
  49. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/BartonBandis.py +151 -151
  50. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/BartonBandisMaterial.py +90 -90
  51. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/DisplacementDependent.py +142 -142
  52. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/GeosyntheticHyperbolic.py +155 -155
  53. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/GeosyntheticHyperbolicMaterial.py +101 -101
  54. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/HyperbolicSoftening.py +210 -210
  55. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/Joint.py +67 -67
  56. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/MaterialDependent.py +136 -136
  57. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/MohrCoulomb.py +219 -219
  58. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/MohrCoulombMaterial.py +123 -123
  59. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/joint/NoneSlip.py +111 -111
  60. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/liner/CableTruss.py +207 -207
  61. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/liner/Geosynthetic.py +175 -175
  62. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/liner/Liner.py +38 -38
  63. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/liner/ReinforcedConcrete.py +299 -299
  64. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/liner/StandardBeam.py +276 -276
  65. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/InitialConditions.py +160 -160
  66. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/MaterialProperty.py +69 -59
  67. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/StageFactors.py +103 -103
  68. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/datum/BaseDatum.py +22 -22
  69. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/datum/Datum.py +82 -82
  70. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/datum/PeakResidualDatum.py +31 -31
  71. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/datum/SimpleDatum.py +17 -17
  72. rs2scripting-11.28.0/src/rs2/modeler/properties/material/field_stress/CustomConstant.py +38 -0
  73. rs2scripting-11.28.0/src/rs2/modeler/properties/material/field_stress/CustomGravity.py +115 -0
  74. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater/Brooks.py +114 -114
  75. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater/Constant.py +62 -62
  76. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater/FEAGroundwater.py +93 -93
  77. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater/Fredlund.py +125 -125
  78. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater/Gardner.py +114 -114
  79. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater/Genuchten.py +132 -132
  80. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater/Simple.py +99 -99
  81. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater/UserDefined.py +10 -10
  82. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/Hydraulic.py +66 -54
  83. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/StaticGroundwater.py +90 -90
  84. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/ChSoil.py +45 -45
  85. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/Custom.py +83 -83
  86. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/CySoil.py +45 -45
  87. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/DoubleYield.py +45 -45
  88. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/HardeningSoil.py +73 -73
  89. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/HardeningSoilSmallStrainStiffness.py +73 -73
  90. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/Isotropic.py +130 -130
  91. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/ManzariAndDafalias.py +38 -38
  92. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/NonLinearHyperbolic.py +125 -125
  93. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/NonLinearIsotropic.py +263 -263
  94. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/Norsand.py +45 -45
  95. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/Orthotropic.py +188 -188
  96. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/Pm4Sand.py +80 -80
  97. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/Pm4Silt.py +87 -87
  98. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/SoftSoil.py +24 -24
  99. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/SoftSoilCreep.py +24 -24
  100. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/Stiffness.py +75 -75
  101. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/SwellingRock.py +52 -52
  102. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/TransverselyIsotropic.py +153 -153
  103. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/stiffness/ViscoElastic.py +59 -59
  104. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/AnisotropicLinear.py +150 -150
  105. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/BarcelonaBasic.py +184 -184
  106. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/BartonBandisStrength.py +59 -59
  107. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/BoundingSurfacePlasticity.py +66 -66
  108. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/CamClay.py +121 -121
  109. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/ChSoilStrength.py +66 -66
  110. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/CySoilStrength.py +94 -94
  111. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/DiscreteFunction.py +49 -49
  112. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/DoubleYieldStrength.py +94 -94
  113. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/DruckerPrager.py +121 -121
  114. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/Finn.py +129 -129
  115. rs2scripting-11.28.0/src/rs2/modeler/properties/material/strength/GeneralizedAnisotropic.py +29 -0
  116. rs2scripting-11.28.0/src/rs2/modeler/properties/material/strength/GeneralizedHoekBrown.py +333 -0
  117. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/HardeningSoilStrength.py +101 -101
  118. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/HardeningSoilWithSmallStrainStiffness.py +101 -101
  119. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/HoekBrown.py +117 -110
  120. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/Hyperbolic.py +59 -59
  121. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/JointedGeneralizedHoekBrown.py +231 -206
  122. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/JointedMohrCoulomb.py +124 -124
  123. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/ManzariAndDafaliasStrength.py +108 -108
  124. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/ModifiedCamClay.py +121 -121
  125. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/MohrCoulombStrength.py +149 -121
  126. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/MohrCoulombWithCap.py +120 -120
  127. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/NorSandStrength.py +101 -101
  128. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/PM4SandStrength.py +178 -178
  129. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/PM4SiltStrength.py +241 -241
  130. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/PowerCurve.py +101 -101
  131. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/Shansep.py +172 -172
  132. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/ShearNormalFunction.py +21 -21
  133. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/SnowdenModAnisotropicLinear.py +78 -78
  134. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/SoftSoilCreepStrength.py +87 -87
  135. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/SoftSoilStrength.py +80 -80
  136. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/SofteningHardeningModel.py +158 -158
  137. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/Strength.py +224 -224
  138. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/SwellingRockStrength.py +122 -122
  139. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/strength/VerticalStressRatio.py +94 -94
  140. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/Thermal.py +81 -81
  141. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/conductivity/Conductivity.py +36 -36
  142. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/conductivity/ConstantConductivity.py +31 -31
  143. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/conductivity/CoteAndKonrad.py +45 -45
  144. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/conductivity/Derives.py +17 -17
  145. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/conductivity/Johansen.py +45 -45
  146. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/conductivity/JohansenLu.py +24 -24
  147. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/conductivity/Tabular.py +31 -31
  148. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/heatcapacity/ConstantHeatCapacity.py +38 -38
  149. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/heatcapacity/CustomHeatCapacity.py +38 -38
  150. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/heatcapacity/HeatCapacity.py +27 -27
  151. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/heatcapacity/JameNewman.py +24 -24
  152. rs2scripting-11.28.0/src/rs2/modeler/properties/material/thermal/heatcapacity/__init__.py +0 -0
  153. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/CustomWaterContent.py +13 -13
  154. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/Konrad.py +31 -31
  155. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/SoilUnfrozenWaterContent.py +30 -30
  156. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/TiceAnderson.py +31 -31
  157. rs2scripting-11.28.0/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/__init__.py +0 -0
  158. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/BrooksWaterContent.py +24 -24
  159. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/FredlundWaterContent.py +31 -31
  160. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GardnerWaterContent.py +24 -24
  161. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GenuchtenWaterContent.py +38 -38
  162. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/HydraulicModel.py +45 -45
  163. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/SimpleWaterContent.py +17 -17
  164. rs2scripting-11.28.0/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/__init__.py +0 -0
  165. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/pile/Beam.py +34 -34
  166. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/pile/Elastic.py +45 -45
  167. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/pile/ForceDisplacement.py +67 -67
  168. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/pile/Linear.py +59 -59
  169. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/pile/MaterialDependentPile.py +87 -87
  170. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/pile/MohrCoulombPile.py +94 -94
  171. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/pile/MultiLinear.py +56 -56
  172. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/pile/Pile.py +73 -73
  173. rs2scripting-11.28.0/src/rs2/modeler/properties/pile/__init__.py +0 -0
  174. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/propertyProxy.py +303 -283
  175. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/utilities/ApplicationManager.py +69 -69
  176. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/utilities/ColorPicker.py +84 -84
  177. rs2scripting-11.28.0/src/rs2/utilities/__init__.py +0 -0
  178. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testExampleCode.py +25 -25
  179. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testFileOpenWarning.py +23 -23
  180. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testInterpreterMultipleFileCloseProgram.py +84 -84
  181. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testInterpreterSaveAs.py +48 -48
  182. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testInterpreterSingleFileCloseProgram.py +66 -66
  183. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testMaterialJointOptions.py +113 -113
  184. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testModelerMultipleFileCloseProgram.py +87 -87
  185. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testModelerSingleFileCloseProgram.py +66 -66
  186. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testOpenFileNoResults.py +34 -34
  187. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testShearNormalFunction.py +191 -191
  188. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testSnowdenAnisotropicFunction.py +320 -320
  189. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testStiffnessYoungModulusE1EZFactor.py +35 -35
  190. rs2scripting-11.26.0/src/rs2/modeler/properties/material/strength/GeneralizedAnisotropic.py +0 -20
  191. rs2scripting-11.26.0/src/rs2/modeler/properties/material/strength/GeneralizedHoekBrown.py +0 -203
  192. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/License.txt +0 -0
  193. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/setup.cfg +0 -0
  194. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/RS2Scripting.egg-info/dependency_links.txt +0 -0
  195. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/RS2Scripting.egg-info/requires.txt +0 -0
  196. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/RS2Scripting.egg-info/top_level.txt +0 -0
  197. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/__init__.py +0 -0
  198. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/_common/__init__.py +0 -0
  199. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/RS2Interpreter.py +0 -0
  200. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/__init__.py +0 -0
  201. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/queryResults/__init__.py +0 -0
  202. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/interpreter/supportResults/__init__.py +0 -0
  203. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/RS2Modeler.py +0 -0
  204. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/__init__.py +0 -0
  205. {rs2scripting-11.26.0/src/rs2/modeler/properties → rs2scripting-11.28.0/src/rs2/modeler/managed_properties}/__init__.py +0 -0
  206. {rs2scripting-11.26.0/src/rs2/modeler/properties/bolt → rs2scripting-11.28.0/src/rs2/modeler/managed_properties/material}/__init__.py +0 -0
  207. {rs2scripting-11.26.0/src/rs2/modeler/properties/joint → rs2scripting-11.28.0/src/rs2/modeler/managed_properties/material/strength}/__init__.py +0 -0
  208. {rs2scripting-11.26.0/src/rs2/modeler/properties/liner → rs2scripting-11.28.0/src/rs2/modeler/properties}/__init__.py +0 -0
  209. {rs2scripting-11.26.0/src/rs2/modeler/properties/material → rs2scripting-11.28.0/src/rs2/modeler/properties/bolt}/__init__.py +0 -0
  210. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/datum → rs2scripting-11.28.0/src/rs2/modeler/properties/field_stress}/__init__.py +0 -0
  211. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater → rs2scripting-11.28.0/src/rs2/modeler/properties/joint}/__init__.py +0 -0
  212. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/hydraulic → rs2scripting-11.28.0/src/rs2/modeler/properties/liner}/__init__.py +0 -0
  213. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/stiffness → rs2scripting-11.28.0/src/rs2/modeler/properties/material}/__init__.py +0 -0
  214. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/strength → rs2scripting-11.28.0/src/rs2/modeler/properties/material/datum}/__init__.py +0 -0
  215. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/thermal → rs2scripting-11.28.0/src/rs2/modeler/properties/material/field_stress}/__init__.py +0 -0
  216. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/thermal/conductivity → rs2scripting-11.28.0/src/rs2/modeler/properties/material/hydraulic/FEAGroundwater}/__init__.py +0 -0
  217. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/src/rs2/modeler/properties/material/hydraulic/HydroDistribution.py +0 -0
  218. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/thermal/heatcapacity → rs2scripting-11.28.0/src/rs2/modeler/properties/material/hydraulic}/__init__.py +0 -0
  219. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent → rs2scripting-11.28.0/src/rs2/modeler/properties/material/stiffness}/__init__.py +0 -0
  220. {rs2scripting-11.26.0/src/rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic → rs2scripting-11.28.0/src/rs2/modeler/properties/material/strength}/__init__.py +0 -0
  221. {rs2scripting-11.26.0/src/rs2/modeler/properties/pile → rs2scripting-11.28.0/src/rs2/modeler/properties/material/thermal}/__init__.py +0 -0
  222. {rs2scripting-11.26.0/src/rs2/utilities → rs2scripting-11.28.0/src/rs2/modeler/properties/material/thermal/conductivity}/__init__.py +0 -0
  223. {rs2scripting-11.26.0 → rs2scripting-11.28.0}/tests/testSaveAs.py +0 -0
@@ -1,18 +1,16 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: RS2Scripting
3
- Version: 11.26.0
3
+ Version: 11.28.0
4
4
  Summary: Client library for interacting with RS2 through python
5
5
  Author: Rocscience
6
- License: MIT License
6
+ License: MIT
7
7
  Project-URL: Homepage, https://www.rocscience.com/software/rs2
8
8
  Project-URL: Documentation, https://www.rocscience.com/help/rs2/overview
9
9
  Keywords: Rocscience,RS2,Scripting,RocScript,Geotechnical,Finite Element Analysis,FEM,2D
10
10
  Classifier: Programming Language :: Python :: 3
11
- Classifier: License :: OSI Approved :: MIT License
12
11
  Classifier: Topic :: Scientific/Engineering
13
12
  Requires-Python: >=3.7
14
13
  Description-Content-Type: text/markdown
15
- License-File: License.txt
16
14
  Requires-Dist: rsmessages==0.0.2
17
15
 
18
16
  ## Introduction
@@ -107,7 +105,8 @@ The following steps can be taken to regenerate the RS2 Scripting Documentation:
107
105
  2. Rebuild the RS2 library in your virtual environment by following the [Build](#build) section.
108
106
  3. Install the documentation requirement packages.
109
107
  ```pip install -r docs/requirements.txt```
110
- 4. Run .\docs\example_code\runAllExamples.bat file in the folder to update example results. This will run the examples using the version of RS2 you have installed on your machine.
108
+ 4. To rerun all examples with the command below:
109
+ ```python docs/example_code/runAll.py```
111
110
  5. To generate the documentation run the following:
112
111
  ```python generateAndBuildDocumentation.py```
113
112
 
@@ -90,7 +90,8 @@ The following steps can be taken to regenerate the RS2 Scripting Documentation:
90
90
  2. Rebuild the RS2 library in your virtual environment by following the [Build](#build) section.
91
91
  3. Install the documentation requirement packages.
92
92
  ```pip install -r docs/requirements.txt```
93
- 4. Run .\docs\example_code\runAllExamples.bat file in the folder to update example results. This will run the examples using the version of RS2 you have installed on your machine.
93
+ 4. To rerun all examples with the command below:
94
+ ```python docs/example_code/runAll.py```
94
95
  5. To generate the documentation run the following:
95
96
  ```python generateAndBuildDocumentation.py```
96
97
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "RS2Scripting"
7
- version = "11.26.0"
7
+ version = "11.28.0"
8
8
  dependencies = [
9
9
  "rsmessages == 0.0.2"
10
10
  ]
@@ -16,11 +16,13 @@ readme = "README.md"
16
16
  requires-python = ">=3.7"
17
17
  classifiers = [
18
18
  "Programming Language :: Python :: 3",
19
- "License :: OSI Approved :: MIT License",
20
19
  "Topic :: Scientific/Engineering",
21
20
  ]
22
- license = {text = "MIT License"}
23
21
  keywords = ["Rocscience", "RS2", "Scripting", "RocScript", "Geotechnical", "Finite Element Analysis", "FEM", "2D"]
22
+ license = { text = "MIT" }
23
+
24
+ [tool.setuptools]
25
+ license-files = []
24
26
 
25
27
  [project.urls]
26
28
  Homepage = "https://www.rocscience.com/software/rs2"
@@ -1,18 +1,16 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: RS2Scripting
3
- Version: 11.26.0
3
+ Version: 11.28.0
4
4
  Summary: Client library for interacting with RS2 through python
5
5
  Author: Rocscience
6
- License: MIT License
6
+ License: MIT
7
7
  Project-URL: Homepage, https://www.rocscience.com/software/rs2
8
8
  Project-URL: Documentation, https://www.rocscience.com/help/rs2/overview
9
9
  Keywords: Rocscience,RS2,Scripting,RocScript,Geotechnical,Finite Element Analysis,FEM,2D
10
10
  Classifier: Programming Language :: Python :: 3
11
- Classifier: License :: OSI Approved :: MIT License
12
11
  Classifier: Topic :: Scientific/Engineering
13
12
  Requires-Python: >=3.7
14
13
  Description-Content-Type: text/markdown
15
- License-File: License.txt
16
14
  Requires-Dist: rsmessages==0.0.2
17
15
 
18
16
  ## Introduction
@@ -107,7 +105,8 @@ The following steps can be taken to regenerate the RS2 Scripting Documentation:
107
105
  2. Rebuild the RS2 library in your virtual environment by following the [Build](#build) section.
108
106
  3. Install the documentation requirement packages.
109
107
  ```pip install -r docs/requirements.txt```
110
- 4. Run .\docs\example_code\runAllExamples.bat file in the folder to update example results. This will run the examples using the version of RS2 you have installed on your machine.
108
+ 4. To rerun all examples with the command below:
109
+ ```python docs/example_code/runAll.py```
111
110
  5. To generate the documentation run the following:
112
111
  ```python generateAndBuildDocumentation.py```
113
112
 
@@ -32,6 +32,12 @@ src/rs2/interpreter/supportResults/__init__.py
32
32
  src/rs2/modeler/Model.py
33
33
  src/rs2/modeler/RS2Modeler.py
34
34
  src/rs2/modeler/__init__.py
35
+ src/rs2/modeler/managed_properties/GanFunctions.py
36
+ src/rs2/modeler/managed_properties/__init__.py
37
+ src/rs2/modeler/managed_properties/material/__init__.py
38
+ src/rs2/modeler/managed_properties/material/strength/GeneralizedHoekBrown.py
39
+ src/rs2/modeler/managed_properties/material/strength/JointedGeneralizedHoekBrown.py
40
+ src/rs2/modeler/managed_properties/material/strength/__init__.py
35
41
  src/rs2/modeler/properties/AbsoluteStageFactorGettersInterface.py
36
42
  src/rs2/modeler/properties/AbsoluteStageFactorInterface.py
37
43
  src/rs2/modeler/properties/CompositeProperty.py
@@ -54,6 +60,10 @@ src/rs2/modeler/properties/bolt/PlainStrandCable.py
54
60
  src/rs2/modeler/properties/bolt/Swellex.py
55
61
  src/rs2/modeler/properties/bolt/Tieback.py
56
62
  src/rs2/modeler/properties/bolt/__init__.py
63
+ src/rs2/modeler/properties/field_stress/Constant.py
64
+ src/rs2/modeler/properties/field_stress/FieldStress.py
65
+ src/rs2/modeler/properties/field_stress/Gravity.py
66
+ src/rs2/modeler/properties/field_stress/__init__.py
57
67
  src/rs2/modeler/properties/joint/BartonBandis.py
58
68
  src/rs2/modeler/properties/joint/BartonBandisMaterial.py
59
69
  src/rs2/modeler/properties/joint/DisplacementDependent.py
@@ -81,6 +91,9 @@ src/rs2/modeler/properties/material/datum/Datum.py
81
91
  src/rs2/modeler/properties/material/datum/PeakResidualDatum.py
82
92
  src/rs2/modeler/properties/material/datum/SimpleDatum.py
83
93
  src/rs2/modeler/properties/material/datum/__init__.py
94
+ src/rs2/modeler/properties/material/field_stress/CustomConstant.py
95
+ src/rs2/modeler/properties/material/field_stress/CustomGravity.py
96
+ src/rs2/modeler/properties/material/field_stress/__init__.py
84
97
  src/rs2/modeler/properties/material/hydraulic/Hydraulic.py
85
98
  src/rs2/modeler/properties/material/hydraulic/HydroDistribution.py
86
99
  src/rs2/modeler/properties/material/hydraulic/StaticGroundwater.py
@@ -1,83 +1,83 @@
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
- Closes the model
21
-
22
- Examples:
23
-
24
- .. code::
25
-
26
- model.close()
27
-
28
- See a full example in :ref:`Model Example`.
29
-
30
- '''
31
- return self._callFunction('close', [])
32
-
33
- def save(self):
34
- '''
35
- Saves the model
36
-
37
- Examples:
38
-
39
- .. code::
40
-
41
- model.save()
42
-
43
- See a full example in :ref:`Model Example`.
44
-
45
- '''
46
- return self._callFunction('save', [])
47
-
48
- def getUnits(self):
49
- '''
50
-
51
- Get Solid, Hydro and Thermal units for your model from RS2Modeler or RS2Interpreter.
52
-
53
- See Also:
54
- Each of solid units, hydro units and thermal units of your model can be accessed through `rs2.Units <rs2.Units.html>`_.
55
-
56
- Examples:
57
-
58
- .. code-block:: python
59
-
60
- modeler = RS2Modeler()
61
- model = modeler.openFile(rf"{current_dir}\example_models\SupportStructuralResults.fez")
62
- # Get Solid, Hydro and Thermal units of your model
63
- modelerUnits = model.getUnits()
64
- print("\\nModeler Units")
65
- print("\\nSolid Units :")
66
- # Get solid units
67
- pprint(modelerUnits.solid_units)
68
- print("\\nHydro Units :")
69
- # Get hydro units
70
- pprint(modelerUnits.hydro_units)
71
- print("\\nThermal Units :")
72
- # Get thermal units
73
- pprint(modelerUnits.thermal_units)
74
-
75
- See a full example in :ref:`Get Model Units Example`
76
-
77
-
78
- '''
79
- NUM_UNITS = 3
80
- data = self._callFunction('getUnits', [])
81
- if (len (data) !=NUM_UNITS) :
82
- assert False, "Expected 3 units, got " + str(len(data))
83
- return Units(*data)
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
+ Closes the model
21
+
22
+ Examples:
23
+
24
+ .. code::
25
+
26
+ model.close()
27
+
28
+ See a full example in :ref:`Model Example`.
29
+
30
+ '''
31
+ return self._callFunction('close', [])
32
+
33
+ def save(self):
34
+ '''
35
+ Saves the model
36
+
37
+ Examples:
38
+
39
+ .. code::
40
+
41
+ model.save()
42
+
43
+ See a full example in :ref:`Model Example`.
44
+
45
+ '''
46
+ return self._callFunction('save', [])
47
+
48
+ def getUnits(self):
49
+ '''
50
+
51
+ Get Solid, Hydro and Thermal units for your model from RS2Modeler or RS2Interpreter.
52
+
53
+ See Also:
54
+ Each of solid units, hydro units and thermal units of your model can be accessed through `rs2.Units <rs2.Units.html>`_.
55
+
56
+ Examples:
57
+
58
+ .. code-block:: python
59
+
60
+ modeler = RS2Modeler()
61
+ model = modeler.openFile(rf"{current_dir}\example_models\SupportStructuralResults.fez")
62
+ # Get Solid, Hydro and Thermal units of your model
63
+ modelerUnits = model.getUnits()
64
+ print("\\nModeler Units")
65
+ print("\\nSolid Units :")
66
+ # Get solid units
67
+ pprint(modelerUnits.solid_units)
68
+ print("\\nHydro Units :")
69
+ # Get hydro units
70
+ pprint(modelerUnits.hydro_units)
71
+ print("\\nThermal Units :")
72
+ # Get thermal units
73
+ pprint(modelerUnits.thermal_units)
74
+
75
+ See a full example in :ref:`Get Model Units Example`
76
+
77
+
78
+ '''
79
+ NUM_UNITS = 3
80
+ data = self._callFunction('getUnits', [])
81
+ if (len (data) !=NUM_UNITS) :
82
+ assert False, "Expected 3 units, got " + str(len(data))
83
+ return Units(*data)
@@ -1,35 +1,35 @@
1
-
2
- class Units:
3
- """
4
- Attributes:
5
- solid_units (list[tuple[str]]): List of all solid units for your model.
6
- hydro_units (list[tuple[str]]): List of all hydraulic units for your model.
7
- thermal_units (list[tuple[str]]): List of all thermal units for your model.
8
-
9
- Examples:
10
-
11
- .. code-block:: python
12
-
13
- modeler = RS2Modeler()
14
- model = modeler.openFile(rf"{current_dir}\example_models\SupportStructuralResults.fez")
15
- # Get Solid, Hydro and Thermal units of your model
16
- modelerUnits = model.getUnits()
17
- print("\\nModeler Units")
18
- print("\\nSolid Units :")
19
- # Get solid units
20
- pprint(modelerUnits.solid_units)
21
- print("\\nHydro Units :")
22
- # Get hydro units
23
- pprint(modelerUnits.hydro_units)
24
- print("\\nThermal Units :")
25
- # Get thermal units
26
- pprint(modelerUnits.thermal_units)
27
-
28
- See a full example in :ref:`Get Model Units Example`.
29
-
30
-
31
- """
32
- def __init__(self, solid_units=None, hydro_units=None, thermal_units=None):
33
- self.solid_units = solid_units
34
- self.hydro_units = hydro_units
35
- self.thermal_units = thermal_units
1
+
2
+ class Units:
3
+ """
4
+ Attributes:
5
+ solid_units (list[tuple[str]]): List of all solid units for your model.
6
+ hydro_units (list[tuple[str]]): List of all hydraulic units for your model.
7
+ thermal_units (list[tuple[str]]): List of all thermal units for your model.
8
+
9
+ Examples:
10
+
11
+ .. code-block:: python
12
+
13
+ modeler = RS2Modeler()
14
+ model = modeler.openFile(rf"{current_dir}\example_models\SupportStructuralResults.fez")
15
+ # Get Solid, Hydro and Thermal units of your model
16
+ modelerUnits = model.getUnits()
17
+ print("\\nModeler Units")
18
+ print("\\nSolid Units :")
19
+ # Get solid units
20
+ pprint(modelerUnits.solid_units)
21
+ print("\\nHydro Units :")
22
+ # Get hydro units
23
+ pprint(modelerUnits.hydro_units)
24
+ print("\\nThermal Units :")
25
+ # Get thermal units
26
+ pprint(modelerUnits.thermal_units)
27
+
28
+ See a full example in :ref:`Get Model Units Example`.
29
+
30
+
31
+ """
32
+ def __init__(self, solid_units=None, hydro_units=None, thermal_units=None):
33
+ self.solid_units = solid_units
34
+ self.hydro_units = hydro_units
35
+ self.thermal_units = thermal_units
@@ -5,7 +5,7 @@ from multiprocessing.connection import Client as multiProcessingClient
5
5
 
6
6
  class Client:
7
7
  def __init__(self, host, port):
8
- self.compatibleProgramVersion = "11.026"
8
+ self.compatibleProgramVersion = "11.028"
9
9
  self.connection = self.establishConnection(host, port)
10
10
  if self.connection == None:
11
11
  raise RuntimeError("Could not establish connection with the server. Make sure the server is started on the application.")
@@ -1,12 +1,12 @@
1
- from . import Client
2
- from rsmessages.requestFormat import functionRequest
3
-
4
- class ProxyObject:
5
- def __init__(self, client : Client.Client, ID):
6
- self._client = client
7
- self._ID = ID
8
-
9
- def _callFunction(self, functionName, parameters = [], keepReturnValueReference = False, proxyArgumentIndices = []):
10
- request = functionRequest(functionName, parameters, self._ID, keepReturnValueReference, proxyArgumentIndices)
11
- return self._client.callFunction(request)
12
-
1
+ from . import Client
2
+ from rsmessages.requestFormat import functionRequest
3
+
4
+ class ProxyObject:
5
+ def __init__(self, client : Client.Client, ID):
6
+ self._client = client
7
+ self._ID = ID
8
+
9
+ def _callFunction(self, functionName, parameters = [], keepReturnValueReference = False, proxyArgumentIndices = []):
10
+ request = functionRequest(functionName, parameters, self._ID, keepReturnValueReference, proxyArgumentIndices)
11
+ return self._client.callFunction(request)
12
+
@@ -1,5 +1,5 @@
1
- from rs2._common.ProxyObject import ProxyObject
2
-
3
- class DocumentProxy(ProxyObject):
4
- def rebuildAndPostProcessPiles(self):
5
- self._callFunction("rebuildAndPostProcessPiles", [])
1
+ from rs2._common.ProxyObject import ProxyObject
2
+
3
+ class DocumentProxy(ProxyObject):
4
+ def rebuildAndPostProcessPiles(self):
5
+ self._callFunction("rebuildAndPostProcessPiles", [])
@@ -1,91 +1,91 @@
1
- from enum import Enum, auto
2
- class ExportResultType(Enum):
3
- SOLID_TOTAL_STRESS_SIGMA_ONE = "INTERPRET_SIGMA_ONE"
4
- SOLID_TOTAL_STRESS_SIGMA_THREE = "INTERPRET_SIGMA_THREE"
5
- SOLID_TOTAL_STRESS_SIGMA_Z = "INTERPRET_SIGMA_ZED"
6
- STRENGTH_FACTOR = "INTERPRET_STRENGTH_FACTORS"
7
- SOLID_DISPLACEMENT_HORIZONTAL_DISPLACEMENT_ABS = "INTERPRET_X_DISP_ABS"
8
- SOLID_DISPLACEMENT_VERTICAL_DISPLACMENT_ABS = "INTERPRET_Y_DISP_ABS"
9
- SOLID_DISPLACEMENT_TOTAL_DISPLACEMENT = "INTERPRET_TOTAL_DISPLACE"
10
- STRENGTH_FACTOR_WITH_UBIQUITOUS_JOINTS = "INTERPRET_UBIQUITOUS"
11
- SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_ONE = "INTERPRET_SIGMA_ONE_EFF"
12
- SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_THREE = "INTERPRET_SIGMA_THREE_EFF"
13
- SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_Z = "INTERPRET_SIGMA_Z_EFF"
14
- SEEPAGE_PORE_PRESSURE = "INTERPRET_PORE_PRESSURE"
15
- SEEPAGE_EXCESS_PORE_PRESSURE = "INTERPRET_EXCESS_PWP"
16
- SEEPAGE_DEGREE_OF_SATURATION = "INTERPRET_DEGREE_SATURATION"
17
- SEEPAGE_PRESSURE_HEAD = "INTERPRET_PRESSUREHEAD"
18
- SEEPAGE_TOTAL_HEAD = "INTERPRET_TOTAL_HEAD"
19
- SEEPAGE_HORIZONTAL_DISCHARGE_VELOCITY = "INTERPRET_X_FLUX_SIGNED"
20
- SEEPAGE_VERTICAL_DISCHARGE_VELOCITY = "INTERPRET_Y_FLUX_SIGNED"
21
- SEEPAGE_HORIZONTAL_DISCHARGE_VELOCITY_ABS = "INTERPRET_X_FLUX_ABS"
22
- SEEPAGE_VERTICAL_DISCHARGE_VELOCITY_ABS = "INTERPRET_Y_FLUX_ABS"
23
- SEEPAGE_TOTAL_DISCHARGE_VELOCITY = "INTERPRET_TOTAL_FLUX"
24
- SEEPAGE_HORIZONTAL_HYDRAULIC_GRADIENT_ABS = "INTERPRET_HYD_GRAD_X_ABS"
25
- SEEPAGE_VERTICAL_HYDARULIC_GRADIENT_ABS = "INTERPRET_HYD_GRAD_Y_ABS"
26
- SEEPAGE_HORIZONTAL_HYDRAULIC_GRADIENT = "INTERPRET_HYD_GRAD_X_SIGNED"
27
- SEEPAGE_VERTICAL_HYDARULIC_GRADIENT = "INTERPRET_HYD_GRAD_Y_SIGNED"
28
- SEEPAGE_TOTAL_HYDRAULIC_GRADIENT = "INTERPRET_HYD_GRAD_TOTAL"
29
- SEEPAGE_HORIZONTAL_PERMEABILITY = "INTERPRET_PERMEABILITY_X"
30
- SEEPAGE_VERTICAL_PERMEABILITY = "INTERPRET_PERMEABILITY_Y"
31
- SEEPAGE_SPATIAL_PERM = "INTERPRET_SPATIAL_PERM"
32
- SEEPAGE_SPATIAL_WC = "INTERPRET_SPATIAL_WC"
33
- SEEPAGE_SPATIAL_WC_RES = "INTERPRET_SPATIAL_WC_R"
34
- SEEPAGE_SPATIAL_CONDY = "INTERPRET_SPATIAL_CONDY"
35
- SEEPAGE_SPATIAL_ANGLE= "INTERPRET_SPATIAL_ANGLE"
36
- SEEPAGE_YIELDED_ELEMENTS = "INTERPRET_YIELDED_ELEMENTS"
37
- SOLID_STRAIN_VOLUMETRIC_STRAIN = "INTERPRET_STRAIN_VOLUMETRIC"
38
- SOLID_STRAIN_MAX_SHEAR_STRAIN = "INTERPRET_STRAIN_MAX_SHEAR"
39
- SOLID_DISPLACEMENT_HORIZONTAL_DISPLACEMENT = "INTERPRET_X_DISP_SIGNED"
40
- SOLID_DISPLACEMENT_VERTICAL_DISPLACEMENT = "INTERPRET_Y_DISP_SIGNED"
41
- SOLID_TOTAL_STRESS_MEAN_STRESS = "INTERPRET_STRESS_P"
42
- SOLID_TOTAL_STRESS_VON_MISES_STRESS = "INTERPRET_STRESS_Q"
43
- SOLID_EFFECTIVE_STRESS_EFFECTIVE_MEAN_STRESS = "INTERPRET_STRESS_P_EFF"
44
- SOLID_EFFECTIVE_STRESS_EFFECTIVE_VON_MISES_STRESS = "INTERPRET_STRESS_Q_EFF"
45
- SOLID_TOTAL_STRESS_SIGMA_XX = "INTERPRET_SIGMA_XX"
46
- SOLID_TOTAL_STRESS_SIGMA_YY = "INTERPRET_SIGMA_YY"
47
- SOLID_TOTAL_STRESS_SIGMA_XY = "INTERPRET_SIGMA_XY"
48
- SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_XX = "INTERPRET_SIGMA_XX_EFF"
49
- SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_YY = "INTERPRET_SIGMA_YY_EFF"
50
- SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_XY = "INTERPRET_SIGMA_XY_EFF"
51
- SOLID_TOTAL_STRESS_DIFFERENTIAL_STRESS = "INTERPRET_STRESS_DIFFERENTIAL"
52
- SOLID_STRAIN_STRAIN_XX = "INTERPRET_STRAIN_XX"
53
- SOLID_STRAIN_STRAIN_YY = "INTERPRET_STRAIN_YY"
54
- SOLID_STRAIN_STRAIN_ZZ = "INTERPRET_STRAIN_ZZ"
55
- SOLID_STRAIN_STRAIN_XY = "INTERPRET_STRAIN_XY"
56
- SOLID_STRAIN_MAJOR_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MAJOR"
57
- SOLID_STRAIN_MEAN_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MEAN"
58
- SOLID_STRAIN_MINOR_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MINOR"
59
- PLASTIC_STRAIN_XX = "INTERPRET_PLASTIC_STRAIN_XX"
60
- PLASTIC_STRAIN_YY = "INTERPRET_PLASTIC_STRAIN_YY"
61
- PLASTIC_STRAIN_ZZ = "INTERPRET_PLASTIC_STRAIN_ZZ"
62
- PLASTIC_STRAIN_XY = "INTERPRET_PLASTIC_STRAIN_XY"
63
- PLASTIC_STRAIN_MAJOR_PRICIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MAJOR"
64
- PLASTIC_STRAIN_MEAN_PRINCIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MEAN"
65
- PLASTIC_STRAIN_MINOR_PRINCIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MINOR"
66
- PLASTIC_STRAIN_VOLUMETRIC_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_VOLUMETRIC"
67
- PLASTIC_STRAIN_MAX_SHEAR_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_MAX_SHEAR"
68
- THERMAL_TEMPERATURE = "INTERPRET_TEMPERATURE"
69
- THERMAL_HORIZONTAL_FLUX = "INTERPRET_THERMO_X_FLUX_SIGNED"
70
- THERMAL_VERTICAL_FLUX = "INTERPRET_THERMO_Y_FLUX_SIGNED"
71
- THERMAL_TOTAL_FLUX = "INTERPRET_THERMO_TOTAL_FLUX"
72
- THERMAL_HORIZONTAL_GRADIENT = "INTERPRET_THERMO_GRAD_X_SIGNED"
73
- THERMAL_VERTICAL_GRADIENT = "INTERPRET_THERMO_GRAD_Y_SIGNED"
74
- THERMAL_TOTAL_GRADIENT = "INTERPRET_THERMO_GRAD_TOTAL"
75
- THERMAL_HORIZONTAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_X_SIGNED"
76
- THERMAL_VERTICAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_Y_SIGNED"
77
- THERMAL_TOTAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_TOTAL"
78
- THERMAL_SPECIFIC_HEAT = "INTERPRET_SPECIFIC_HEAT"
79
- THERMAL_UNFROZEN_WATER_CONTENT = "INTERPRET_UNFROZEN_WATER_CONTENT"
80
- DYNAMIC_MINIMUM_X_DISPLACEMENT = "INTERPRET_DYN_MIN_DISPLACEMENT_X"
81
- DYNAMIC_MAXIMUM_X_DISPLACEMENT = "INTERPRET_DYN_MAX_DISPLACEMENT_X"
82
- DYNAMIC_MINIMUM_Y_DISPLACEMENT = "INTERPRET_DYN_MIN_DISPLACEMENT_Y"
83
- DYNAMIC_MAXIMUM_Y_DISPLACEMENT = "INTERPRET_DYN_MAX_DISPLACEMENT_Y"
84
- DYNAMIC_MINIMUM_X_VELOCITY = "INTERPRET_DYN_MIN_VELOCITY_X"
85
- DYNAMIC_MAXIMUM_X_VELOCITY = "INTERPRET_DYN_MAX_VELOCITY_X"
86
- DYNAMIC_MINIMUM_Y_VELOCITY = "INTERPRET_DYN_MIN_VELOCITY_Y"
87
- DYNAMIC_MAXIMUM_Y_VELOCITY = "INTERPRET_DYN_MAX_VELOCITY_Y"
88
- DYNAMIC_MINIMUM_X_ACCELERATION = "INTERPRET_DYN_MIN_ACCELERATION_X"
89
- DYNAMIC_MAXIMUM_X_ACCELERATION = "INTERPRET_DYN_MAX_ACCELERATION_X"
90
- DYNAMIC_MINIMUM_Y_ACCELERATION = "INTERPRET_DYN_MIN_ACCELERATION_Y"
1
+ from enum import Enum, auto
2
+ class ExportResultType(Enum):
3
+ SOLID_TOTAL_STRESS_SIGMA_ONE = "INTERPRET_SIGMA_ONE"
4
+ SOLID_TOTAL_STRESS_SIGMA_THREE = "INTERPRET_SIGMA_THREE"
5
+ SOLID_TOTAL_STRESS_SIGMA_Z = "INTERPRET_SIGMA_ZED"
6
+ STRENGTH_FACTOR = "INTERPRET_STRENGTH_FACTORS"
7
+ SOLID_DISPLACEMENT_HORIZONTAL_DISPLACEMENT_ABS = "INTERPRET_X_DISP_ABS"
8
+ SOLID_DISPLACEMENT_VERTICAL_DISPLACMENT_ABS = "INTERPRET_Y_DISP_ABS"
9
+ SOLID_DISPLACEMENT_TOTAL_DISPLACEMENT = "INTERPRET_TOTAL_DISPLACE"
10
+ STRENGTH_FACTOR_WITH_UBIQUITOUS_JOINTS = "INTERPRET_UBIQUITOUS"
11
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_ONE = "INTERPRET_SIGMA_ONE_EFF"
12
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_THREE = "INTERPRET_SIGMA_THREE_EFF"
13
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_Z = "INTERPRET_SIGMA_Z_EFF"
14
+ SEEPAGE_PORE_PRESSURE = "INTERPRET_PORE_PRESSURE"
15
+ SEEPAGE_EXCESS_PORE_PRESSURE = "INTERPRET_EXCESS_PWP"
16
+ SEEPAGE_DEGREE_OF_SATURATION = "INTERPRET_DEGREE_SATURATION"
17
+ SEEPAGE_PRESSURE_HEAD = "INTERPRET_PRESSUREHEAD"
18
+ SEEPAGE_TOTAL_HEAD = "INTERPRET_TOTAL_HEAD"
19
+ SEEPAGE_HORIZONTAL_DISCHARGE_VELOCITY = "INTERPRET_X_FLUX_SIGNED"
20
+ SEEPAGE_VERTICAL_DISCHARGE_VELOCITY = "INTERPRET_Y_FLUX_SIGNED"
21
+ SEEPAGE_HORIZONTAL_DISCHARGE_VELOCITY_ABS = "INTERPRET_X_FLUX_ABS"
22
+ SEEPAGE_VERTICAL_DISCHARGE_VELOCITY_ABS = "INTERPRET_Y_FLUX_ABS"
23
+ SEEPAGE_TOTAL_DISCHARGE_VELOCITY = "INTERPRET_TOTAL_FLUX"
24
+ SEEPAGE_HORIZONTAL_HYDRAULIC_GRADIENT_ABS = "INTERPRET_HYD_GRAD_X_ABS"
25
+ SEEPAGE_VERTICAL_HYDARULIC_GRADIENT_ABS = "INTERPRET_HYD_GRAD_Y_ABS"
26
+ SEEPAGE_HORIZONTAL_HYDRAULIC_GRADIENT = "INTERPRET_HYD_GRAD_X_SIGNED"
27
+ SEEPAGE_VERTICAL_HYDARULIC_GRADIENT = "INTERPRET_HYD_GRAD_Y_SIGNED"
28
+ SEEPAGE_TOTAL_HYDRAULIC_GRADIENT = "INTERPRET_HYD_GRAD_TOTAL"
29
+ SEEPAGE_HORIZONTAL_PERMEABILITY = "INTERPRET_PERMEABILITY_X"
30
+ SEEPAGE_VERTICAL_PERMEABILITY = "INTERPRET_PERMEABILITY_Y"
31
+ SEEPAGE_SPATIAL_PERM = "INTERPRET_SPATIAL_PERM"
32
+ SEEPAGE_SPATIAL_WC = "INTERPRET_SPATIAL_WC"
33
+ SEEPAGE_SPATIAL_WC_RES = "INTERPRET_SPATIAL_WC_R"
34
+ SEEPAGE_SPATIAL_CONDY = "INTERPRET_SPATIAL_CONDY"
35
+ SEEPAGE_SPATIAL_ANGLE= "INTERPRET_SPATIAL_ANGLE"
36
+ SEEPAGE_YIELDED_ELEMENTS = "INTERPRET_YIELDED_ELEMENTS"
37
+ SOLID_STRAIN_VOLUMETRIC_STRAIN = "INTERPRET_STRAIN_VOLUMETRIC"
38
+ SOLID_STRAIN_MAX_SHEAR_STRAIN = "INTERPRET_STRAIN_MAX_SHEAR"
39
+ SOLID_DISPLACEMENT_HORIZONTAL_DISPLACEMENT = "INTERPRET_X_DISP_SIGNED"
40
+ SOLID_DISPLACEMENT_VERTICAL_DISPLACEMENT = "INTERPRET_Y_DISP_SIGNED"
41
+ SOLID_TOTAL_STRESS_MEAN_STRESS = "INTERPRET_STRESS_P"
42
+ SOLID_TOTAL_STRESS_VON_MISES_STRESS = "INTERPRET_STRESS_Q"
43
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_MEAN_STRESS = "INTERPRET_STRESS_P_EFF"
44
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_VON_MISES_STRESS = "INTERPRET_STRESS_Q_EFF"
45
+ SOLID_TOTAL_STRESS_SIGMA_XX = "INTERPRET_SIGMA_XX"
46
+ SOLID_TOTAL_STRESS_SIGMA_YY = "INTERPRET_SIGMA_YY"
47
+ SOLID_TOTAL_STRESS_SIGMA_XY = "INTERPRET_SIGMA_XY"
48
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_XX = "INTERPRET_SIGMA_XX_EFF"
49
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_YY = "INTERPRET_SIGMA_YY_EFF"
50
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_XY = "INTERPRET_SIGMA_XY_EFF"
51
+ SOLID_TOTAL_STRESS_DIFFERENTIAL_STRESS = "INTERPRET_STRESS_DIFFERENTIAL"
52
+ SOLID_STRAIN_STRAIN_XX = "INTERPRET_STRAIN_XX"
53
+ SOLID_STRAIN_STRAIN_YY = "INTERPRET_STRAIN_YY"
54
+ SOLID_STRAIN_STRAIN_ZZ = "INTERPRET_STRAIN_ZZ"
55
+ SOLID_STRAIN_STRAIN_XY = "INTERPRET_STRAIN_XY"
56
+ SOLID_STRAIN_MAJOR_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MAJOR"
57
+ SOLID_STRAIN_MEAN_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MEAN"
58
+ SOLID_STRAIN_MINOR_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MINOR"
59
+ PLASTIC_STRAIN_XX = "INTERPRET_PLASTIC_STRAIN_XX"
60
+ PLASTIC_STRAIN_YY = "INTERPRET_PLASTIC_STRAIN_YY"
61
+ PLASTIC_STRAIN_ZZ = "INTERPRET_PLASTIC_STRAIN_ZZ"
62
+ PLASTIC_STRAIN_XY = "INTERPRET_PLASTIC_STRAIN_XY"
63
+ PLASTIC_STRAIN_MAJOR_PRICIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MAJOR"
64
+ PLASTIC_STRAIN_MEAN_PRINCIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MEAN"
65
+ PLASTIC_STRAIN_MINOR_PRINCIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MINOR"
66
+ PLASTIC_STRAIN_VOLUMETRIC_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_VOLUMETRIC"
67
+ PLASTIC_STRAIN_MAX_SHEAR_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_MAX_SHEAR"
68
+ THERMAL_TEMPERATURE = "INTERPRET_TEMPERATURE"
69
+ THERMAL_HORIZONTAL_FLUX = "INTERPRET_THERMO_X_FLUX_SIGNED"
70
+ THERMAL_VERTICAL_FLUX = "INTERPRET_THERMO_Y_FLUX_SIGNED"
71
+ THERMAL_TOTAL_FLUX = "INTERPRET_THERMO_TOTAL_FLUX"
72
+ THERMAL_HORIZONTAL_GRADIENT = "INTERPRET_THERMO_GRAD_X_SIGNED"
73
+ THERMAL_VERTICAL_GRADIENT = "INTERPRET_THERMO_GRAD_Y_SIGNED"
74
+ THERMAL_TOTAL_GRADIENT = "INTERPRET_THERMO_GRAD_TOTAL"
75
+ THERMAL_HORIZONTAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_X_SIGNED"
76
+ THERMAL_VERTICAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_Y_SIGNED"
77
+ THERMAL_TOTAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_TOTAL"
78
+ THERMAL_SPECIFIC_HEAT = "INTERPRET_SPECIFIC_HEAT"
79
+ THERMAL_UNFROZEN_WATER_CONTENT = "INTERPRET_UNFROZEN_WATER_CONTENT"
80
+ DYNAMIC_MINIMUM_X_DISPLACEMENT = "INTERPRET_DYN_MIN_DISPLACEMENT_X"
81
+ DYNAMIC_MAXIMUM_X_DISPLACEMENT = "INTERPRET_DYN_MAX_DISPLACEMENT_X"
82
+ DYNAMIC_MINIMUM_Y_DISPLACEMENT = "INTERPRET_DYN_MIN_DISPLACEMENT_Y"
83
+ DYNAMIC_MAXIMUM_Y_DISPLACEMENT = "INTERPRET_DYN_MAX_DISPLACEMENT_Y"
84
+ DYNAMIC_MINIMUM_X_VELOCITY = "INTERPRET_DYN_MIN_VELOCITY_X"
85
+ DYNAMIC_MAXIMUM_X_VELOCITY = "INTERPRET_DYN_MAX_VELOCITY_X"
86
+ DYNAMIC_MINIMUM_Y_VELOCITY = "INTERPRET_DYN_MIN_VELOCITY_Y"
87
+ DYNAMIC_MAXIMUM_Y_VELOCITY = "INTERPRET_DYN_MAX_VELOCITY_Y"
88
+ DYNAMIC_MINIMUM_X_ACCELERATION = "INTERPRET_DYN_MIN_ACCELERATION_X"
89
+ DYNAMIC_MAXIMUM_X_ACCELERATION = "INTERPRET_DYN_MAX_ACCELERATION_X"
90
+ DYNAMIC_MINIMUM_Y_ACCELERATION = "INTERPRET_DYN_MIN_ACCELERATION_Y"
91
91
  DYNAMIC_MAXIMUM_Y_ACCELERATION = "INTERPRET_DYN_MAX_ACCELERATION_Y"