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.
- RS2Scripting-11.23.0.dist-info/License.txt +20 -0
- RS2Scripting-11.23.0.dist-info/METADATA +147 -0
- RS2Scripting-11.23.0.dist-info/RECORD +188 -0
- RS2Scripting-11.23.0.dist-info/WHEEL +5 -0
- RS2Scripting-11.23.0.dist-info/top_level.txt +1 -0
- rs2/BaseModel.py +46 -0
- rs2/Units.py +6 -0
- rs2/__init__.py +0 -0
- rs2/_common/Client.py +67 -0
- rs2/_common/ProxyObject.py +12 -0
- rs2/_common/__init__.py +0 -0
- rs2/_common/documentProxy.py +5 -0
- rs2/interpreter/InterpreterEnums.py +86 -0
- rs2/interpreter/InterpreterGraphEnums.py +54 -0
- rs2/interpreter/InterpreterModel.py +328 -0
- rs2/interpreter/RS2Interpreter.py +78 -0
- rs2/interpreter/_UtilityResult.py +20 -0
- rs2/interpreter/__init__.py +0 -0
- rs2/interpreter/queryResults/HistoryQueryResults.py +30 -0
- rs2/interpreter/queryResults/MaterialQueryResults.py +67 -0
- rs2/interpreter/queryResults/MeshResults.py +12 -0
- rs2/interpreter/queryResults/TimeQueryResults.py +111 -0
- rs2/interpreter/queryResults/__init__.py +0 -0
- rs2/interpreter/supportResults/BoltResult.py +49 -0
- rs2/interpreter/supportResults/CompositeResult.py +24 -0
- rs2/interpreter/supportResults/JointResult.py +25 -0
- rs2/interpreter/supportResults/LinerResult.py +33 -0
- rs2/interpreter/supportResults/__init__.py +0 -0
- rs2/modeler/Model.py +350 -0
- rs2/modeler/RS2Modeler.py +81 -0
- rs2/modeler/__init__.py +0 -0
- rs2/modeler/properties/AbsoluteStageFactorGettersInterface.py +31 -0
- rs2/modeler/properties/AbsoluteStageFactorInterface.py +49 -0
- rs2/modeler/properties/CompositeProperty.py +81 -0
- rs2/modeler/properties/DiscreteFunction.py +43 -0
- rs2/modeler/properties/MaterialJoint.py +25 -0
- rs2/modeler/properties/MaterialJointOptions.py +28 -0
- rs2/modeler/properties/PropertyEnums.py +376 -0
- rs2/modeler/properties/RelativeStageFactorInterface.py +50 -0
- rs2/modeler/properties/ShearNormalFunction.py +45 -0
- rs2/modeler/properties/SnowdenAnisotropicFunction.py +56 -0
- rs2/modeler/properties/StructuralInterface.py +59 -0
- rs2/modeler/properties/UserDefinedWaterMode.py +21 -0
- rs2/modeler/properties/__init__.py +0 -0
- rs2/modeler/properties/bolt/Bolt.py +33 -0
- rs2/modeler/properties/bolt/EndAnchored.py +59 -0
- rs2/modeler/properties/bolt/FullyBonded.py +66 -0
- rs2/modeler/properties/bolt/PlainStrandCable.py +112 -0
- rs2/modeler/properties/bolt/Swellex.py +136 -0
- rs2/modeler/properties/bolt/Tieback.py +192 -0
- rs2/modeler/properties/bolt/__init__.py +0 -0
- rs2/modeler/properties/joint/BartonBandis.py +143 -0
- rs2/modeler/properties/joint/BartonBandisMaterial.py +82 -0
- rs2/modeler/properties/joint/DisplacementDependent.py +134 -0
- rs2/modeler/properties/joint/GeosyntheticHyperbolic.py +147 -0
- rs2/modeler/properties/joint/GeosyntheticHyperbolicMaterial.py +93 -0
- rs2/modeler/properties/joint/HyperbolicSoftening.py +202 -0
- rs2/modeler/properties/joint/Joint.py +57 -0
- rs2/modeler/properties/joint/MaterialDependent.py +128 -0
- rs2/modeler/properties/joint/MohrCoulomb.py +211 -0
- rs2/modeler/properties/joint/MohrCoulombMaterial.py +115 -0
- rs2/modeler/properties/joint/NoneSlip.py +103 -0
- rs2/modeler/properties/joint/__init__.py +0 -0
- rs2/modeler/properties/liner/CableTruss.py +199 -0
- rs2/modeler/properties/liner/Geosynthetic.py +167 -0
- rs2/modeler/properties/liner/Liner.py +31 -0
- rs2/modeler/properties/liner/ReinforcedConcrete.py +291 -0
- rs2/modeler/properties/liner/StandardBeam.py +268 -0
- rs2/modeler/properties/liner/__init__.py +0 -0
- rs2/modeler/properties/material/InitialConditions.py +152 -0
- rs2/modeler/properties/material/MaterialProperty.py +49 -0
- rs2/modeler/properties/material/StageFactors.py +100 -0
- rs2/modeler/properties/material/__init__.py +0 -0
- rs2/modeler/properties/material/datum/BaseDatum.py +23 -0
- rs2/modeler/properties/material/datum/Datum.py +79 -0
- rs2/modeler/properties/material/datum/PeakResidualDatum.py +31 -0
- rs2/modeler/properties/material/datum/SimpleDatum.py +17 -0
- rs2/modeler/properties/material/datum/__init__.py +0 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Brooks.py +106 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Constant.py +54 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/FEAGroundwater.py +82 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Fredlund.py +117 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Gardner.py +106 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Genuchten.py +124 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/Simple.py +91 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/UserDefined.py +10 -0
- rs2/modeler/properties/material/hydraulic/FEAGroundwater/__init__.py +0 -0
- rs2/modeler/properties/material/hydraulic/Hydraulic.py +41 -0
- rs2/modeler/properties/material/hydraulic/StaticGroundwater.py +85 -0
- rs2/modeler/properties/material/hydraulic/__init__.py +0 -0
- rs2/modeler/properties/material/stiffness/ChSoil.py +45 -0
- rs2/modeler/properties/material/stiffness/Custom.py +83 -0
- rs2/modeler/properties/material/stiffness/CySoil.py +45 -0
- rs2/modeler/properties/material/stiffness/DoubleYield.py +45 -0
- rs2/modeler/properties/material/stiffness/HardeningSoil.py +73 -0
- rs2/modeler/properties/material/stiffness/HardeningSoilSmallStrainStiffness.py +73 -0
- rs2/modeler/properties/material/stiffness/Isotropic.py +122 -0
- rs2/modeler/properties/material/stiffness/ManzariAndDafalias.py +38 -0
- rs2/modeler/properties/material/stiffness/NonLinearHyperbolic.py +117 -0
- rs2/modeler/properties/material/stiffness/NonLinearIsotropic.py +255 -0
- rs2/modeler/properties/material/stiffness/Norsand.py +45 -0
- rs2/modeler/properties/material/stiffness/Orthotropic.py +180 -0
- rs2/modeler/properties/material/stiffness/Pm4Sand.py +80 -0
- rs2/modeler/properties/material/stiffness/Pm4Silt.py +87 -0
- rs2/modeler/properties/material/stiffness/SoftSoil.py +24 -0
- rs2/modeler/properties/material/stiffness/SoftSoilCreep.py +24 -0
- rs2/modeler/properties/material/stiffness/Stiffness.py +53 -0
- rs2/modeler/properties/material/stiffness/SwellingRock.py +52 -0
- rs2/modeler/properties/material/stiffness/TransverselyIsotropic.py +145 -0
- rs2/modeler/properties/material/stiffness/ViscoElastic.py +59 -0
- rs2/modeler/properties/material/stiffness/__init__.py +0 -0
- rs2/modeler/properties/material/strength/AnisotropicLinear.py +150 -0
- rs2/modeler/properties/material/strength/BarcelonaBasic.py +176 -0
- rs2/modeler/properties/material/strength/BartonBandisStrength.py +59 -0
- rs2/modeler/properties/material/strength/BoundingSurfacePlasticity.py +66 -0
- rs2/modeler/properties/material/strength/CamClay.py +113 -0
- rs2/modeler/properties/material/strength/ChSoilStrength.py +66 -0
- rs2/modeler/properties/material/strength/CySoilStrength.py +94 -0
- rs2/modeler/properties/material/strength/DiscreteFunction.py +41 -0
- rs2/modeler/properties/material/strength/DoubleYieldStrength.py +94 -0
- rs2/modeler/properties/material/strength/DruckerPrager.py +113 -0
- rs2/modeler/properties/material/strength/Finn.py +129 -0
- rs2/modeler/properties/material/strength/GeneralizedAnisotropic.py +20 -0
- rs2/modeler/properties/material/strength/GeneralizedHoekBrown.py +195 -0
- rs2/modeler/properties/material/strength/HardeningSoilStrength.py +101 -0
- rs2/modeler/properties/material/strength/HardeningSoilWithSmallStrainStiffness.py +101 -0
- rs2/modeler/properties/material/strength/HoekBrown.py +102 -0
- rs2/modeler/properties/material/strength/Hyperbolic.py +59 -0
- rs2/modeler/properties/material/strength/JointedGeneralizedHoekBrown.py +198 -0
- rs2/modeler/properties/material/strength/JointedMohrCoulomb.py +116 -0
- rs2/modeler/properties/material/strength/ManzariAndDafaliasStrength.py +108 -0
- rs2/modeler/properties/material/strength/ModifiedCamClay.py +113 -0
- rs2/modeler/properties/material/strength/MohrCoulombStrength.py +113 -0
- rs2/modeler/properties/material/strength/MohrCoulombWithCap.py +112 -0
- rs2/modeler/properties/material/strength/NorSandStrength.py +101 -0
- rs2/modeler/properties/material/strength/PM4SandStrength.py +178 -0
- rs2/modeler/properties/material/strength/PM4SiltStrength.py +241 -0
- rs2/modeler/properties/material/strength/PowerCurve.py +101 -0
- rs2/modeler/properties/material/strength/Shansep.py +172 -0
- rs2/modeler/properties/material/strength/ShearNormalFunction.py +21 -0
- rs2/modeler/properties/material/strength/SnowdenModAnisotropicLinear.py +78 -0
- rs2/modeler/properties/material/strength/SoftSoilCreepStrength.py +87 -0
- rs2/modeler/properties/material/strength/SoftSoilStrength.py +80 -0
- rs2/modeler/properties/material/strength/SofteningHardeningModel.py +150 -0
- rs2/modeler/properties/material/strength/Strength.py +185 -0
- rs2/modeler/properties/material/strength/SwellingRockStrength.py +122 -0
- rs2/modeler/properties/material/strength/VerticalStressRatio.py +94 -0
- rs2/modeler/properties/material/strength/__init__.py +0 -0
- rs2/modeler/properties/material/thermal/Thermal.py +74 -0
- rs2/modeler/properties/material/thermal/__init__.py +0 -0
- rs2/modeler/properties/material/thermal/conductivity/Conductivity.py +27 -0
- rs2/modeler/properties/material/thermal/conductivity/ConstantConductivity.py +31 -0
- rs2/modeler/properties/material/thermal/conductivity/CoteAndKonrad.py +45 -0
- rs2/modeler/properties/material/thermal/conductivity/Derives.py +17 -0
- rs2/modeler/properties/material/thermal/conductivity/Johansen.py +45 -0
- rs2/modeler/properties/material/thermal/conductivity/JohansenLu.py +24 -0
- rs2/modeler/properties/material/thermal/conductivity/Tabular.py +31 -0
- rs2/modeler/properties/material/thermal/conductivity/__init__.py +0 -0
- rs2/modeler/properties/material/thermal/heatcapacity/ConstantHeatCapacity.py +38 -0
- rs2/modeler/properties/material/thermal/heatcapacity/CustomHeatCapacity.py +38 -0
- rs2/modeler/properties/material/thermal/heatcapacity/HeatCapacity.py +21 -0
- rs2/modeler/properties/material/thermal/heatcapacity/JameNewman.py +24 -0
- rs2/modeler/properties/material/thermal/heatcapacity/__init__.py +0 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/CustomWaterContent.py +13 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/Konrad.py +31 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/SoilUnfrozenWaterContent.py +23 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/TiceAnderson.py +31 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/__init__.py +0 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/BrooksWaterContent.py +24 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/FredlundWaterContent.py +31 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GardnerWaterContent.py +24 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/GenuchtenWaterContent.py +38 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/HydraulicModel.py +37 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/SimpleWaterContent.py +17 -0
- rs2/modeler/properties/material/thermal/soilunfrozenwatercontent/hydraulic/__init__.py +0 -0
- rs2/modeler/properties/pile/Beam.py +34 -0
- rs2/modeler/properties/pile/Elastic.py +45 -0
- rs2/modeler/properties/pile/ForceDisplacement.py +59 -0
- rs2/modeler/properties/pile/Linear.py +59 -0
- rs2/modeler/properties/pile/MaterialDependentPile.py +87 -0
- rs2/modeler/properties/pile/MohrCoulombPile.py +94 -0
- rs2/modeler/properties/pile/MultiLinear.py +56 -0
- rs2/modeler/properties/pile/Pile.py +63 -0
- rs2/modeler/properties/pile/__init__.py +0 -0
- rs2/modeler/properties/propertyProxy.py +283 -0
- rs2/utilities/ApplicationManager.py +64 -0
- rs2/utilities/ColorPicker.py +78 -0
- rs2/utilities/__init__.py +0 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
from rs2.modeler.properties.propertyProxy import PropertyProxy
|
|
2
|
+
from rs2._common.Client import Client
|
|
3
|
+
from enum import Enum, auto
|
|
4
|
+
from typing import List
|
|
5
|
+
from rs2.modeler.properties.PropertyEnums import *
|
|
6
|
+
class HardeningSoilSmallStrainStiffness(PropertyProxy):
|
|
7
|
+
def getERef50(self) -> float:
|
|
8
|
+
return self._getDoubleProperty("MP_HS_E_REF_50")
|
|
9
|
+
def setERef50(self, value: float):
|
|
10
|
+
return self._setDoubleProperty("MP_HS_E_REF_50", value)
|
|
11
|
+
def getERefoed(self) -> float:
|
|
12
|
+
return self._getDoubleProperty("MP_HS_E_REF_OED")
|
|
13
|
+
def setERefoed(self, value: float):
|
|
14
|
+
return self._setDoubleProperty("MP_HS_E_REF_OED", value)
|
|
15
|
+
def getERefur(self) -> float:
|
|
16
|
+
return self._getDoubleProperty("MP_HS_E_REF_UR")
|
|
17
|
+
def setERefur(self, value: float):
|
|
18
|
+
return self._setDoubleProperty("MP_HS_E_REF_UR", value)
|
|
19
|
+
def getM(self) -> float:
|
|
20
|
+
return self._getDoubleProperty("MP_HS_M")
|
|
21
|
+
def setM(self, value: float):
|
|
22
|
+
return self._setDoubleProperty("MP_HS_M", value)
|
|
23
|
+
def getReferencePressure(self) -> float:
|
|
24
|
+
return self._getDoubleProperty("MP_HS_REF_PRESSURE")
|
|
25
|
+
def setReferencePressure(self, value: float):
|
|
26
|
+
return self._setDoubleProperty("MP_HS_REF_PRESSURE", value)
|
|
27
|
+
def getPoissonsRatio(self) -> float:
|
|
28
|
+
return self._getDoubleProperty("MP_HS_POISSON")
|
|
29
|
+
def setPoissonsRatio(self, value: float):
|
|
30
|
+
return self._setDoubleProperty("MP_HS_POISSON", value)
|
|
31
|
+
def getPlimit(self) -> float:
|
|
32
|
+
return self._getDoubleProperty("MP_HS_P_LIMIT")
|
|
33
|
+
def setPlimit(self, value: float):
|
|
34
|
+
return self._setDoubleProperty("MP_HS_P_LIMIT", value)
|
|
35
|
+
def getG0ref(self) -> float:
|
|
36
|
+
return self._getDoubleProperty("MP_HS_G0_REF")
|
|
37
|
+
def setG0ref(self, value: float):
|
|
38
|
+
return self._setDoubleProperty("MP_HS_G0_REF", value)
|
|
39
|
+
def getGama07(self) -> float:
|
|
40
|
+
return self._getDoubleProperty("MP_HS_GAMA_07")
|
|
41
|
+
def setGama07(self, value: float):
|
|
42
|
+
return self._setDoubleProperty("MP_HS_GAMA_07", value)
|
|
43
|
+
def setProperties(self, ERef50 : float = None, ERefoed : float = None, ERefur : float = None, M : float = None, ReferencePressure : float = None, PoissonsRatio : float = None, Plimit : float = None, G0ref : float = None, Gama07 : float = None):
|
|
44
|
+
if ERef50 is not None:
|
|
45
|
+
self._setDoubleProperty("MP_HS_E_REF_50", ERef50)
|
|
46
|
+
if ERefoed is not None:
|
|
47
|
+
self._setDoubleProperty("MP_HS_E_REF_OED", ERefoed)
|
|
48
|
+
if ERefur is not None:
|
|
49
|
+
self._setDoubleProperty("MP_HS_E_REF_UR", ERefur)
|
|
50
|
+
if M is not None:
|
|
51
|
+
self._setDoubleProperty("MP_HS_M", M)
|
|
52
|
+
if ReferencePressure is not None:
|
|
53
|
+
self._setDoubleProperty("MP_HS_REF_PRESSURE", ReferencePressure)
|
|
54
|
+
if PoissonsRatio is not None:
|
|
55
|
+
self._setDoubleProperty("MP_HS_POISSON", PoissonsRatio)
|
|
56
|
+
if Plimit is not None:
|
|
57
|
+
self._setDoubleProperty("MP_HS_P_LIMIT", Plimit)
|
|
58
|
+
if G0ref is not None:
|
|
59
|
+
self._setDoubleProperty("MP_HS_G0_REF", G0ref)
|
|
60
|
+
if Gama07 is not None:
|
|
61
|
+
self._setDoubleProperty("MP_HS_GAMA_07", Gama07)
|
|
62
|
+
def getProperties(self):
|
|
63
|
+
return {
|
|
64
|
+
"ERef50" : self.getERef50(),
|
|
65
|
+
"ERefoed" : self.getERefoed(),
|
|
66
|
+
"ERefur" : self.getERefur(),
|
|
67
|
+
"M" : self.getM(),
|
|
68
|
+
"ReferencePressure" : self.getReferencePressure(),
|
|
69
|
+
"PoissonsRatio" : self.getPoissonsRatio(),
|
|
70
|
+
"Plimit" : self.getPlimit(),
|
|
71
|
+
"G0ref" : self.getG0ref(),
|
|
72
|
+
"Gama07" : self.getGama07(),
|
|
73
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
from rs2.modeler.properties.propertyProxy import PropertyProxy
|
|
2
|
+
from rs2._common.Client import Client
|
|
3
|
+
from enum import Enum, auto
|
|
4
|
+
from typing import List
|
|
5
|
+
from rs2.modeler.properties.PropertyEnums import *
|
|
6
|
+
from rs2._common.ProxyObject import ProxyObject
|
|
7
|
+
from rs2.modeler.properties.AbsoluteStageFactorGettersInterface import AbsoluteStageFactorGettersInterface
|
|
8
|
+
class IsotropicStageFactor(ProxyObject):
|
|
9
|
+
def __init__(self, client : Client, ID, propertyID):
|
|
10
|
+
super().__init__(client, ID)
|
|
11
|
+
self.propertyID = propertyID
|
|
12
|
+
def getPoissonsRatioFactor(self) -> float:
|
|
13
|
+
return self._callFunction("getDoubleFactor", ["MP_POISSONS_RATIO", self.propertyID], proxyArgumentIndices=[1])
|
|
14
|
+
def getShearModulusFactor(self) -> float:
|
|
15
|
+
return self._callFunction("getDoubleFactor", ["MP_SHEAR_MODULUS", self.propertyID], proxyArgumentIndices=[1])
|
|
16
|
+
def getYoungsModulusFactor(self) -> float:
|
|
17
|
+
return self._callFunction("getDoubleFactor", ["MP_YOUNGS_MODULUS", self.propertyID], proxyArgumentIndices=[1])
|
|
18
|
+
def getResidualYoungsModulusFactor(self) -> float:
|
|
19
|
+
return self._callFunction("getDoubleFactor", ["MP_YOUNGS_MODULUS_RES", self.propertyID], proxyArgumentIndices=[1])
|
|
20
|
+
class IsotropicDefinedStageFactor(IsotropicStageFactor):
|
|
21
|
+
def __init__(self, client : Client, ID, propertyID):
|
|
22
|
+
super().__init__(client, ID, propertyID)
|
|
23
|
+
def setPoissonsRatioFactor(self, value: float):
|
|
24
|
+
return self._callFunction("setDoubleFactor", ["MP_POISSONS_RATIO", value, self.propertyID], proxyArgumentIndices=[2])
|
|
25
|
+
def setShearModulusFactor(self, value: float):
|
|
26
|
+
return self._callFunction("setDoubleFactor", ["MP_SHEAR_MODULUS", value, self.propertyID], proxyArgumentIndices=[2])
|
|
27
|
+
def setYoungsModulusFactor(self, value: float):
|
|
28
|
+
return self._callFunction("setDoubleFactor", ["MP_YOUNGS_MODULUS", value, self.propertyID], proxyArgumentIndices=[2])
|
|
29
|
+
def setResidualYoungsModulusFactor(self, value: float):
|
|
30
|
+
return self._callFunction("setDoubleFactor", ["MP_YOUNGS_MODULUS_RES", value, self.propertyID], proxyArgumentIndices=[2])
|
|
31
|
+
class Isotropic(PropertyProxy):
|
|
32
|
+
def __init__(self, client : Client, ID, documentProxyID, stageFactorInterfaceID):
|
|
33
|
+
super().__init__(client, ID, documentProxyID)
|
|
34
|
+
self.stageFactorInterface = AbsoluteStageFactorGettersInterface[IsotropicDefinedStageFactor, IsotropicStageFactor](self._client, stageFactorInterfaceID, ID, IsotropicDefinedStageFactor, IsotropicStageFactor)
|
|
35
|
+
def getUseUnloadingCondition(self) -> bool:
|
|
36
|
+
return self._getBoolProperty("MP_USE_UNLOADING_CONDITION")
|
|
37
|
+
def setUseUnloadingCondition(self, value: bool):
|
|
38
|
+
return self._setBoolProperty("MP_USE_UNLOADING_CONDITION", value)
|
|
39
|
+
def getUnloadingCondition(self) -> UnloadingConditions:
|
|
40
|
+
return UnloadingConditions(self._getEnumEUnloadingConditionsProperty("MP_UNLOADING_CONDITION"))
|
|
41
|
+
def setUnloadingCondition(self, value: UnloadingConditions):
|
|
42
|
+
return self._setEnumEUnloadingConditionsProperty("MP_UNLOADING_CONDITION", value)
|
|
43
|
+
def getElasticParameters(self) -> ElasticParameters:
|
|
44
|
+
return ElasticParameters(self._getEnumEElasticParametersProperty("MP_ELASTIC_PARAMETERS"))
|
|
45
|
+
def setElasticParameters(self, value: ElasticParameters):
|
|
46
|
+
return self._setEnumEElasticParametersProperty("MP_ELASTIC_PARAMETERS", value)
|
|
47
|
+
def getShearModulus(self) -> float:
|
|
48
|
+
return self._getDoubleProperty("MP_SHEAR_MODULUS")
|
|
49
|
+
def setShearModulus(self, value: float):
|
|
50
|
+
return self._setDoubleProperty("MP_SHEAR_MODULUS", value)
|
|
51
|
+
def getPoissonsRatio(self) -> float:
|
|
52
|
+
return self._getDoubleProperty("MP_POISSONS_RATIO")
|
|
53
|
+
def setPoissonsRatio(self, value: float):
|
|
54
|
+
return self._setDoubleProperty("MP_POISSONS_RATIO", value)
|
|
55
|
+
def getYoungsModulus(self) -> float:
|
|
56
|
+
return self._getDoubleProperty("MP_YOUNGS_MODULUS")
|
|
57
|
+
def setYoungsModulus(self, value: float):
|
|
58
|
+
return self._setDoubleProperty("MP_YOUNGS_MODULUS", value)
|
|
59
|
+
def getUseResidualYoungsModulus(self) -> bool:
|
|
60
|
+
return self._getBoolProperty("MP_USE_YOUNGS_MODULUS_RES")
|
|
61
|
+
def setUseResidualYoungsModulus(self, value: bool):
|
|
62
|
+
return self._setBoolProperty("MP_USE_YOUNGS_MODULUS_RES", value)
|
|
63
|
+
def getResidualYoungsModulus(self) -> float:
|
|
64
|
+
return self._getDoubleProperty("MP_YOUNGS_MODULUS_RES")
|
|
65
|
+
def setResidualYoungsModulus(self, value: float):
|
|
66
|
+
return self._setDoubleProperty("MP_YOUNGS_MODULUS_RES", value)
|
|
67
|
+
def getUnloadingPoissonsRatio(self) -> float:
|
|
68
|
+
return self._getDoubleProperty("MP_UNLOADING_POISSONS_RATIO")
|
|
69
|
+
def setUnloadingPoissonsRatio(self, value: float):
|
|
70
|
+
return self._setDoubleProperty("MP_UNLOADING_POISSONS_RATIO", value)
|
|
71
|
+
def getUnloadingYoungsModulus(self) -> float:
|
|
72
|
+
return self._getDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS")
|
|
73
|
+
def setUnloadingYoungsModulus(self, value: float):
|
|
74
|
+
return self._setDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS", value)
|
|
75
|
+
def getUseUnloadingResidualYoungsModulus(self) -> bool:
|
|
76
|
+
return self._getBoolProperty("MP_UNLOADING_USE_YOUNGS_MODULUS_RES")
|
|
77
|
+
def setUseUnloadingResidualYoungsModulus(self, value: bool):
|
|
78
|
+
return self._setBoolProperty("MP_UNLOADING_USE_YOUNGS_MODULUS_RES", value)
|
|
79
|
+
def getUnloadingResidualYoungsModulus(self) -> float:
|
|
80
|
+
return self._getDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS_RES")
|
|
81
|
+
def setUnloadingResidualYoungsModulus(self, value: float):
|
|
82
|
+
return self._setDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS_RES", value)
|
|
83
|
+
def setProperties(self, UseUnloadingCondition : bool = None, UnloadingCondition : UnloadingConditions = None, ElasticParameters : ElasticParameters = None, ShearModulus : float = None, PoissonsRatio : float = None, YoungsModulus : float = None, UseResidualYoungsModulus : bool = None, ResidualYoungsModulus : float = None, UnloadingPoissonsRatio : float = None, UnloadingYoungsModulus : float = None, UseUnloadingResidualYoungsModulus : bool = None, UnloadingResidualYoungsModulus : float = None):
|
|
84
|
+
if UseUnloadingCondition is not None:
|
|
85
|
+
self._setBoolProperty("MP_USE_UNLOADING_CONDITION", UseUnloadingCondition)
|
|
86
|
+
if UnloadingCondition is not None:
|
|
87
|
+
self._setEnumEUnloadingConditionsProperty("MP_UNLOADING_CONDITION", UnloadingCondition)
|
|
88
|
+
if ElasticParameters is not None:
|
|
89
|
+
self._setEnumEElasticParametersProperty("MP_ELASTIC_PARAMETERS", ElasticParameters)
|
|
90
|
+
if ShearModulus is not None:
|
|
91
|
+
self._setDoubleProperty("MP_SHEAR_MODULUS", ShearModulus)
|
|
92
|
+
if PoissonsRatio is not None:
|
|
93
|
+
self._setDoubleProperty("MP_POISSONS_RATIO", PoissonsRatio)
|
|
94
|
+
if YoungsModulus is not None:
|
|
95
|
+
self._setDoubleProperty("MP_YOUNGS_MODULUS", YoungsModulus)
|
|
96
|
+
if UseResidualYoungsModulus is not None:
|
|
97
|
+
self._setBoolProperty("MP_USE_YOUNGS_MODULUS_RES", UseResidualYoungsModulus)
|
|
98
|
+
if ResidualYoungsModulus is not None:
|
|
99
|
+
self._setDoubleProperty("MP_YOUNGS_MODULUS_RES", ResidualYoungsModulus)
|
|
100
|
+
if UnloadingPoissonsRatio is not None:
|
|
101
|
+
self._setDoubleProperty("MP_UNLOADING_POISSONS_RATIO", UnloadingPoissonsRatio)
|
|
102
|
+
if UnloadingYoungsModulus is not None:
|
|
103
|
+
self._setDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS", UnloadingYoungsModulus)
|
|
104
|
+
if UseUnloadingResidualYoungsModulus is not None:
|
|
105
|
+
self._setBoolProperty("MP_UNLOADING_USE_YOUNGS_MODULUS_RES", UseUnloadingResidualYoungsModulus)
|
|
106
|
+
if UnloadingResidualYoungsModulus is not None:
|
|
107
|
+
self._setDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS_RES", UnloadingResidualYoungsModulus)
|
|
108
|
+
def getProperties(self):
|
|
109
|
+
return {
|
|
110
|
+
"UseUnloadingCondition" : self.getUseUnloadingCondition(),
|
|
111
|
+
"UnloadingCondition" : self.getUnloadingCondition(),
|
|
112
|
+
"ElasticParameters" : self.getElasticParameters(),
|
|
113
|
+
"ShearModulus" : self.getShearModulus(),
|
|
114
|
+
"PoissonsRatio" : self.getPoissonsRatio(),
|
|
115
|
+
"YoungsModulus" : self.getYoungsModulus(),
|
|
116
|
+
"UseResidualYoungsModulus" : self.getUseResidualYoungsModulus(),
|
|
117
|
+
"ResidualYoungsModulus" : self.getResidualYoungsModulus(),
|
|
118
|
+
"UnloadingPoissonsRatio" : self.getUnloadingPoissonsRatio(),
|
|
119
|
+
"UnloadingYoungsModulus" : self.getUnloadingYoungsModulus(),
|
|
120
|
+
"UseUnloadingResidualYoungsModulus" : self.getUseUnloadingResidualYoungsModulus(),
|
|
121
|
+
"UnloadingResidualYoungsModulus" : self.getUnloadingResidualYoungsModulus(),
|
|
122
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
from rs2.modeler.properties.propertyProxy import PropertyProxy
|
|
2
|
+
from rs2._common.Client import Client
|
|
3
|
+
from enum import Enum, auto
|
|
4
|
+
from typing import List
|
|
5
|
+
from rs2.modeler.properties.PropertyEnums import *
|
|
6
|
+
class ManzariAndDafalias(PropertyProxy):
|
|
7
|
+
def getG0Parameter(self) -> float:
|
|
8
|
+
return self._getDoubleProperty("MP_MD_G0")
|
|
9
|
+
def setG0Parameter(self, value: float):
|
|
10
|
+
return self._setDoubleProperty("MP_MD_G0", value)
|
|
11
|
+
def getVParameter(self) -> float:
|
|
12
|
+
return self._getDoubleProperty("MP_MD_V")
|
|
13
|
+
def setVParameter(self, value: float):
|
|
14
|
+
return self._setDoubleProperty("MP_MD_V", value)
|
|
15
|
+
def getPatmParameter(self) -> float:
|
|
16
|
+
return self._getDoubleProperty("MP_MD_PATM")
|
|
17
|
+
def setPatmParameter(self, value: float):
|
|
18
|
+
return self._setDoubleProperty("MP_MD_PATM", value)
|
|
19
|
+
def getInitialVoidRatio(self) -> float:
|
|
20
|
+
return self._getDoubleProperty("MP_MD_INITIAL_VOID_RATIO")
|
|
21
|
+
def setInitialVoidRatio(self, value: float):
|
|
22
|
+
return self._setDoubleProperty("MP_MD_INITIAL_VOID_RATIO", value)
|
|
23
|
+
def setProperties(self, G0Parameter : float = None, VParameter : float = None, PatmParameter : float = None, InitialVoidRatio : float = None):
|
|
24
|
+
if G0Parameter is not None:
|
|
25
|
+
self._setDoubleProperty("MP_MD_G0", G0Parameter)
|
|
26
|
+
if VParameter is not None:
|
|
27
|
+
self._setDoubleProperty("MP_MD_V", VParameter)
|
|
28
|
+
if PatmParameter is not None:
|
|
29
|
+
self._setDoubleProperty("MP_MD_PATM", PatmParameter)
|
|
30
|
+
if InitialVoidRatio is not None:
|
|
31
|
+
self._setDoubleProperty("MP_MD_INITIAL_VOID_RATIO", InitialVoidRatio)
|
|
32
|
+
def getProperties(self):
|
|
33
|
+
return {
|
|
34
|
+
"G0Parameter" : self.getG0Parameter(),
|
|
35
|
+
"VParameter" : self.getVParameter(),
|
|
36
|
+
"PatmParameter" : self.getPatmParameter(),
|
|
37
|
+
"InitialVoidRatio" : self.getInitialVoidRatio(),
|
|
38
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
from rs2.modeler.properties.propertyProxy import PropertyProxy
|
|
2
|
+
from rs2._common.Client import Client
|
|
3
|
+
from enum import Enum, auto
|
|
4
|
+
from typing import List
|
|
5
|
+
from rs2.modeler.properties.PropertyEnums import *
|
|
6
|
+
from rs2._common.ProxyObject import ProxyObject
|
|
7
|
+
from rs2.modeler.properties.AbsoluteStageFactorGettersInterface import AbsoluteStageFactorGettersInterface
|
|
8
|
+
class NonLinearHyperbolicStageFactor(ProxyObject):
|
|
9
|
+
def __init__(self, client : Client, ID, propertyID):
|
|
10
|
+
super().__init__(client, ID)
|
|
11
|
+
self.propertyID = propertyID
|
|
12
|
+
def getAtmosphericPressureFactor(self) -> float:
|
|
13
|
+
return self._callFunction("getDoubleFactor", ["MP_ATMOSPHERIC_PRESSURE", self.propertyID], proxyArgumentIndices=[1])
|
|
14
|
+
def getBulkModulusExpMFactor(self) -> float:
|
|
15
|
+
return self._callFunction("getDoubleFactor", ["MP_BULK_MODULUS_EXP", self.propertyID], proxyArgumentIndices=[1])
|
|
16
|
+
def getBulkModulusNumberFactor(self) -> float:
|
|
17
|
+
return self._callFunction("getDoubleFactor", ["MP_BULK_MODULUS_NUMBER", self.propertyID], proxyArgumentIndices=[1])
|
|
18
|
+
def getFailureRatioRfFactor(self) -> float:
|
|
19
|
+
return self._callFunction("getDoubleFactor", ["MP_FAILURE_RATIO", self.propertyID], proxyArgumentIndices=[1])
|
|
20
|
+
def getModulusExpNFactor(self) -> float:
|
|
21
|
+
return self._callFunction("getDoubleFactor", ["MP_MODULUS_EXP", self.propertyID], proxyArgumentIndices=[1])
|
|
22
|
+
def getModulusNumberFactor(self) -> float:
|
|
23
|
+
return self._callFunction("getDoubleFactor", ["MP_MODULUS_NUMBER", self.propertyID], proxyArgumentIndices=[1])
|
|
24
|
+
def getPoissonsRatioFactor(self) -> float:
|
|
25
|
+
return self._callFunction("getDoubleFactor", ["MP_NLH_POISSONS_RATIO", self.propertyID], proxyArgumentIndices=[1])
|
|
26
|
+
def getUnloadingModulusNumberFactor(self) -> float:
|
|
27
|
+
return self._callFunction("getDoubleFactor", ["MP_UNLOADING_MODULUS_NUMBER", self.propertyID], proxyArgumentIndices=[1])
|
|
28
|
+
class NonLinearHyperbolicDefinedStageFactor(NonLinearHyperbolicStageFactor):
|
|
29
|
+
def __init__(self, client : Client, ID, propertyID):
|
|
30
|
+
super().__init__(client, ID, propertyID)
|
|
31
|
+
def setAtmosphericPressureFactor(self, value: float):
|
|
32
|
+
return self._callFunction("setDoubleFactor", ["MP_ATMOSPHERIC_PRESSURE", value, self.propertyID], proxyArgumentIndices=[2])
|
|
33
|
+
def setBulkModulusExpMFactor(self, value: float):
|
|
34
|
+
return self._callFunction("setDoubleFactor", ["MP_BULK_MODULUS_EXP", value, self.propertyID], proxyArgumentIndices=[2])
|
|
35
|
+
def setBulkModulusNumberFactor(self, value: float):
|
|
36
|
+
return self._callFunction("setDoubleFactor", ["MP_BULK_MODULUS_NUMBER", value, self.propertyID], proxyArgumentIndices=[2])
|
|
37
|
+
def setFailureRatioRfFactor(self, value: float):
|
|
38
|
+
return self._callFunction("setDoubleFactor", ["MP_FAILURE_RATIO", value, self.propertyID], proxyArgumentIndices=[2])
|
|
39
|
+
def setModulusExpNFactor(self, value: float):
|
|
40
|
+
return self._callFunction("setDoubleFactor", ["MP_MODULUS_EXP", value, self.propertyID], proxyArgumentIndices=[2])
|
|
41
|
+
def setModulusNumberFactor(self, value: float):
|
|
42
|
+
return self._callFunction("setDoubleFactor", ["MP_MODULUS_NUMBER", value, self.propertyID], proxyArgumentIndices=[2])
|
|
43
|
+
def setPoissonsRatioFactor(self, value: float):
|
|
44
|
+
return self._callFunction("setDoubleFactor", ["MP_NLH_POISSONS_RATIO", value, self.propertyID], proxyArgumentIndices=[2])
|
|
45
|
+
def setUnloadingModulusNumberFactor(self, value: float):
|
|
46
|
+
return self._callFunction("setDoubleFactor", ["MP_UNLOADING_MODULUS_NUMBER", value, self.propertyID], proxyArgumentIndices=[2])
|
|
47
|
+
class NonLinearHyperbolic(PropertyProxy):
|
|
48
|
+
def __init__(self, client : Client, ID, documentProxyID, stageFactorInterfaceID):
|
|
49
|
+
super().__init__(client, ID, documentProxyID)
|
|
50
|
+
self.stageFactorInterface = AbsoluteStageFactorGettersInterface[NonLinearHyperbolicDefinedStageFactor, NonLinearHyperbolicStageFactor](self._client, stageFactorInterfaceID, ID, NonLinearHyperbolicDefinedStageFactor, NonLinearHyperbolicStageFactor)
|
|
51
|
+
def getModulusNumber(self) -> float:
|
|
52
|
+
return self._getDoubleProperty("MP_MODULUS_NUMBER")
|
|
53
|
+
def setModulusNumber(self, value: float):
|
|
54
|
+
return self._setDoubleProperty("MP_MODULUS_NUMBER", value)
|
|
55
|
+
def getPoissonRatioType(self) -> PoissonRatioType:
|
|
56
|
+
return PoissonRatioType(self._getEnumEPoissonRatioTypeProperty("MP_POISSON_RATIO_TYPE"))
|
|
57
|
+
def setPoissonRatioType(self, value: PoissonRatioType):
|
|
58
|
+
return self._setEnumEPoissonRatioTypeProperty("MP_POISSON_RATIO_TYPE", value)
|
|
59
|
+
def getBulkModulusNumber(self) -> float:
|
|
60
|
+
return self._getDoubleProperty("MP_BULK_MODULUS_NUMBER")
|
|
61
|
+
def setBulkModulusNumber(self, value: float):
|
|
62
|
+
return self._setDoubleProperty("MP_BULK_MODULUS_NUMBER", value)
|
|
63
|
+
def getBulkModulusExpM(self) -> float:
|
|
64
|
+
return self._getDoubleProperty("MP_BULK_MODULUS_EXP")
|
|
65
|
+
def setBulkModulusExpM(self, value: float):
|
|
66
|
+
return self._setDoubleProperty("MP_BULK_MODULUS_EXP", value)
|
|
67
|
+
def getPoissonsRatio(self) -> float:
|
|
68
|
+
return self._getDoubleProperty("MP_NLH_POISSONS_RATIO")
|
|
69
|
+
def setPoissonsRatio(self, value: float):
|
|
70
|
+
return self._setDoubleProperty("MP_NLH_POISSONS_RATIO", value)
|
|
71
|
+
def getModulusExpN(self) -> float:
|
|
72
|
+
return self._getDoubleProperty("MP_MODULUS_EXP")
|
|
73
|
+
def setModulusExpN(self, value: float):
|
|
74
|
+
return self._setDoubleProperty("MP_MODULUS_EXP", value)
|
|
75
|
+
def getAtmosphericPressure(self) -> float:
|
|
76
|
+
return self._getDoubleProperty("MP_ATMOSPHERIC_PRESSURE")
|
|
77
|
+
def setAtmosphericPressure(self, value: float):
|
|
78
|
+
return self._setDoubleProperty("MP_ATMOSPHERIC_PRESSURE", value)
|
|
79
|
+
def getFailureRatioRf(self) -> float:
|
|
80
|
+
return self._getDoubleProperty("MP_FAILURE_RATIO")
|
|
81
|
+
def setFailureRatioRf(self, value: float):
|
|
82
|
+
return self._setDoubleProperty("MP_FAILURE_RATIO", value)
|
|
83
|
+
def getUnloadingModulusNumber(self) -> float:
|
|
84
|
+
return self._getDoubleProperty("MP_UNLOADING_MODULUS_NUMBER")
|
|
85
|
+
def setUnloadingModulusNumber(self, value: float):
|
|
86
|
+
return self._setDoubleProperty("MP_UNLOADING_MODULUS_NUMBER", value)
|
|
87
|
+
def setProperties(self, ModulusNumber : float = None, PoissonRatioType : PoissonRatioType = None, BulkModulusNumber : float = None, BulkModulusExpM : float = None, PoissonsRatio : float = None, ModulusExpN : float = None, AtmosphericPressure : float = None, FailureRatioRf : float = None, UnloadingModulusNumber : float = None):
|
|
88
|
+
if ModulusNumber is not None:
|
|
89
|
+
self._setDoubleProperty("MP_MODULUS_NUMBER", ModulusNumber)
|
|
90
|
+
if PoissonRatioType is not None:
|
|
91
|
+
self._setEnumEPoissonRatioTypeProperty("MP_POISSON_RATIO_TYPE", PoissonRatioType)
|
|
92
|
+
if BulkModulusNumber is not None:
|
|
93
|
+
self._setDoubleProperty("MP_BULK_MODULUS_NUMBER", BulkModulusNumber)
|
|
94
|
+
if BulkModulusExpM is not None:
|
|
95
|
+
self._setDoubleProperty("MP_BULK_MODULUS_EXP", BulkModulusExpM)
|
|
96
|
+
if PoissonsRatio is not None:
|
|
97
|
+
self._setDoubleProperty("MP_NLH_POISSONS_RATIO", PoissonsRatio)
|
|
98
|
+
if ModulusExpN is not None:
|
|
99
|
+
self._setDoubleProperty("MP_MODULUS_EXP", ModulusExpN)
|
|
100
|
+
if AtmosphericPressure is not None:
|
|
101
|
+
self._setDoubleProperty("MP_ATMOSPHERIC_PRESSURE", AtmosphericPressure)
|
|
102
|
+
if FailureRatioRf is not None:
|
|
103
|
+
self._setDoubleProperty("MP_FAILURE_RATIO", FailureRatioRf)
|
|
104
|
+
if UnloadingModulusNumber is not None:
|
|
105
|
+
self._setDoubleProperty("MP_UNLOADING_MODULUS_NUMBER", UnloadingModulusNumber)
|
|
106
|
+
def getProperties(self):
|
|
107
|
+
return {
|
|
108
|
+
"ModulusNumber" : self.getModulusNumber(),
|
|
109
|
+
"PoissonRatioType" : self.getPoissonRatioType(),
|
|
110
|
+
"BulkModulusNumber" : self.getBulkModulusNumber(),
|
|
111
|
+
"BulkModulusExpM" : self.getBulkModulusExpM(),
|
|
112
|
+
"PoissonsRatio" : self.getPoissonsRatio(),
|
|
113
|
+
"ModulusExpN" : self.getModulusExpN(),
|
|
114
|
+
"AtmosphericPressure" : self.getAtmosphericPressure(),
|
|
115
|
+
"FailureRatioRf" : self.getFailureRatioRf(),
|
|
116
|
+
"UnloadingModulusNumber" : self.getUnloadingModulusNumber(),
|
|
117
|
+
}
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
from rs2.modeler.properties.propertyProxy import PropertyProxy
|
|
2
|
+
from rs2._common.Client import Client
|
|
3
|
+
from enum import Enum, auto
|
|
4
|
+
from typing import List
|
|
5
|
+
from rs2.modeler.properties.PropertyEnums import *
|
|
6
|
+
from rs2._common.ProxyObject import ProxyObject
|
|
7
|
+
from rs2.modeler.properties.AbsoluteStageFactorGettersInterface import AbsoluteStageFactorGettersInterface
|
|
8
|
+
class NonLinearIsotropicStageFactor(ProxyObject):
|
|
9
|
+
def __init__(self, client : Client, ID, propertyID):
|
|
10
|
+
super().__init__(client, ID)
|
|
11
|
+
self.propertyID = propertyID
|
|
12
|
+
def getAParameterFactor(self) -> float:
|
|
13
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_A", self.propertyID], proxyArgumentIndices=[1])
|
|
14
|
+
def getAlphaFactor(self) -> float:
|
|
15
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_ALPHA", self.propertyID], proxyArgumentIndices=[1])
|
|
16
|
+
def getBParameterFactor(self) -> float:
|
|
17
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_B", self.propertyID], proxyArgumentIndices=[1])
|
|
18
|
+
def getGMaxFactor(self) -> float:
|
|
19
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_G_MAX", self.propertyID], proxyArgumentIndices=[1])
|
|
20
|
+
def getInitialEFactor(self) -> float:
|
|
21
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_INITIAL_E", self.propertyID], proxyArgumentIndices=[1])
|
|
22
|
+
def getMParameterFactor(self) -> float:
|
|
23
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_M", self.propertyID], proxyArgumentIndices=[1])
|
|
24
|
+
def getPrefFactor(self) -> float:
|
|
25
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_PREF", self.propertyID], proxyArgumentIndices=[1])
|
|
26
|
+
def getRParameterFactor(self) -> float:
|
|
27
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_R", self.propertyID], proxyArgumentIndices=[1])
|
|
28
|
+
def getGammaYFactor(self) -> float:
|
|
29
|
+
return self._callFunction("getDoubleFactor", ["MP_NLI_TAU_Y", self.propertyID], proxyArgumentIndices=[1])
|
|
30
|
+
def getPoissonsRatioFactor(self) -> float:
|
|
31
|
+
return self._callFunction("getDoubleFactor", ["MP_POISSONS_RATIO", self.propertyID], proxyArgumentIndices=[1])
|
|
32
|
+
def getResidualYoungsModulusFactor(self) -> float:
|
|
33
|
+
return self._callFunction("getDoubleFactor", ["MP_YOUNGS_MODULUS_RES", self.propertyID], proxyArgumentIndices=[1])
|
|
34
|
+
class NonLinearIsotropicDefinedStageFactor(NonLinearIsotropicStageFactor):
|
|
35
|
+
def __init__(self, client : Client, ID, propertyID):
|
|
36
|
+
super().__init__(client, ID, propertyID)
|
|
37
|
+
def setAParameterFactor(self, value: float):
|
|
38
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_A", value, self.propertyID], proxyArgumentIndices=[2])
|
|
39
|
+
def setAlphaFactor(self, value: float):
|
|
40
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_ALPHA", value, self.propertyID], proxyArgumentIndices=[2])
|
|
41
|
+
def setBParameterFactor(self, value: float):
|
|
42
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_B", value, self.propertyID], proxyArgumentIndices=[2])
|
|
43
|
+
def setGMaxFactor(self, value: float):
|
|
44
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_G_MAX", value, self.propertyID], proxyArgumentIndices=[2])
|
|
45
|
+
def setInitialEFactor(self, value: float):
|
|
46
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_INITIAL_E", value, self.propertyID], proxyArgumentIndices=[2])
|
|
47
|
+
def setMParameterFactor(self, value: float):
|
|
48
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_M", value, self.propertyID], proxyArgumentIndices=[2])
|
|
49
|
+
def setPrefFactor(self, value: float):
|
|
50
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_PREF", value, self.propertyID], proxyArgumentIndices=[2])
|
|
51
|
+
def setRParameterFactor(self, value: float):
|
|
52
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_R", value, self.propertyID], proxyArgumentIndices=[2])
|
|
53
|
+
def setGammaYFactor(self, value: float):
|
|
54
|
+
return self._callFunction("setDoubleFactor", ["MP_NLI_TAU_Y", value, self.propertyID], proxyArgumentIndices=[2])
|
|
55
|
+
def setPoissonsRatioFactor(self, value: float):
|
|
56
|
+
return self._callFunction("setDoubleFactor", ["MP_POISSONS_RATIO", value, self.propertyID], proxyArgumentIndices=[2])
|
|
57
|
+
def setResidualYoungsModulusFactor(self, value: float):
|
|
58
|
+
return self._callFunction("setDoubleFactor", ["MP_YOUNGS_MODULUS_RES", value, self.propertyID], proxyArgumentIndices=[2])
|
|
59
|
+
class NonLinearIsotropic(PropertyProxy):
|
|
60
|
+
def __init__(self, client : Client, ID, documentProxyID, stageFactorInterfaceID):
|
|
61
|
+
super().__init__(client, ID, documentProxyID)
|
|
62
|
+
self.stageFactorInterface = AbsoluteStageFactorGettersInterface[NonLinearIsotropicDefinedStageFactor, NonLinearIsotropicStageFactor](self._client, stageFactorInterfaceID, ID, NonLinearIsotropicDefinedStageFactor, NonLinearIsotropicStageFactor)
|
|
63
|
+
def getUseUnloadingCondition(self) -> bool:
|
|
64
|
+
return self._getBoolProperty("MP_USE_UNLOADING_CONDITION")
|
|
65
|
+
def setUseUnloadingCondition(self, value: bool):
|
|
66
|
+
return self._setBoolProperty("MP_USE_UNLOADING_CONDITION", value)
|
|
67
|
+
def getUnloadingCondition(self) -> UnloadingConditions:
|
|
68
|
+
return UnloadingConditions(self._getEnumEUnloadingConditionsProperty("MP_UNLOADING_CONDITION"))
|
|
69
|
+
def setUnloadingCondition(self, value: UnloadingConditions):
|
|
70
|
+
return self._setEnumEUnloadingConditionsProperty("MP_UNLOADING_CONDITION", value)
|
|
71
|
+
def getNonLinearIsotropicFormula(self) -> NLIFormulaTypes:
|
|
72
|
+
return NLIFormulaTypes(self._getEnumENLIFormulaTypesProperty("MP_NLI_TYPE"))
|
|
73
|
+
def setNonLinearIsotropicFormula(self, value: NLIFormulaTypes):
|
|
74
|
+
return self._setEnumENLIFormulaTypesProperty("MP_NLI_TYPE", value)
|
|
75
|
+
def getPoissonsRatio(self) -> float:
|
|
76
|
+
return self._getDoubleProperty("MP_POISSONS_RATIO")
|
|
77
|
+
def setPoissonsRatio(self, value: float):
|
|
78
|
+
return self._setDoubleProperty("MP_POISSONS_RATIO", value)
|
|
79
|
+
def getUseResidualYoungsModulus(self) -> bool:
|
|
80
|
+
return self._getBoolProperty("MP_USE_YOUNGS_MODULUS_RES")
|
|
81
|
+
def setUseResidualYoungsModulus(self, value: bool):
|
|
82
|
+
return self._setBoolProperty("MP_USE_YOUNGS_MODULUS_RES", value)
|
|
83
|
+
def getResidualYoungsModulus(self) -> float:
|
|
84
|
+
return self._getDoubleProperty("MP_YOUNGS_MODULUS_RES")
|
|
85
|
+
def setResidualYoungsModulus(self, value: float):
|
|
86
|
+
return self._setDoubleProperty("MP_YOUNGS_MODULUS_RES", value)
|
|
87
|
+
def getInitialE(self) -> float:
|
|
88
|
+
return self._getDoubleProperty("MP_NLI_INITIAL_E")
|
|
89
|
+
def setInitialE(self, value: float):
|
|
90
|
+
return self._setDoubleProperty("MP_NLI_INITIAL_E", value)
|
|
91
|
+
def getAlpha(self) -> float:
|
|
92
|
+
return self._getDoubleProperty("MP_NLI_ALPHA")
|
|
93
|
+
def setAlpha(self, value: float):
|
|
94
|
+
return self._setDoubleProperty("MP_NLI_ALPHA", value)
|
|
95
|
+
def getPref(self) -> float:
|
|
96
|
+
return self._getDoubleProperty("MP_NLI_PREF")
|
|
97
|
+
def setPref(self, value: float):
|
|
98
|
+
return self._setDoubleProperty("MP_NLI_PREF", value)
|
|
99
|
+
def getAParameter(self) -> float:
|
|
100
|
+
return self._getDoubleProperty("MP_NLI_A")
|
|
101
|
+
def setAParameter(self, value: float):
|
|
102
|
+
return self._setDoubleProperty("MP_NLI_A", value)
|
|
103
|
+
def getBParameter(self) -> float:
|
|
104
|
+
return self._getDoubleProperty("MP_NLI_B")
|
|
105
|
+
def setBParameter(self, value: float):
|
|
106
|
+
return self._setDoubleProperty("MP_NLI_B", value)
|
|
107
|
+
def getMParameter(self) -> float:
|
|
108
|
+
return self._getDoubleProperty("MP_NLI_M")
|
|
109
|
+
def setMParameter(self, value: float):
|
|
110
|
+
return self._setDoubleProperty("MP_NLI_M", value)
|
|
111
|
+
def getGMax(self) -> float:
|
|
112
|
+
return self._getDoubleProperty("MP_NLI_G_MAX")
|
|
113
|
+
def setGMax(self, value: float):
|
|
114
|
+
return self._setDoubleProperty("MP_NLI_G_MAX", value)
|
|
115
|
+
def getGammaY(self) -> float:
|
|
116
|
+
return self._getDoubleProperty("MP_NLI_TAU_Y")
|
|
117
|
+
def setGammaY(self, value: float):
|
|
118
|
+
return self._setDoubleProperty("MP_NLI_TAU_Y", value)
|
|
119
|
+
def getRParameter(self) -> float:
|
|
120
|
+
return self._getDoubleProperty("MP_NLI_R")
|
|
121
|
+
def setRParameter(self, value: float):
|
|
122
|
+
return self._setDoubleProperty("MP_NLI_R", value)
|
|
123
|
+
def getUnloadingPoissonsRatio(self) -> float:
|
|
124
|
+
return self._getDoubleProperty("MP_UNLOADING_POISSONS_RATIO")
|
|
125
|
+
def setUnloadingPoissonsRatio(self, value: float):
|
|
126
|
+
return self._setDoubleProperty("MP_UNLOADING_POISSONS_RATIO", value)
|
|
127
|
+
def getUseUnloadingResidualYoungsModulus(self) -> bool:
|
|
128
|
+
return self._getBoolProperty("MP_UNLOADING_USE_YOUNGS_MODULUS_RES")
|
|
129
|
+
def setUseUnloadingResidualYoungsModulus(self, value: bool):
|
|
130
|
+
return self._setBoolProperty("MP_UNLOADING_USE_YOUNGS_MODULUS_RES", value)
|
|
131
|
+
def getUnloadingResidualYoungsModulus(self) -> float:
|
|
132
|
+
return self._getDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS_RES")
|
|
133
|
+
def setUnloadingResidualYoungsModulus(self, value: float):
|
|
134
|
+
return self._setDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS_RES", value)
|
|
135
|
+
def getUnloadingInitialE(self) -> float:
|
|
136
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_INITIAL_E")
|
|
137
|
+
def setUnloadingInitialE(self, value: float):
|
|
138
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_INITIAL_E", value)
|
|
139
|
+
def getUnloadingAlpha(self) -> float:
|
|
140
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_ALPHA")
|
|
141
|
+
def setUnloadingAlpha(self, value: float):
|
|
142
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_ALPHA", value)
|
|
143
|
+
def getUnloadingPref(self) -> float:
|
|
144
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_PREF")
|
|
145
|
+
def setUnloadingPref(self, value: float):
|
|
146
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_PREF", value)
|
|
147
|
+
def getUnloadingAParameter(self) -> float:
|
|
148
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_A")
|
|
149
|
+
def setUnloadingAParameter(self, value: float):
|
|
150
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_A", value)
|
|
151
|
+
def getUnloadingBParameter(self) -> float:
|
|
152
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_B")
|
|
153
|
+
def setUnloadingBParameter(self, value: float):
|
|
154
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_B", value)
|
|
155
|
+
def getUnloadingMParameter(self) -> float:
|
|
156
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_M")
|
|
157
|
+
def setUnloadingMParameter(self, value: float):
|
|
158
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_M", value)
|
|
159
|
+
def getUnloadingGMax(self) -> float:
|
|
160
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_G_MAX")
|
|
161
|
+
def setUnloadingGMax(self, value: float):
|
|
162
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_G_MAX", value)
|
|
163
|
+
def getUnloadingGammaY(self) -> float:
|
|
164
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_TAU_Y")
|
|
165
|
+
def setUnloadingGammaY(self, value: float):
|
|
166
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_TAU_Y", value)
|
|
167
|
+
def getUnloadingRParameter(self) -> float:
|
|
168
|
+
return self._getDoubleProperty("MP_UNLOADING_NLI_R")
|
|
169
|
+
def setUnloadingRParameter(self, value: float):
|
|
170
|
+
return self._setDoubleProperty("MP_UNLOADING_NLI_R", value)
|
|
171
|
+
def setProperties(self, UseUnloadingCondition : bool = None, UnloadingCondition : UnloadingConditions = None, NonLinearIsotropicFormula : NLIFormulaTypes = None, PoissonsRatio : float = None, UseResidualYoungsModulus : bool = None, ResidualYoungsModulus : float = None, InitialE : float = None, Alpha : float = None, Pref : float = None, AParameter : float = None, BParameter : float = None, MParameter : float = None, GMax : float = None, GammaY : float = None, RParameter : float = None, UnloadingPoissonsRatio : float = None, UseUnloadingResidualYoungsModulus : bool = None, UnloadingResidualYoungsModulus : float = None, UnloadingInitialE : float = None, UnloadingAlpha : float = None, UnloadingPref : float = None, UnloadingAParameter : float = None, UnloadingBParameter : float = None, UnloadingMParameter : float = None, UnloadingGMax : float = None, UnloadingGammaY : float = None, UnloadingRParameter : float = None):
|
|
172
|
+
if UseUnloadingCondition is not None:
|
|
173
|
+
self._setBoolProperty("MP_USE_UNLOADING_CONDITION", UseUnloadingCondition)
|
|
174
|
+
if UnloadingCondition is not None:
|
|
175
|
+
self._setEnumEUnloadingConditionsProperty("MP_UNLOADING_CONDITION", UnloadingCondition)
|
|
176
|
+
if NonLinearIsotropicFormula is not None:
|
|
177
|
+
self._setEnumENLIFormulaTypesProperty("MP_NLI_TYPE", NonLinearIsotropicFormula)
|
|
178
|
+
if PoissonsRatio is not None:
|
|
179
|
+
self._setDoubleProperty("MP_POISSONS_RATIO", PoissonsRatio)
|
|
180
|
+
if UseResidualYoungsModulus is not None:
|
|
181
|
+
self._setBoolProperty("MP_USE_YOUNGS_MODULUS_RES", UseResidualYoungsModulus)
|
|
182
|
+
if ResidualYoungsModulus is not None:
|
|
183
|
+
self._setDoubleProperty("MP_YOUNGS_MODULUS_RES", ResidualYoungsModulus)
|
|
184
|
+
if InitialE is not None:
|
|
185
|
+
self._setDoubleProperty("MP_NLI_INITIAL_E", InitialE)
|
|
186
|
+
if Alpha is not None:
|
|
187
|
+
self._setDoubleProperty("MP_NLI_ALPHA", Alpha)
|
|
188
|
+
if Pref is not None:
|
|
189
|
+
self._setDoubleProperty("MP_NLI_PREF", Pref)
|
|
190
|
+
if AParameter is not None:
|
|
191
|
+
self._setDoubleProperty("MP_NLI_A", AParameter)
|
|
192
|
+
if BParameter is not None:
|
|
193
|
+
self._setDoubleProperty("MP_NLI_B", BParameter)
|
|
194
|
+
if MParameter is not None:
|
|
195
|
+
self._setDoubleProperty("MP_NLI_M", MParameter)
|
|
196
|
+
if GMax is not None:
|
|
197
|
+
self._setDoubleProperty("MP_NLI_G_MAX", GMax)
|
|
198
|
+
if GammaY is not None:
|
|
199
|
+
self._setDoubleProperty("MP_NLI_TAU_Y", GammaY)
|
|
200
|
+
if RParameter is not None:
|
|
201
|
+
self._setDoubleProperty("MP_NLI_R", RParameter)
|
|
202
|
+
if UnloadingPoissonsRatio is not None:
|
|
203
|
+
self._setDoubleProperty("MP_UNLOADING_POISSONS_RATIO", UnloadingPoissonsRatio)
|
|
204
|
+
if UseUnloadingResidualYoungsModulus is not None:
|
|
205
|
+
self._setBoolProperty("MP_UNLOADING_USE_YOUNGS_MODULUS_RES", UseUnloadingResidualYoungsModulus)
|
|
206
|
+
if UnloadingResidualYoungsModulus is not None:
|
|
207
|
+
self._setDoubleProperty("MP_UNLOADING_YOUNGS_MODULUS_RES", UnloadingResidualYoungsModulus)
|
|
208
|
+
if UnloadingInitialE is not None:
|
|
209
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_INITIAL_E", UnloadingInitialE)
|
|
210
|
+
if UnloadingAlpha is not None:
|
|
211
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_ALPHA", UnloadingAlpha)
|
|
212
|
+
if UnloadingPref is not None:
|
|
213
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_PREF", UnloadingPref)
|
|
214
|
+
if UnloadingAParameter is not None:
|
|
215
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_A", UnloadingAParameter)
|
|
216
|
+
if UnloadingBParameter is not None:
|
|
217
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_B", UnloadingBParameter)
|
|
218
|
+
if UnloadingMParameter is not None:
|
|
219
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_M", UnloadingMParameter)
|
|
220
|
+
if UnloadingGMax is not None:
|
|
221
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_G_MAX", UnloadingGMax)
|
|
222
|
+
if UnloadingGammaY is not None:
|
|
223
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_TAU_Y", UnloadingGammaY)
|
|
224
|
+
if UnloadingRParameter is not None:
|
|
225
|
+
self._setDoubleProperty("MP_UNLOADING_NLI_R", UnloadingRParameter)
|
|
226
|
+
def getProperties(self):
|
|
227
|
+
return {
|
|
228
|
+
"UseUnloadingCondition" : self.getUseUnloadingCondition(),
|
|
229
|
+
"UnloadingCondition" : self.getUnloadingCondition(),
|
|
230
|
+
"NonLinearIsotropicFormula" : self.getNonLinearIsotropicFormula(),
|
|
231
|
+
"PoissonsRatio" : self.getPoissonsRatio(),
|
|
232
|
+
"UseResidualYoungsModulus" : self.getUseResidualYoungsModulus(),
|
|
233
|
+
"ResidualYoungsModulus" : self.getResidualYoungsModulus(),
|
|
234
|
+
"InitialE" : self.getInitialE(),
|
|
235
|
+
"Alpha" : self.getAlpha(),
|
|
236
|
+
"Pref" : self.getPref(),
|
|
237
|
+
"AParameter" : self.getAParameter(),
|
|
238
|
+
"BParameter" : self.getBParameter(),
|
|
239
|
+
"MParameter" : self.getMParameter(),
|
|
240
|
+
"GMax" : self.getGMax(),
|
|
241
|
+
"GammaY" : self.getGammaY(),
|
|
242
|
+
"RParameter" : self.getRParameter(),
|
|
243
|
+
"UnloadingPoissonsRatio" : self.getUnloadingPoissonsRatio(),
|
|
244
|
+
"UseUnloadingResidualYoungsModulus" : self.getUseUnloadingResidualYoungsModulus(),
|
|
245
|
+
"UnloadingResidualYoungsModulus" : self.getUnloadingResidualYoungsModulus(),
|
|
246
|
+
"UnloadingInitialE" : self.getUnloadingInitialE(),
|
|
247
|
+
"UnloadingAlpha" : self.getUnloadingAlpha(),
|
|
248
|
+
"UnloadingPref" : self.getUnloadingPref(),
|
|
249
|
+
"UnloadingAParameter" : self.getUnloadingAParameter(),
|
|
250
|
+
"UnloadingBParameter" : self.getUnloadingBParameter(),
|
|
251
|
+
"UnloadingMParameter" : self.getUnloadingMParameter(),
|
|
252
|
+
"UnloadingGMax" : self.getUnloadingGMax(),
|
|
253
|
+
"UnloadingGammaY" : self.getUnloadingGammaY(),
|
|
254
|
+
"UnloadingRParameter" : self.getUnloadingRParameter(),
|
|
255
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
from rs2.modeler.properties.propertyProxy import PropertyProxy
|
|
2
|
+
from rs2._common.Client import Client
|
|
3
|
+
from enum import Enum, auto
|
|
4
|
+
from typing import List
|
|
5
|
+
from rs2.modeler.properties.PropertyEnums import *
|
|
6
|
+
class Norsand(PropertyProxy):
|
|
7
|
+
def getShearModulusAtReferencePressure(self) -> float:
|
|
8
|
+
return self._getDoubleProperty("MP_NS_SHEAR_MODULUS")
|
|
9
|
+
def setShearModulusAtReferencePressure(self, value: float):
|
|
10
|
+
return self._setDoubleProperty("MP_NS_SHEAR_MODULUS", value)
|
|
11
|
+
def getReferencePressureForShearModulus(self) -> float:
|
|
12
|
+
return self._getDoubleProperty("MP_NS_REF_PRESSURE")
|
|
13
|
+
def setReferencePressureForShearModulus(self, value: float):
|
|
14
|
+
return self._setDoubleProperty("MP_NS_REF_PRESSURE", value)
|
|
15
|
+
def getModulusExponent(self) -> float:
|
|
16
|
+
return self._getDoubleProperty("MP_NS_MODULUS_EXP")
|
|
17
|
+
def setModulusExponent(self, value: float):
|
|
18
|
+
return self._setDoubleProperty("MP_NS_MODULUS_EXP", value)
|
|
19
|
+
def getPoissonsRatio(self) -> float:
|
|
20
|
+
return self._getDoubleProperty("MP_NS_POISSONS")
|
|
21
|
+
def setPoissonsRatio(self, value: float):
|
|
22
|
+
return self._setDoubleProperty("MP_NS_POISSONS", value)
|
|
23
|
+
def getMinimumShearModulus(self) -> float:
|
|
24
|
+
return self._getDoubleProperty("MP_NS_MIN_SHEAR_MODULUS")
|
|
25
|
+
def setMinimumShearModulus(self, value: float):
|
|
26
|
+
return self._setDoubleProperty("MP_NS_MIN_SHEAR_MODULUS", value)
|
|
27
|
+
def setProperties(self, ShearModulusAtReferencePressure : float = None, ReferencePressureForShearModulus : float = None, ModulusExponent : float = None, PoissonsRatio : float = None, MinimumShearModulus : float = None):
|
|
28
|
+
if ShearModulusAtReferencePressure is not None:
|
|
29
|
+
self._setDoubleProperty("MP_NS_SHEAR_MODULUS", ShearModulusAtReferencePressure)
|
|
30
|
+
if ReferencePressureForShearModulus is not None:
|
|
31
|
+
self._setDoubleProperty("MP_NS_REF_PRESSURE", ReferencePressureForShearModulus)
|
|
32
|
+
if ModulusExponent is not None:
|
|
33
|
+
self._setDoubleProperty("MP_NS_MODULUS_EXP", ModulusExponent)
|
|
34
|
+
if PoissonsRatio is not None:
|
|
35
|
+
self._setDoubleProperty("MP_NS_POISSONS", PoissonsRatio)
|
|
36
|
+
if MinimumShearModulus is not None:
|
|
37
|
+
self._setDoubleProperty("MP_NS_MIN_SHEAR_MODULUS", MinimumShearModulus)
|
|
38
|
+
def getProperties(self):
|
|
39
|
+
return {
|
|
40
|
+
"ShearModulusAtReferencePressure" : self.getShearModulusAtReferencePressure(),
|
|
41
|
+
"ReferencePressureForShearModulus" : self.getReferencePressureForShearModulus(),
|
|
42
|
+
"ModulusExponent" : self.getModulusExponent(),
|
|
43
|
+
"PoissonsRatio" : self.getPoissonsRatio(),
|
|
44
|
+
"MinimumShearModulus" : self.getMinimumShearModulus(),
|
|
45
|
+
}
|