RS2Scripting 11.23.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 (188) hide show
  1. RS2Scripting-11.23.0.dist-info/License.txt +20 -0
  2. RS2Scripting-11.23.0.dist-info/METADATA +147 -0
  3. RS2Scripting-11.23.0.dist-info/RECORD +188 -0
  4. RS2Scripting-11.23.0.dist-info/WHEEL +5 -0
  5. RS2Scripting-11.23.0.dist-info/top_level.txt +1 -0
  6. rs2/BaseModel.py +46 -0
  7. rs2/Units.py +6 -0
  8. rs2/__init__.py +0 -0
  9. rs2/_common/Client.py +67 -0
  10. rs2/_common/ProxyObject.py +12 -0
  11. rs2/_common/__init__.py +0 -0
  12. rs2/_common/documentProxy.py +5 -0
  13. rs2/interpreter/InterpreterEnums.py +86 -0
  14. rs2/interpreter/InterpreterGraphEnums.py +54 -0
  15. rs2/interpreter/InterpreterModel.py +328 -0
  16. rs2/interpreter/RS2Interpreter.py +78 -0
  17. rs2/interpreter/_UtilityResult.py +20 -0
  18. rs2/interpreter/__init__.py +0 -0
  19. rs2/interpreter/queryResults/HistoryQueryResults.py +30 -0
  20. rs2/interpreter/queryResults/MaterialQueryResults.py +67 -0
  21. rs2/interpreter/queryResults/MeshResults.py +12 -0
  22. rs2/interpreter/queryResults/TimeQueryResults.py +111 -0
  23. rs2/interpreter/queryResults/__init__.py +0 -0
  24. rs2/interpreter/supportResults/BoltResult.py +49 -0
  25. rs2/interpreter/supportResults/CompositeResult.py +24 -0
  26. rs2/interpreter/supportResults/JointResult.py +25 -0
  27. rs2/interpreter/supportResults/LinerResult.py +33 -0
  28. rs2/interpreter/supportResults/__init__.py +0 -0
  29. rs2/modeler/Model.py +350 -0
  30. rs2/modeler/RS2Modeler.py +81 -0
  31. rs2/modeler/__init__.py +0 -0
  32. rs2/modeler/properties/AbsoluteStageFactorGettersInterface.py +31 -0
  33. rs2/modeler/properties/AbsoluteStageFactorInterface.py +49 -0
  34. rs2/modeler/properties/CompositeProperty.py +81 -0
  35. rs2/modeler/properties/DiscreteFunction.py +43 -0
  36. rs2/modeler/properties/MaterialJoint.py +25 -0
  37. rs2/modeler/properties/MaterialJointOptions.py +28 -0
  38. rs2/modeler/properties/PropertyEnums.py +376 -0
  39. rs2/modeler/properties/RelativeStageFactorInterface.py +50 -0
  40. rs2/modeler/properties/ShearNormalFunction.py +45 -0
  41. rs2/modeler/properties/SnowdenAnisotropicFunction.py +56 -0
  42. rs2/modeler/properties/StructuralInterface.py +59 -0
  43. rs2/modeler/properties/UserDefinedWaterMode.py +21 -0
  44. rs2/modeler/properties/__init__.py +0 -0
  45. rs2/modeler/properties/bolt/Bolt.py +33 -0
  46. rs2/modeler/properties/bolt/EndAnchored.py +59 -0
  47. rs2/modeler/properties/bolt/FullyBonded.py +66 -0
  48. rs2/modeler/properties/bolt/PlainStrandCable.py +112 -0
  49. rs2/modeler/properties/bolt/Swellex.py +136 -0
  50. rs2/modeler/properties/bolt/Tieback.py +192 -0
  51. rs2/modeler/properties/bolt/__init__.py +0 -0
  52. rs2/modeler/properties/joint/BartonBandis.py +143 -0
  53. rs2/modeler/properties/joint/BartonBandisMaterial.py +82 -0
  54. rs2/modeler/properties/joint/DisplacementDependent.py +134 -0
  55. rs2/modeler/properties/joint/GeosyntheticHyperbolic.py +147 -0
  56. rs2/modeler/properties/joint/GeosyntheticHyperbolicMaterial.py +93 -0
  57. rs2/modeler/properties/joint/HyperbolicSoftening.py +202 -0
  58. rs2/modeler/properties/joint/Joint.py +57 -0
  59. rs2/modeler/properties/joint/MaterialDependent.py +128 -0
  60. rs2/modeler/properties/joint/MohrCoulomb.py +211 -0
  61. rs2/modeler/properties/joint/MohrCoulombMaterial.py +115 -0
  62. rs2/modeler/properties/joint/NoneSlip.py +103 -0
  63. rs2/modeler/properties/joint/__init__.py +0 -0
  64. rs2/modeler/properties/liner/CableTruss.py +199 -0
  65. rs2/modeler/properties/liner/Geosynthetic.py +167 -0
  66. rs2/modeler/properties/liner/Liner.py +31 -0
  67. rs2/modeler/properties/liner/ReinforcedConcrete.py +291 -0
  68. rs2/modeler/properties/liner/StandardBeam.py +268 -0
  69. rs2/modeler/properties/liner/__init__.py +0 -0
  70. rs2/modeler/properties/material/InitialConditions.py +152 -0
  71. rs2/modeler/properties/material/MaterialProperty.py +49 -0
  72. rs2/modeler/properties/material/StageFactors.py +100 -0
  73. rs2/modeler/properties/material/__init__.py +0 -0
  74. rs2/modeler/properties/material/datum/BaseDatum.py +23 -0
  75. rs2/modeler/properties/material/datum/Datum.py +79 -0
  76. rs2/modeler/properties/material/datum/PeakResidualDatum.py +31 -0
  77. rs2/modeler/properties/material/datum/SimpleDatum.py +17 -0
  78. rs2/modeler/properties/material/datum/__init__.py +0 -0
  79. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Brooks.py +106 -0
  80. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Constant.py +54 -0
  81. rs2/modeler/properties/material/hydraulic/FEAGroundwater/FEAGroundwater.py +82 -0
  82. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Fredlund.py +117 -0
  83. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Gardner.py +106 -0
  84. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Genuchten.py +124 -0
  85. rs2/modeler/properties/material/hydraulic/FEAGroundwater/Simple.py +91 -0
  86. rs2/modeler/properties/material/hydraulic/FEAGroundwater/UserDefined.py +10 -0
  87. rs2/modeler/properties/material/hydraulic/FEAGroundwater/__init__.py +0 -0
  88. rs2/modeler/properties/material/hydraulic/Hydraulic.py +41 -0
  89. rs2/modeler/properties/material/hydraulic/StaticGroundwater.py +85 -0
  90. rs2/modeler/properties/material/hydraulic/__init__.py +0 -0
  91. rs2/modeler/properties/material/stiffness/ChSoil.py +45 -0
  92. rs2/modeler/properties/material/stiffness/Custom.py +83 -0
  93. rs2/modeler/properties/material/stiffness/CySoil.py +45 -0
  94. rs2/modeler/properties/material/stiffness/DoubleYield.py +45 -0
  95. rs2/modeler/properties/material/stiffness/HardeningSoil.py +73 -0
  96. rs2/modeler/properties/material/stiffness/HardeningSoilSmallStrainStiffness.py +73 -0
  97. rs2/modeler/properties/material/stiffness/Isotropic.py +122 -0
  98. rs2/modeler/properties/material/stiffness/ManzariAndDafalias.py +38 -0
  99. rs2/modeler/properties/material/stiffness/NonLinearHyperbolic.py +117 -0
  100. rs2/modeler/properties/material/stiffness/NonLinearIsotropic.py +255 -0
  101. rs2/modeler/properties/material/stiffness/Norsand.py +45 -0
  102. rs2/modeler/properties/material/stiffness/Orthotropic.py +180 -0
  103. rs2/modeler/properties/material/stiffness/Pm4Sand.py +80 -0
  104. rs2/modeler/properties/material/stiffness/Pm4Silt.py +87 -0
  105. rs2/modeler/properties/material/stiffness/SoftSoil.py +24 -0
  106. rs2/modeler/properties/material/stiffness/SoftSoilCreep.py +24 -0
  107. rs2/modeler/properties/material/stiffness/Stiffness.py +53 -0
  108. rs2/modeler/properties/material/stiffness/SwellingRock.py +52 -0
  109. rs2/modeler/properties/material/stiffness/TransverselyIsotropic.py +145 -0
  110. rs2/modeler/properties/material/stiffness/ViscoElastic.py +59 -0
  111. rs2/modeler/properties/material/stiffness/__init__.py +0 -0
  112. rs2/modeler/properties/material/strength/AnisotropicLinear.py +150 -0
  113. rs2/modeler/properties/material/strength/BarcelonaBasic.py +176 -0
  114. rs2/modeler/properties/material/strength/BartonBandisStrength.py +59 -0
  115. rs2/modeler/properties/material/strength/BoundingSurfacePlasticity.py +66 -0
  116. rs2/modeler/properties/material/strength/CamClay.py +113 -0
  117. rs2/modeler/properties/material/strength/ChSoilStrength.py +66 -0
  118. rs2/modeler/properties/material/strength/CySoilStrength.py +94 -0
  119. rs2/modeler/properties/material/strength/DiscreteFunction.py +41 -0
  120. rs2/modeler/properties/material/strength/DoubleYieldStrength.py +94 -0
  121. rs2/modeler/properties/material/strength/DruckerPrager.py +113 -0
  122. rs2/modeler/properties/material/strength/Finn.py +129 -0
  123. rs2/modeler/properties/material/strength/GeneralizedAnisotropic.py +20 -0
  124. rs2/modeler/properties/material/strength/GeneralizedHoekBrown.py +195 -0
  125. rs2/modeler/properties/material/strength/HardeningSoilStrength.py +101 -0
  126. rs2/modeler/properties/material/strength/HardeningSoilWithSmallStrainStiffness.py +101 -0
  127. rs2/modeler/properties/material/strength/HoekBrown.py +102 -0
  128. rs2/modeler/properties/material/strength/Hyperbolic.py +59 -0
  129. rs2/modeler/properties/material/strength/JointedGeneralizedHoekBrown.py +198 -0
  130. rs2/modeler/properties/material/strength/JointedMohrCoulomb.py +116 -0
  131. rs2/modeler/properties/material/strength/ManzariAndDafaliasStrength.py +108 -0
  132. rs2/modeler/properties/material/strength/ModifiedCamClay.py +113 -0
  133. rs2/modeler/properties/material/strength/MohrCoulombStrength.py +113 -0
  134. rs2/modeler/properties/material/strength/MohrCoulombWithCap.py +112 -0
  135. rs2/modeler/properties/material/strength/NorSandStrength.py +101 -0
  136. rs2/modeler/properties/material/strength/PM4SandStrength.py +178 -0
  137. rs2/modeler/properties/material/strength/PM4SiltStrength.py +241 -0
  138. rs2/modeler/properties/material/strength/PowerCurve.py +101 -0
  139. rs2/modeler/properties/material/strength/Shansep.py +172 -0
  140. rs2/modeler/properties/material/strength/ShearNormalFunction.py +21 -0
  141. rs2/modeler/properties/material/strength/SnowdenModAnisotropicLinear.py +78 -0
  142. rs2/modeler/properties/material/strength/SoftSoilCreepStrength.py +87 -0
  143. rs2/modeler/properties/material/strength/SoftSoilStrength.py +80 -0
  144. rs2/modeler/properties/material/strength/SofteningHardeningModel.py +150 -0
  145. rs2/modeler/properties/material/strength/Strength.py +185 -0
  146. rs2/modeler/properties/material/strength/SwellingRockStrength.py +122 -0
  147. rs2/modeler/properties/material/strength/VerticalStressRatio.py +94 -0
  148. rs2/modeler/properties/material/strength/__init__.py +0 -0
  149. rs2/modeler/properties/material/thermal/Thermal.py +74 -0
  150. rs2/modeler/properties/material/thermal/__init__.py +0 -0
  151. rs2/modeler/properties/material/thermal/conductivity/Conductivity.py +27 -0
  152. rs2/modeler/properties/material/thermal/conductivity/ConstantConductivity.py +31 -0
  153. rs2/modeler/properties/material/thermal/conductivity/CoteAndKonrad.py +45 -0
  154. rs2/modeler/properties/material/thermal/conductivity/Derives.py +17 -0
  155. rs2/modeler/properties/material/thermal/conductivity/Johansen.py +45 -0
  156. rs2/modeler/properties/material/thermal/conductivity/JohansenLu.py +24 -0
  157. rs2/modeler/properties/material/thermal/conductivity/Tabular.py +31 -0
  158. rs2/modeler/properties/material/thermal/conductivity/__init__.py +0 -0
  159. rs2/modeler/properties/material/thermal/heatcapacity/ConstantHeatCapacity.py +38 -0
  160. rs2/modeler/properties/material/thermal/heatcapacity/CustomHeatCapacity.py +38 -0
  161. rs2/modeler/properties/material/thermal/heatcapacity/HeatCapacity.py +21 -0
  162. rs2/modeler/properties/material/thermal/heatcapacity/JameNewman.py +24 -0
  163. rs2/modeler/properties/material/thermal/heatcapacity/__init__.py +0 -0
  164. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/CustomWaterContent.py +13 -0
  165. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/Konrad.py +31 -0
  166. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/SoilUnfrozenWaterContent.py +23 -0
  167. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/TiceAnderson.py +31 -0
  168. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/__init__.py +0 -0
  169. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/BrooksWaterContent.py +24 -0
  170. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/FredlundWaterContent.py +31 -0
  171. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GardnerWaterContent.py +24 -0
  172. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GenuchtenWaterContent.py +38 -0
  173. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/HydraulicModel.py +37 -0
  174. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/SimpleWaterContent.py +17 -0
  175. rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/__init__.py +0 -0
  176. rs2/modeler/properties/pile/Beam.py +34 -0
  177. rs2/modeler/properties/pile/Elastic.py +45 -0
  178. rs2/modeler/properties/pile/ForceDisplacement.py +59 -0
  179. rs2/modeler/properties/pile/Linear.py +59 -0
  180. rs2/modeler/properties/pile/MaterialDependentPile.py +87 -0
  181. rs2/modeler/properties/pile/MohrCoulombPile.py +94 -0
  182. rs2/modeler/properties/pile/MultiLinear.py +56 -0
  183. rs2/modeler/properties/pile/Pile.py +63 -0
  184. rs2/modeler/properties/pile/__init__.py +0 -0
  185. rs2/modeler/properties/propertyProxy.py +283 -0
  186. rs2/utilities/ApplicationManager.py +64 -0
  187. rs2/utilities/ColorPicker.py +78 -0
  188. rs2/utilities/__init__.py +0 -0
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2024 Rocscience Inc.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,147 @@
1
+ Metadata-Version: 2.1
2
+ Name: RS2Scripting
3
+ Version: 11.23.0
4
+ Summary: Client library for interacting with RS2 through python
5
+ Author: Rocscience
6
+ License: MIT License
7
+ Project-URL: Homepage, https://www.rocscience.com/software/rs2
8
+ Project-URL: Documentation, https://www.rocscience.com/help/rs2/overview
9
+ Keywords: Rocscience,RS2,Scripting,RocScript,Geotechnical,Finite Element Analysis,FEM,2D
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Topic :: Scientific/Engineering
13
+ Requires-Python: >=3.7
14
+ Description-Content-Type: text/markdown
15
+ License-File: License.txt
16
+ Requires-Dist: rsmessages ==0.0.2
17
+
18
+ ## Introduction
19
+ This project is a library that can be used to interact with RS2 through python.
20
+
21
+ ### Goal
22
+ Each function exposed corresponds to an equivalent operation you could have done through the UI.
23
+ Using this idea, the user should be able to edit models and get results without having to go through the UI at all.
24
+ Although only a limited set of functionality is exposed for now, some basic workflows should still be possible. For a list of the functionality we have so far, see [Exposed Functionality](#exposed-functionality).
25
+
26
+ ### Python UI equivalents
27
+ Events and workflows done in the UI will have equivalents in the python library.
28
+ Wherever a dialog is shown in the UI, there will be an equivalent class with methods that mimick the dialog's behavior.
29
+ Wherever a warning or error dialog is displayed, an exception will be thrown, or a warning will be displayed in python instead.
30
+ Wherever you can select and manipulate an entity, identifiers can be used in the library to get references to those entities in python and objects will be constructed to help you interface with them.
31
+
32
+ ### How it works
33
+ Each function in the library is a wrapper to make an api call to the Application.
34
+ Objects retrieved through function calls will often not contain any data themselves, but will instead be proxies, allowing you to get information from the objects in the application.
35
+ For this reason, debugging will sometimes be tricky, as not all data will always be available for you to inspect unless you get it and assign it to a variable yourself.
36
+
37
+ ### Warnings
38
+ References can be *invalidated* whenever the corresponding object in the application is destroyed or reloaded. You will need to watch out for expired referenecs and renew them when needed as it can cause crashes or incorrect results if not managed properly. Functions that invalidate objects will always be marked with a warning and will indicate which objects should be re-loaded.
39
+
40
+ ## Exposed Functionality
41
+ The current set of functionality exposed is limited. With this version of the library, you can:
42
+ - Manage files through Open, Close, Save and Compute
43
+ - Modfy any Property value and stage factor, except for some user defined materials and statistical properties.
44
+ - Get any Mesh result, support result, SSR Critical SRF and query result.
45
+ - Add and remove queries (material, history, time)
46
+
47
+ ## Getting Started
48
+
49
+ **Getting started guide**
50
+ <!---TODO: add link-->
51
+ **First Tutorial**
52
+ <!---TODO: add link-->
53
+
54
+ # For Contributors:
55
+
56
+ ## Build
57
+ Following the steps to this guide: https://packaging.python.org/en/latest/tutorials/packaging-projects/#generating-distribution-archives
58
+ 1. Run the command below to install the python build module.
59
+ ```python -m pip install --upgrade build```
60
+ 2. Run this command from the same directory where pyproject.toml is located:
61
+ ```python -m build```
62
+ 3. Run the command below. After installing, a code will be displayed in the terminal. Using a web browser, go to https://www.microsoft.com/devicelogin, where you will be prompted to enter the code.
63
+ ```pip install keyring artifacts-keyring```
64
+ 4. A 'dist' folder should be generated with a .whl file. You can then run the command below to install the project and its dependencies
65
+ ```pip install -r requirements.txt```
66
+
67
+ *If the client library has been altered or updated, run the commands below to force reinstallation of the packages so that your environment is up to date.*
68
+ 1. ```python -m build```
69
+ 2. ```pip install -r requirements.txt --force-reinstall```
70
+
71
+ ## Unit Testing
72
+
73
+ To ensure the project's functionality and maintain code quality, a test suite using the `unittest` framework has been implemented. The documentation for `unittest` can be found at the following link: https://docs.python.org/3/library/unittest.html
74
+
75
+ ### Creating Unit Tests
76
+ **Directory Structure:**
77
+ - Place new .py files for unit testing in the tests directory.
78
+ - Save any RS2 files required for testing in the tests/resources directory.
79
+
80
+ **Handling Test Resources:**
81
+ Instead of directly modifying the base files in tests/resources, create copies of these files in each test file's setup and delete them in the teardown phase. This ensures that the original resources remain intact and unmodified after running the tests.
82
+
83
+ ### Running Unit Test Cases
84
+ Before running the tests, make sure you have:
85
+ 1. Built the RS2 library as explained in the [Build](#build) section.
86
+ 2. Started the RS2 Modeler.
87
+ 3. Started the RS2 Interpreter.
88
+ 4. Started the Server on both the RS2 Modeler and RS2 Interpreter. Select ```DeveloperApp > Start Server``` in each program.
89
+
90
+ To run all the tests, navigate to the root directory of the project and execute the following command:
91
+ ```python -m unittest discover -s tests```
92
+
93
+ To run an individual test file, navigate to the root directory of the project and execute the following command with the correct filename:
94
+ ```python -m unittest discover -s tests -p "<sampleTestFile>.py"```
95
+
96
+ To run a sub-folder of tests, navigate to the 'tests' folder, and run:
97
+ ```python -m unittest discover -v -s Path/To/Folder```
98
+
99
+ **_NOTE:_** To display additional information on the results of the unit tests, pass the `-v` option into the testing command:
100
+ ```python -m unittest discover -v -s tests```
101
+
102
+ ## Documentation
103
+ The following steps can be taken to regenerate the RS2 Scripting Documentation:
104
+ 1. Create python a virtual environment. Navigate to the root directory of your workspace and run the commands below:
105
+ ```python -m venv venv```
106
+ ```venv/Scripts/activate```
107
+ 2. Rebuild the RS2 library in your virtual environment by following the [Build](#build) section.
108
+ 3. Run the commands below to install Sphinx and the copy button extension:
109
+ ```python -m pip install sphinx```
110
+ ```pip install sphinx-copybutton```
111
+ 4. Install a LaTeX distribution. MiKTeX Reccomended: https://miktex.org/download
112
+ 5. To generate the documentation run the following:
113
+ ```python generateAndBuildDocumentation.py```
114
+ Note: you may have to downgrade your ssl to an earlier version to successfuly generate the documentation ```.tex``` file. If you get an ssl error, run the following command:
115
+ ```pip install urllib3==1.26.5```
116
+ 6. Open TeXworks (via MiKTeX) and open the documentation file:
117
+ ```RS2 Python Client Library\docs\_build\pdf\rs2scriptingclientlibrary.tex```
118
+ 7. In the dropdown menu, set the output to pdfLaTeX.
119
+ 8. Click the play button to generate the documentation file.
120
+ Note: The first time you generate documentation using TeXworks, a package installation window will appear indicating that numerous packages could not be found. Deselect the "Always show this dialog" checkbox and click the install button.
121
+ 9. The Documentation in PDF format will be located here: ```RS2 Python Client Library\docs/_build/pdf/rs2scriptingclientlibrary.pdf```
122
+
123
+ ### Adding To Documentation
124
+ The following steps can be taken to add a new proxy object to the autogenerated documentation:
125
+ 1. Ensure automatic generation of the proxy object python files has been completed for the new proxy object.
126
+ 2. To include an example code snippet, ensure a docstring is being generated at the top of the base proxy object ```.py``` file, which will link to the example.
127
+ See Below:
128
+ ```
129
+ """
130
+ :ref:`Bolt Example`
131
+ """
132
+ ```
133
+ 3. Add your example code snippet to ```C:\Users\CarterComish\source\repos\RS2 Python Client Library\docs\example_code```
134
+ 4. Open examples.rst and following the format of the existing example links, add a link to your code example. Ensure that your link label matches the link label being generated in Step 2.
135
+ See Below:
136
+ ```
137
+ .. _Bolt Example:
138
+ ```
139
+ 5. Follow the steps in [Documentation](#documentation) to regenerate the new documentaiton.
140
+
141
+ ## Contribution Guidelines
142
+ Contributions are welcomed to improve RS2's Scripting Features. To make a contribution, follow the guidelines below:
143
+ 1. **Make Changes:** Start by making the necessary changes to the relevant `.py` file(s) to address the task or implement new features.
144
+ 2. **Install Dependencies:** Install the required dependencies specified in the `requirements.txt` file, as explained in the [Build](#build) section. It is recommended that these dependencies be installed within a virtual environment.
145
+ 3. **Python Interpreter:** Select the same Python interpreter used to install the package. You can specify the interpreter in your virtual environment or project settings.
146
+ 4. **Testing:** Thoroughly test your changes to ensure they meet the project's requirements and do not introduce regressions. Consult the [Unit Testing](#unit-testing) section for more information. Include additional test cases to cover modifications to the project.
147
+ 5. **Pull Request:** After thorough testing and review, submit a pull request which describes the purpose of your changes. After review and approval, merge your changes into the main branch.
@@ -0,0 +1,188 @@
1
+ rs2/BaseModel.py,sha256=9seLvsFnTI96H1cb508EzFnquEE0UL0Oz8cflNRjsaA,1181
2
+ rs2/Units.py,sha256=WavPp-CZXPCrv5LXAmNxaovM4pJPt7qlEQlok_i7zQo,200
3
+ rs2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ rs2/_common/Client.py,sha256=bq4A6xqOOPy06wqQu8XMVvDMfaSv8iFjVy0eADts5xw,2377
5
+ rs2/_common/ProxyObject.py,sha256=6c6AJPTTAR7dSBowNhw2OzizAFNHixkRy8sQRv8gqlU,471
6
+ rs2/_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ rs2/_common/documentProxy.py,sha256=W1a2uezHNIG0VXjF1IODN680j0q-hzAH2WEwe0xCKW8,182
8
+ rs2/interpreter/InterpreterEnums.py,sha256=LLf6L3t4EdlqTAvV6yEpwGyZTd3Ph-perIKyfLfRbC4,5468
9
+ rs2/interpreter/InterpreterGraphEnums.py,sha256=EzhwBih2TC7Us5NY2GTL6W0_7wsIWi1NDv16Jjl6AC8,1757
10
+ rs2/interpreter/InterpreterModel.py,sha256=apoCrvjR59rqlipCo4a-WY9CoVvemNbLFRzAkp52x-s,12191
11
+ rs2/interpreter/RS2Interpreter.py,sha256=JOtwxV_EMBBhJwi57HhyOF1rBH1VeGI_U65VVLf6siM,2998
12
+ rs2/interpreter/_UtilityResult.py,sha256=6VsLAdwxXuXyR7a7yAJ-6axxSqSURk92HDDVnyPcZsU,500
13
+ rs2/interpreter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ rs2/interpreter/queryResults/HistoryQueryResults.py,sha256=7HjZL8mLqNW-apVOhY42Jxo-uMFWzTH_meAwjuEXBMg,956
15
+ rs2/interpreter/queryResults/MaterialQueryResults.py,sha256=aLKepolt1xESh1RbiHtYq6a8cPx7-alpt16cxFV5LoE,2100
16
+ rs2/interpreter/queryResults/MeshResults.py,sha256=Chwg2Tp7cYuhSpeEmR96TCXUgsdevidWHBI7JQ9yIsI,333
17
+ rs2/interpreter/queryResults/TimeQueryResults.py,sha256=uZxpJQsRsEY4c2nkTs4NYl4LFVAe7MK2AVKZb2UGohg,4231
18
+ rs2/interpreter/queryResults/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ rs2/interpreter/supportResults/BoltResult.py,sha256=BX54FcPUb13BAFhZowoarjQRIzf5vFF4FLY2iN0cmfE,2051
20
+ rs2/interpreter/supportResults/CompositeResult.py,sha256=Y6wJ4OteL0O57DQsX_xhXyOj7L5e8dI3BH_zIYnF9so,926
21
+ rs2/interpreter/supportResults/JointResult.py,sha256=WXDIRl_gMTgj8SXUuvKaiFAp1d1BCGmZpjkF5HKW-ZU,938
22
+ rs2/interpreter/supportResults/LinerResult.py,sha256=YDl1lhtm7BEU8emCeOF75-2mKdnLqUEE26vTcnP2j1Q,1458
23
+ rs2/interpreter/supportResults/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ rs2/modeler/Model.py,sha256=p9r2kFmmHBSgj0T26CbybnnbnjeiZJufznsdB6mTqtM,14000
25
+ rs2/modeler/RS2Modeler.py,sha256=vISeaUuktlqG4wMPmXvUs1YgB7LIc2m7eoAgY5IF0DQ,2994
26
+ rs2/modeler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ rs2/modeler/properties/AbsoluteStageFactorGettersInterface.py,sha256=HpsdM0TBPgZ_wfwyC0pY87PnFZWbbwSBWpwqh8vzBQo,1475
28
+ rs2/modeler/properties/AbsoluteStageFactorInterface.py,sha256=QM0T-oJUoSzTXIoExRGvg6avEsmNRoazKsUE_gv1IXI,2382
29
+ rs2/modeler/properties/CompositeProperty.py,sha256=YXUaO3F_9CA1NJwF8pl813ZbRet_vRCHXS6_MnxDBFE,3324
30
+ rs2/modeler/properties/DiscreteFunction.py,sha256=7g1iNA1HwA3hTWrQ5fWL_DFdSgayW6wTmWuIjGYjXAo,2858
31
+ rs2/modeler/properties/MaterialJoint.py,sha256=PHs9oGfNoQG8pr6y8WnFyt9gDu_Qovfgw1UtPwjJHJM,1348
32
+ rs2/modeler/properties/MaterialJointOptions.py,sha256=8Tf1MZZ7nEN581Abq16nX6kLISP65KgsVsyn-E7ICQM,1806
33
+ rs2/modeler/properties/PropertyEnums.py,sha256=CaLg0H6OM90BIB3mM2kzhy1Q0k8JEX-5f5ujAaZuSQI,15313
34
+ rs2/modeler/properties/RelativeStageFactorInterface.py,sha256=ijkFvOQbZWEAT1Ecc8nFx80iQAvAAFj7pzZrPiZzs2I,2702
35
+ rs2/modeler/properties/ShearNormalFunction.py,sha256=zDI6jm7X_tebNa-GSquGKuNR5J6BSWqXNoVYHv6DG6w,2551
36
+ rs2/modeler/properties/SnowdenAnisotropicFunction.py,sha256=0_65PkquiDTvxhs03tSJZQhwG2fgHHXjgx7_3Ss-J0w,3151
37
+ rs2/modeler/properties/StructuralInterface.py,sha256=IbsTskaZJA_1kf8vZo4RkjZAwDmsKMvOpgfS0C-qJ6U,1957
38
+ rs2/modeler/properties/UserDefinedWaterMode.py,sha256=1LlVp4e3eUflQ5RFEJIcjna79kyZweOwOv-afwJrQ7I,1284
39
+ rs2/modeler/properties/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ rs2/modeler/properties/propertyProxy.py,sha256=TWprB5wfknPc7_bmuOXPdPrMeBItsnrBsfm8bzFXqE0,25565
41
+ rs2/modeler/properties/bolt/Bolt.py,sha256=EILcvqrYU5lCHlsM-71QDbxXxOKHq9CQ1C5ecE388rU,1571
42
+ rs2/modeler/properties/bolt/EndAnchored.py,sha256=RIrASej0zFW4VDAS-CFXJ14w8SCYm3sf0mah32je9n8,3273
43
+ rs2/modeler/properties/bolt/FullyBonded.py,sha256=L-rDvPhIpmQRgIbicrfW3MZSzhXJf3y1J7yyU8S1QHg,3620
44
+ rs2/modeler/properties/bolt/PlainStrandCable.py,sha256=p7Da5XMTCKUolwe4Knf-QuHsz3TNzX5HhYHoHBCcg54,5888
45
+ rs2/modeler/properties/bolt/Swellex.py,sha256=lvJ0S2QnirPeoZftPLW_AWNd_xIV8YFsnuMmrKAoip4,7740
46
+ rs2/modeler/properties/bolt/Tieback.py,sha256=w9ValpDAWPqn94r7dNMv-fumJ2KXyfE_6SdvT7eC5XQ,11492
47
+ rs2/modeler/properties/bolt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ rs2/modeler/properties/joint/BartonBandis.py,sha256=wgGV63woMdf8OsbkztVyH71mrGPxqh6TgT9pNB1xunQ,9143
49
+ rs2/modeler/properties/joint/BartonBandisMaterial.py,sha256=m6wsMu2PD5zQ7zC1lRnhiCTebLgtln8mciF7FdOCLdM,4809
50
+ rs2/modeler/properties/joint/DisplacementDependent.py,sha256=sUobR_QbVzY2UQh9hnM8dlzN4CPTgDymixbj-usq1eE,9157
51
+ rs2/modeler/properties/joint/GeosyntheticHyperbolic.py,sha256=eAcrrCyeRtPjVh5jyElR7IiIuI4fEpN5cmQFgtWtfUU,10101
52
+ rs2/modeler/properties/joint/GeosyntheticHyperbolicMaterial.py,sha256=bzAv2JwOY_cGSdyY-scfK78dIMk0eFpy4kzX_dIemdQ,6146
53
+ rs2/modeler/properties/joint/HyperbolicSoftening.py,sha256=UO7E9zo5l4rp-wkohJez3uW-mwCw9hmAvOuVKOkyoq4,13380
54
+ rs2/modeler/properties/joint/Joint.py,sha256=BEDg_hw4EioZSzINPF06rZK6I5HHX2kerHEAPUBPIC8,3039
55
+ rs2/modeler/properties/joint/MaterialDependent.py,sha256=yZjFudNWNI5BP-LMlQJdy6lSWFwOC0FqKC0ipgseJBg,8565
56
+ rs2/modeler/properties/joint/MohrCoulomb.py,sha256=-u7O1MdIPVpqBx-iaMBfnrNuHsAIpfjruHJDxYRzGOQ,13221
57
+ rs2/modeler/properties/joint/MohrCoulombMaterial.py,sha256=ahKXarSYkVZA4Eunbic7dsWlhGUSazZsTWYWYtCQHpo,7224
58
+ rs2/modeler/properties/joint/NoneSlip.py,sha256=S7FYiaZMfv-mip4YN_-6WaHU7AW9YJr8iFDNmVQoytM,6749
59
+ rs2/modeler/properties/joint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ rs2/modeler/properties/liner/CableTruss.py,sha256=fON8ShaXsO9WDtKDqe52j6LIo12QXfWCEzj2rIYo_ns,12762
61
+ rs2/modeler/properties/liner/Geosynthetic.py,sha256=Vr6o-hIe3nXx8bMKRNrVaFoesu92yfxI9Fb3VqNiDAM,11075
62
+ rs2/modeler/properties/liner/Liner.py,sha256=KCmHXvLPLAyjJ28n9cbq5dYuox7uKJPxT6n23AHhhtk,1522
63
+ rs2/modeler/properties/liner/ReinforcedConcrete.py,sha256=uP-fMC5mKsWrn5tIxf22ZhSlpvRmGXUSnV2vLaoTxV8,18461
64
+ rs2/modeler/properties/liner/StandardBeam.py,sha256=E6TlKqybZJbCdh-k2KEsbY0ljSofw8Te5EvMWZUIMLY,17424
65
+ rs2/modeler/properties/liner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ rs2/modeler/properties/material/InitialConditions.py,sha256=7NcB11DhNJ8g3FSXCeYr2kQK4zcJZlBqq92PCzbRSGU,9142
67
+ rs2/modeler/properties/material/MaterialProperty.py,sha256=7f2iHM6m4K-rrf7wqIM_FHUOzEAIRoMjqRABv2cOx2c,3054
68
+ rs2/modeler/properties/material/StageFactors.py,sha256=JP70Ow79AKra3yrQpNGFnCOdWk9cGWaWV2HQguS9pcc,6165
69
+ rs2/modeler/properties/material/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ rs2/modeler/properties/material/datum/BaseDatum.py,sha256=t4DlusPp6zYfmgIQOCQ--LtEiBkygCR8ipQCfZ7V0KI,949
71
+ rs2/modeler/properties/material/datum/Datum.py,sha256=uAjFf1GKP4FcClricpPn0zZmeijGMoiMBeTNyJRzG6Q,4435
72
+ rs2/modeler/properties/material/datum/PeakResidualDatum.py,sha256=mt5pO3q5quq0UMCEPZyDJLlnvewAjX8HYLLn7Uqg-Dw,1531
73
+ rs2/modeler/properties/material/datum/SimpleDatum.py,sha256=J9CpDpY3UGmDYzO6RhAbZcReCOfG3JzEwD86i_tgXN4,773
74
+ rs2/modeler/properties/material/datum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ rs2/modeler/properties/material/hydraulic/Hydraulic.py,sha256=Spb0hRzljC1s5JJx6fL1IMRZForsALh2qcjasj0j_D8,2559
76
+ rs2/modeler/properties/material/hydraulic/StaticGroundwater.py,sha256=Hs5GzrX-cOGZAEzUdiMhUh6zhH2-tVdWqvWqcKC_nRo,4322
77
+ rs2/modeler/properties/material/hydraulic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Brooks.py,sha256=egniL7URWGMkhDuRJUdwoYtUfZEEtymjiXjupwdPEYo,5922
79
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Constant.py,sha256=T0HHiFgxJB4jSoOarcYKP9G9X70aNfJq9zVUGSIo9As,2659
80
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/FEAGroundwater.py,sha256=DT-GXKlt1mD7xfuPPEJfCZN_5PrZ5wCJrs86poiRABY,5077
81
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Fredlund.py,sha256=EZtbgcM7gq6LMug3JZ3GWCyBlkYutbZ1qcAeU4_I_xc,6286
82
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Gardner.py,sha256=M9UU0VBBKuyitpOz4B0Fe6AHB7xM4HEcdQMsg4ABRv8,5617
83
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Genuchten.py,sha256=H9eAFv1xR0dfviiwmat9_PAMDWkUAaRcX6seLf_3B4A,6664
84
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/Simple.py,sha256=SEX9EavaZBqnP1P_l97PbW4DbzxkPL3qpPXGC4OsbDk,4936
85
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/UserDefined.py,sha256=c7v5OGpcChZeUrOImj18rSHeGKqj5DdeT1FU8fiRabY,580
86
+ rs2/modeler/properties/material/hydraulic/FEAGroundwater/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ rs2/modeler/properties/material/stiffness/ChSoil.py,sha256=w91QDAIJCc6QYMhY5Gu1xBv32_k9MfYNGHe5kdGkYLw,1862
88
+ rs2/modeler/properties/material/stiffness/Custom.py,sha256=DdcIVJ_5HXeY0gb3atcrNvCBezRImjh83SsJ1AD8eCI,5183
89
+ rs2/modeler/properties/material/stiffness/CySoil.py,sha256=USA6QQ71g7jTKMIswfDruUajnJVYuLQIEDCXDX7vS9A,1964
90
+ rs2/modeler/properties/material/stiffness/DoubleYield.py,sha256=8Yytw_LNTDtAr_VMB5Ps4iwS0ACM8yM0eT-tget8RR4,1969
91
+ rs2/modeler/properties/material/stiffness/HardeningSoil.py,sha256=vkPmSVq4HHsxcc_wRXJH-COxxp_sqK9IuOzSamA5SEc,3231
92
+ rs2/modeler/properties/material/stiffness/HardeningSoilSmallStrainStiffness.py,sha256=l0qrjokDxpAtFtUrOhEK-E5e6wtc2asAjG49uCWCSn0,3251
93
+ rs2/modeler/properties/material/stiffness/Isotropic.py,sha256=ESQ6ri5bA5SpziLMcqvtx2PHVseizzP51F3DIonBT0c,8026
94
+ rs2/modeler/properties/material/stiffness/ManzariAndDafalias.py,sha256=cubdG5jVex2YmFiceDipSK_KfURKZUj57cV07_aPYVg,1747
95
+ rs2/modeler/properties/material/stiffness/NonLinearHyperbolic.py,sha256=fia655vcdQdY1K5WsPOCjPZ_afmZwjyaYHKNnWV-eqs,7642
96
+ rs2/modeler/properties/material/stiffness/NonLinearIsotropic.py,sha256=XzC8I_Kpfw4DMdEV2oRP5trDu5kNftdJAZLDjXw3wCc,15524
97
+ rs2/modeler/properties/material/stiffness/Norsand.py,sha256=2iCUHAmeKmwuY7ZG_BTRTJ_x4lStctzwAGKsqJqQZDY,2514
98
+ rs2/modeler/properties/material/stiffness/Orthotropic.py,sha256=ICMfH7215XP7waSLVuGKi7uCQV1wiTEymfW42E3Z6Nc,12273
99
+ rs2/modeler/properties/material/stiffness/Pm4Sand.py,sha256=WBOT04q0MkpRqXL7tPmXweCsYG-VtfFt6mWP8AVdn3Y,4052
100
+ rs2/modeler/properties/material/stiffness/Pm4Silt.py,sha256=ASmstIunEwVc0QE__9suJqQMe9ky0P5TunOqEqmZr7Y,4469
101
+ rs2/modeler/properties/material/stiffness/SoftSoil.py,sha256=UE2zvyWk9ZwLZz_NLs8tV_35cWLHfIRs0uChWBlhhK8,987
102
+ rs2/modeler/properties/material/stiffness/SoftSoilCreep.py,sha256=QilCey1Jh4K6O5oaoZVVruS1r_4HZ8RgGKvhEFchT04,998
103
+ rs2/modeler/properties/material/stiffness/Stiffness.py,sha256=TZHnGmRQMXNrEX5KnXMXgS-07ZCEXbdY89esMYGBuyY,3659
104
+ rs2/modeler/properties/material/stiffness/SwellingRock.py,sha256=_t-jJVbCgWuVg2a4bfttO-XKlglUYt2C9eXDSrJQabU,3205
105
+ rs2/modeler/properties/material/stiffness/TransverselyIsotropic.py,sha256=MqNSMFZpTKcq7Fl0kxxmHcOy5uRcO04-icsAeJdsJMQ,10254
106
+ rs2/modeler/properties/material/stiffness/ViscoElastic.py,sha256=KWuKen1sz5ZNF0NRzf16cbMsxkvAZx33HL0CoIpS6S8,3206
107
+ rs2/modeler/properties/material/stiffness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
+ rs2/modeler/properties/material/strength/AnisotropicLinear.py,sha256=U4Bu3qngjb8PEkJC7bYFEUpgg69atTNEK-xtUC56wB8,8292
109
+ rs2/modeler/properties/material/strength/BarcelonaBasic.py,sha256=vQqszyNj3HnHM1VrFXqGigCUljbhsLcJpJVFmb02bWc,10828
110
+ rs2/modeler/properties/material/strength/BartonBandisStrength.py,sha256=n2vgrB7z7ui_NdLGFTiwKZAj873PN1WY1zdUArlKGJ8,2847
111
+ rs2/modeler/properties/material/strength/BoundingSurfacePlasticity.py,sha256=epo8K7-pG8Js32Y9uAl9Em4auroUywibPUCYYcjEDQ0,3907
112
+ rs2/modeler/properties/material/strength/CamClay.py,sha256=3BCS-6-v86oz8eo5uDE5akd1MV6vBfhhfAXfTz3wQxw,7348
113
+ rs2/modeler/properties/material/strength/ChSoilStrength.py,sha256=2LDfE-JnGtgYFjnP_HYi0IL1k0iAoCezbL2h3nJy6bQ,3748
114
+ rs2/modeler/properties/material/strength/CySoilStrength.py,sha256=61KNncs_NDig5pU0IITT3PUwm_ByNlwdYsLySnC7UFY,5450
115
+ rs2/modeler/properties/material/strength/DiscreteFunction.py,sha256=IhCkxfi2PEJwbYrPppZy3iTLSupQ_udBPn_F7BED6iw,2627
116
+ rs2/modeler/properties/material/strength/DoubleYieldStrength.py,sha256=fApg_IPjcRq8tlkpmr7mVg8rxb9MO0n5q-k3El7Xv24,5455
117
+ rs2/modeler/properties/material/strength/DruckerPrager.py,sha256=1Je2XOhCZYT9dWZUtN4X2mn5M4UawRQ55juKvUfKHaY,7388
118
+ rs2/modeler/properties/material/strength/Finn.py,sha256=crhKU3yqToQTotwg3CxNAVKuD1aOxpBK6-4yp9N1S7M,7120
119
+ rs2/modeler/properties/material/strength/GeneralizedAnisotropic.py,sha256=ou_DHzn1I2QH1aNm_xYGIUm-mHlrITliU5TEWat8IbQ,1011
120
+ rs2/modeler/properties/material/strength/GeneralizedHoekBrown.py,sha256=iaibWNR9Gc1pBGJBUGnBIIAwkRh7F4KcCfdyNwFk9bk,12279
121
+ rs2/modeler/properties/material/strength/HardeningSoilStrength.py,sha256=LUw-lX90uH1tKN8Qajsxhw72F0a9Qx6v52aiFKC7wAs,5437
122
+ rs2/modeler/properties/material/strength/HardeningSoilWithSmallStrainStiffness.py,sha256=8e9zbRrK5BScky70Gu5jkrjlXTRASIT8NN46fxDZRNg,5453
123
+ rs2/modeler/properties/material/strength/HoekBrown.py,sha256=aekpYDAEdgBgfIR32PceA5HxK0lAVH3ajcNOVNPDZtM,6468
124
+ rs2/modeler/properties/material/strength/Hyperbolic.py,sha256=dgJyzQGoP_JhHu5hh1kTjZ9gNEQoo0POxuYrf7a-F60,3228
125
+ rs2/modeler/properties/material/strength/JointedGeneralizedHoekBrown.py,sha256=OMBSVo-SLZZAFLoKZkYMZrSk8dBUlUzkTw4PSn0-SPw,12609
126
+ rs2/modeler/properties/material/strength/JointedMohrCoulomb.py,sha256=7fgn2FlYZksZi8S0g0L9JemYvOx8MflUUs7bOkRrnt8,7699
127
+ rs2/modeler/properties/material/strength/ManzariAndDafaliasStrength.py,sha256=K0XUUF_g_nmvzf1DOaSi5IMIVchMJHJFWOmYKvGqCwM,5592
128
+ rs2/modeler/properties/material/strength/ModifiedCamClay.py,sha256=VeSx62FNUh6FbFUpyceSxUyvFh78su-v2h5eH93jZHU,7412
129
+ rs2/modeler/properties/material/strength/MohrCoulombStrength.py,sha256=cNRKdXwLxeMpfHB_pl9ZU8bLdbov_tha5DVDrF-LE00,7433
130
+ rs2/modeler/properties/material/strength/MohrCoulombWithCap.py,sha256=PJ44A4MHnmJhJSVeVqMiMrG4PmzRwdSiLR3210lr6p8,6858
131
+ rs2/modeler/properties/material/strength/NorSandStrength.py,sha256=nrWLqF6yFNtfQsHxp7I0FQKkot6HlDARp2lJSlbLVFw,6138
132
+ rs2/modeler/properties/material/strength/PM4SandStrength.py,sha256=sw65gTYMaa6baWNpKRJJkUlG3DLZG7rl45SLx63E08w,9284
133
+ rs2/modeler/properties/material/strength/PM4SiltStrength.py,sha256=7ABvpwKKe53hKPqEvJH8-WLeTMtxYrGaTvN5IopIe8w,12918
134
+ rs2/modeler/properties/material/strength/PowerCurve.py,sha256=dqelX1W1jU_AbtlRSFdcb4hxPS0qNNHmMI9Oz0uHOb0,5200
135
+ rs2/modeler/properties/material/strength/Shansep.py,sha256=O8W9YJaEwcJJEgoSTZd1KLkZUpqWlsbCyqiy_P8GUaM,10586
136
+ rs2/modeler/properties/material/strength/ShearNormalFunction.py,sha256=CMA3CS47H9fyB1fOepld2Oj59nFx59aiUxYop5tvRTI,1024
137
+ rs2/modeler/properties/material/strength/SnowdenModAnisotropicLinear.py,sha256=pNjpWYKpW5Av6NcS9EXDGxngkXC7-ErisGeql6OwAQI,4331
138
+ rs2/modeler/properties/material/strength/SoftSoilCreepStrength.py,sha256=GacOfhHdpoK0wv8wJ7gFIVjMo0irnMiOW1Wkcu1xu2U,4507
139
+ rs2/modeler/properties/material/strength/SoftSoilStrength.py,sha256=Wg8N4Rl5clzQUL2d7Yx9U8zxyVDGsSgQOHS2613xuzw,4211
140
+ rs2/modeler/properties/material/strength/SofteningHardeningModel.py,sha256=4DDUO-fltjAYgNMhjvTyovMy81qrOL0WnmfOwmy-IAw,9480
141
+ rs2/modeler/properties/material/strength/Strength.py,sha256=5XzbTR6l5kZW9WH-uxnQHySza-L3UQmCOxNikrScM1Q,13813
142
+ rs2/modeler/properties/material/strength/SwellingRockStrength.py,sha256=WDStBPpMGO2R6W88_Y6wZvKrazG_7tT8nFMNW6Vy7R4,6886
143
+ rs2/modeler/properties/material/strength/VerticalStressRatio.py,sha256=OH0JKEClwejKE2ReABEYcRdLrnR0oCs8p9ObLf9xHfc,5845
144
+ rs2/modeler/properties/material/strength/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
+ rs2/modeler/properties/material/thermal/Thermal.py,sha256=Tdhj9Yy_15F-6TRMvk6Ndw6N5EY6OpJDmwAED013gPU,4624
146
+ rs2/modeler/properties/material/thermal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
+ rs2/modeler/properties/material/thermal/conductivity/Conductivity.py,sha256=ghX8mZuV9TJDVunD3Ag38Tcn9xWO6NB-0X-Rt-u77yY,1550
148
+ rs2/modeler/properties/material/thermal/conductivity/ConstantConductivity.py,sha256=joHkJpIp5qJapbpfEjoCNTfOeB9KZbnUyuLYIsm0oQ8,1678
149
+ rs2/modeler/properties/material/thermal/conductivity/CoteAndKonrad.py,sha256=5jE6xHfr7VSETkcfLu6aj7lN1wK5ZKUuWZqv6Nlmt7U,2103
150
+ rs2/modeler/properties/material/thermal/conductivity/Derives.py,sha256=qB1bBJAZYejzoSkOhrz40ZNBTAX31I--8nvOJF4NyFA,779
151
+ rs2/modeler/properties/material/thermal/conductivity/Johansen.py,sha256=jZPHfbqXzzCVvzHt4_9A3ygfhApcOG9VDR8U2q6RlbU,2667
152
+ rs2/modeler/properties/material/thermal/conductivity/JohansenLu.py,sha256=g2-c_soIWp6n-KmL94mKAVVHNnf8W2a-GvUwk6E5Mlo,1185
153
+ rs2/modeler/properties/material/thermal/conductivity/Tabular.py,sha256=9YxNddxSgXY3Rkx0hruBtPsCo2oAsH5QLkeaMeumC6E,1800
154
+ rs2/modeler/properties/material/thermal/conductivity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
+ rs2/modeler/properties/material/thermal/heatcapacity/ConstantHeatCapacity.py,sha256=Ro2lcuxFh2PvGQyqyCtknGGr5tHYkSkRlX3RYnpOWSk,2349
156
+ rs2/modeler/properties/material/thermal/heatcapacity/CustomHeatCapacity.py,sha256=2VoKmyDxsDgk077-ojrFp_VsZ9o1mXwNmmoojFcvZZE,2281
157
+ rs2/modeler/properties/material/thermal/heatcapacity/HeatCapacity.py,sha256=fLkrJD2479ET-UM5cZM2GBLIP7lWzr0f90XVoInDL2A,1239
158
+ rs2/modeler/properties/material/thermal/heatcapacity/JameNewman.py,sha256=Wk-kaAhtbTQMvM3hHqd054jn3w5cT51qs0fF8S5cQGM,1218
159
+ rs2/modeler/properties/material/thermal/heatcapacity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/CustomWaterContent.py,sha256=9nCQy4N3JFoG2kKvXZLn3L7YOEC3NrLQGlWQ7MGW17o,730
161
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/Konrad.py,sha256=pTeQCNvpv9KDY6PvpfxWRBw3W5HG8xZRoAeJbWUf5x0,1793
162
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/SoilUnfrozenWaterContent.py,sha256=w-4U-kDNrZ--6i0zevKgJDPGrph_9oWhWWTMltsMQlM,1426
163
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/TiceAnderson.py,sha256=YQBgKHdSCsRenDRu1sAizCFZjFdLrrSKFuFrH9vrztQ,1501
164
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/BrooksWaterContent.py,sha256=VLsn66kichFIo6gDEAPhl0GVv-XIPr-t9wTLhhZCIOE,1151
166
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/FredlundWaterContent.py,sha256=ROqhE3DGzFutIYgNZzHrgrelD75Olg69l0mClGzwAWs,1275
167
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GardnerWaterContent.py,sha256=R66IgVCDyCy62xrYjisU11AYe6FajXdJEK3tOBk2sHY,921
168
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GenuchtenWaterContent.py,sha256=2zqNiN7kix9uxneCZzAwQuwnouQjEVK7QKEJGAZHvdo,1660
169
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/HydraulicModel.py,sha256=K0eMyootJKZIYfVyacpeg4dKEsK9es5XwqGhmHnYKnI,2394
170
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/SimpleWaterContent.py,sha256=R8Yd1sPfgdRNPvAcqQYGVyWGYxWNeQXeGMA4g798zPs,815
171
+ rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
+ rs2/modeler/properties/pile/Beam.py,sha256=VljEyMqHGdEDLFqL7BerXUrLvt7L8t_fHnH0Oaq085k,1460
173
+ rs2/modeler/properties/pile/Elastic.py,sha256=0t9EovyRrPFLbIyVFYTZgsNGMQ0vKQA-zxbon615u1Y,2386
174
+ rs2/modeler/properties/pile/ForceDisplacement.py,sha256=g2bX04Cf-8XJ06PxCe2GQ_pTJ1oL_FlUMiO8-DJ7a2k,3532
175
+ rs2/modeler/properties/pile/Linear.py,sha256=J6WpTpZekgXF_4wl_9bLUyMIBe9hPq3r0eAj3gWNMDg,3265
176
+ rs2/modeler/properties/pile/MaterialDependentPile.py,sha256=0Qll9JUNRAI3Uh4TJlj63Ifh2KZCxUGbQGs3kuXxRvI,5055
177
+ rs2/modeler/properties/pile/MohrCoulombPile.py,sha256=-qJ7GoYHBWSjeqbHTOqxpphSlJcfiWhJLX0bAjWm8jM,5225
178
+ rs2/modeler/properties/pile/MultiLinear.py,sha256=uffumS3SqbASqiBbmylssrgNWHlMVh4Z66W1p1pfPik,3184
179
+ rs2/modeler/properties/pile/Pile.py,sha256=crbSqbB1ggq3jtuc5ZDtQETW7LRyT159DxbNx7EKc9s,3317
180
+ rs2/modeler/properties/pile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
+ rs2/utilities/ApplicationManager.py,sha256=u2GS_nW6uJcBcOc_CN5yy1DaBU5CF3yOtFGpJC7tdE4,2586
182
+ rs2/utilities/ColorPicker.py,sha256=nOHwCHtn8p3KkVC-GSpa38AOhRh2urQVE3brViH3vzE,2534
183
+ rs2/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ RS2Scripting-11.23.0.dist-info/License.txt,sha256=_OkJXIBSGMEg07z5G3WiNn3yWOvhXK___X7MHTWR17E,1077
185
+ RS2Scripting-11.23.0.dist-info/METADATA,sha256=pE05N75oAtNUgHQuPzaJ-BYbeop-Eo3Dge6cYsQ11-0,9678
186
+ RS2Scripting-11.23.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
187
+ RS2Scripting-11.23.0.dist-info/top_level.txt,sha256=9QT-lM7XOqDZtjDEtW-lpH9z4TZPnuq4_4rYcR1W8jM,4
188
+ RS2Scripting-11.23.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ rs2
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,6 @@
1
+
2
+ class Units:
3
+ def __init__(self, solid_units=None, hydro_units=None, thermal_units=None):
4
+ self.solid_units = solid_units
5
+ self.hydro_units = hydro_units
6
+ self.thermal_units = thermal_units
rs2/__init__.py ADDED
File without changes
rs2/_common/Client.py ADDED
@@ -0,0 +1,67 @@
1
+ import warnings
2
+ from rsmessages.requestFormat import functionRequest
3
+ from rsmessages.responseFormat import functionResponse, functionStatus
4
+ from multiprocessing.connection import Client as multiProcessingClient
5
+
6
+ class Client:
7
+ def __init__(self, host, port):
8
+ self.compatibleProgramVersion = "11.023"
9
+ self.connection = self.establishConnection(host, port)
10
+ if self.connection == None:
11
+ raise RuntimeError("Could not establish connection with the server. Make sure the server is started on the application.")
12
+
13
+ versionCompatible = self.callFunction(functionRequest("checkVersion", [self.compatibleProgramVersion]))
14
+ if not versionCompatible:
15
+ self.connection.close()
16
+ raise RuntimeError(f"""
17
+ Library version is not compatible with the program version.
18
+ Please ensure the versions match by installing the correct version of the library or program.
19
+ Library version: {self.compatibleProgramVersion} Program version: find in help->about.
20
+ """
21
+ )
22
+
23
+ def establishConnection(self, host, port):
24
+ try:
25
+ connection = multiProcessingClient((host, port) ,'AF_INET')
26
+ except Exception as e:
27
+ return
28
+ return connection
29
+
30
+ def send(self, request : functionRequest):
31
+ if not self.connection:
32
+ print('Unable to send request. Connection to the modeler was not established.')
33
+ return
34
+ try:
35
+ self.connection.send(request)
36
+ except ValueError as e:
37
+ print(f'Unable to send request. Argument might be too large. Full error: {e}')
38
+
39
+ def receive(self) -> functionResponse:
40
+ try:
41
+ response = self.connection.recv()
42
+ return response
43
+ except EOFError as e:
44
+ print('Unable to receive request as there is nothing left to receive and the other end was closed.')
45
+ return None
46
+
47
+ def callFunction(self, functionRequest : functionRequest):
48
+ self.send(functionRequest)
49
+ response = self.receive()
50
+
51
+ if response.warnings:
52
+ for warning in response.warnings:
53
+ minimumUserStackDepth = 3 #assumes user will not call the client directly.
54
+ warnings.warn(warning, UserWarning, stacklevel=minimumUserStackDepth)
55
+
56
+ if response.status is not functionStatus.success:
57
+ raise response.exception
58
+
59
+ return response.value
60
+
61
+ def closeConnection(self):
62
+ if self.connection:
63
+ self.connection.close()
64
+ self.connection = None
65
+
66
+ def __del__(self):
67
+ self.closeConnection()
@@ -0,0 +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
+
File without changes
@@ -0,0 +1,5 @@
1
+ from rs2._common.ProxyObject import ProxyObject
2
+
3
+ class DocumentProxy(ProxyObject):
4
+ def rebuildAndPostProcessPiles(self):
5
+ self._callFunction("rebuildAndPostProcessPiles", [])
@@ -0,0 +1,86 @@
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_YIELDED_ELEMENTS = "INTERPRET_YIELDED_ELEMENTS"
32
+ SOLID_STRAIN_VOLUMETRIC_STRAIN = "INTERPRET_STRAIN_VOLUMETRIC"
33
+ SOLID_STRAIN_MAX_SHEAR_STRAIN = "INTERPRET_STRAIN_MAX_SHEAR"
34
+ SOLID_DISPLACEMENT_HORIZONTAL_DISPLACEMENT = "INTERPRET_X_DISP_SIGNED"
35
+ SOLID_DISPLACEMENT_VERTICAL_DISPLACEMENT = "INTERPRET_Y_DISP_SIGNED"
36
+ SOLID_TOTAL_STRESS_MEAN_STRESS = "INTERPRET_STRESS_P"
37
+ SOLID_TOTAL_STRESS_VON_MISES_STRESS = "INTERPRET_STRESS_Q"
38
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_MEAN_STRESS = "INTERPRET_STRESS_P_EFF"
39
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_VON_MISES_STRESS = "INTERPRET_STRESS_Q_EFF"
40
+ SOLID_TOTAL_STRESS_SIGMA_XX = "INTERPRET_SIGMA_XX"
41
+ SOLID_TOTAL_STRESS_SIGMA_YY = "INTERPRET_SIGMA_YY"
42
+ SOLID_TOTAL_STRESS_SIGMA_XY = "INTERPRET_SIGMA_XY"
43
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_XX = "INTERPRET_SIGMA_XX_EFF"
44
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_YY = "INTERPRET_SIGMA_YY_EFF"
45
+ SOLID_EFFECTIVE_STRESS_EFFECTIVE_SIGMA_XY = "INTERPRET_SIGMA_XY_EFF"
46
+ SOLID_TOTAL_STRESS_DIFFERENTIAL_STRESS = "INTERPRET_STRESS_DIFFERENTIAL"
47
+ SOLID_STRAIN_STRAIN_XX = "INTERPRET_STRAIN_XX"
48
+ SOLID_STRAIN_STRAIN_YY = "INTERPRET_STRAIN_YY"
49
+ SOLID_STRAIN_STRAIN_ZZ = "INTERPRET_STRAIN_ZZ"
50
+ SOLID_STRAIN_STRAIN_XY = "INTERPRET_STRAIN_XY"
51
+ SOLID_STRAIN_MAJOR_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MAJOR"
52
+ SOLID_STRAIN_MEAN_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MEAN"
53
+ SOLID_STRAIN_MINOR_PRINCIPAL_STRAIN = "INTERPRET_STRAIN_P_MINOR"
54
+ PLASTIC_STRAIN_XX = "INTERPRET_PLASTIC_STRAIN_XX"
55
+ PLASTIC_STRAIN_YY = "INTERPRET_PLASTIC_STRAIN_YY"
56
+ PLASTIC_STRAIN_ZZ = "INTERPRET_PLASTIC_STRAIN_ZZ"
57
+ PLASTIC_STRAIN_XY = "INTERPRET_PLASTIC_STRAIN_XY"
58
+ PLASTIC_STRAIN_MAJOR_PRICIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MAJOR"
59
+ PLASTIC_STRAIN_MEAN_PRINCIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MEAN"
60
+ PLASTIC_STRAIN_MINOR_PRINCIPAL_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_P_MINOR"
61
+ PLASTIC_STRAIN_VOLUMETRIC_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_VOLUMETRIC"
62
+ PLASTIC_STRAIN_MAX_SHEAR_PLASTIC_STRAIN = "INTERPRET_PLASTIC_STRAIN_MAX_SHEAR"
63
+ THERMAL_TEMPERATURE = "INTERPRET_TEMPERATURE"
64
+ THERMAL_HORIZONTAL_FLUX = "INTERPRET_THERMO_X_FLUX_SIGNED"
65
+ THERMAL_VERTICAL_FLUX = "INTERPRET_THERMO_Y_FLUX_SIGNED"
66
+ THERMAL_TOTAL_FLUX = "INTERPRET_THERMO_TOTAL_FLUX"
67
+ THERMAL_HORIZONTAL_GRADIENT = "INTERPRET_THERMO_GRAD_X_SIGNED"
68
+ THERMAL_VERTICAL_GRADIENT = "INTERPRET_THERMO_GRAD_Y_SIGNED"
69
+ THERMAL_TOTAL_GRADIENT = "INTERPRET_THERMO_GRAD_TOTAL"
70
+ THERMAL_HORIZONTAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_X_SIGNED"
71
+ THERMAL_VERTICAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_Y_SIGNED"
72
+ THERMAL_TOTAL_CONDUCTIVITY = "INTERPRET_THERMO_CONDUCTIVITY_TOTAL"
73
+ THERMAL_SPECIFIC_HEAT = "INTERPRET_SPECIFIC_HEAT"
74
+ THERMAL_UNFROZEN_WATER_CONTENT = "INTERPRET_UNFROZEN_WATER_CONTENT"
75
+ DYNAMIC_MINIMUM_X_DISPLACEMENT = "INTERPRET_DYN_MIN_DISPLACEMENT_X"
76
+ DYNAMIC_MAXIMUM_X_DISPLACEMENT = "INTERPRET_DYN_MAX_DISPLACEMENT_X"
77
+ DYNAMIC_MINIMUM_Y_DISPLACEMENT = "INTERPRET_DYN_MIN_DISPLACEMENT_Y"
78
+ DYNAMIC_MAXIMUM_Y_DISPLACEMENT = "INTERPRET_DYN_MAX_DISPLACEMENT_Y"
79
+ DYNAMIC_MINIMUM_X_VELOCITY = "INTERPRET_DYN_MIN_VELOCITY_X"
80
+ DYNAMIC_MAXIMUM_X_VELOCITY = "INTERPRET_DYN_MAX_VELOCITY_X"
81
+ DYNAMIC_MINIMUM_Y_VELOCITY = "INTERPRET_DYN_MIN_VELOCITY_Y"
82
+ DYNAMIC_MAXIMUM_Y_VELOCITY = "INTERPRET_DYN_MAX_VELOCITY_Y"
83
+ DYNAMIC_MINIMUM_X_ACCELERATION = "INTERPRET_DYN_MIN_ACCELERATION_X"
84
+ DYNAMIC_MAXIMUM_X_ACCELERATION = "INTERPRET_DYN_MAX_ACCELERATION_X"
85
+ DYNAMIC_MINIMUM_Y_ACCELERATION = "INTERPRET_DYN_MIN_ACCELERATION_Y"
86
+ DYNAMIC_MAXIMUM_Y_ACCELERATION = "INTERPRET_DYN_MAX_ACCELERATION_Y"