public static enum FemModel.StressStrainMeasure extends java.lang.Enum<FemModel.StressStrainMeasure>
Enum Constant and Description |
---|
EnergyDensity
Render as a color map showing the strain energy density.
|
MAPStrain
Absolute value of the maximum principle strain.
|
MAPStress
Absolute value of the maximum principle stress.
|
MaxShearStrain
Maximum shear strain, given by
|
MaxShearStress
Maximum shear stress, given by
|
VonMisesStrain
von Mises strain, as defined in
http://www.continuummechanics.org/vonmisesstress.html,
which is equivalent to
https://dianafea.com/manuals/d944/Analys/node405.html.
|
VonMisesStress
von Mises stress, as defined in
https://en.wikipedia.org/wiki/Von_Mises_yield_criterion.
|
Modifier and Type | Method and Description |
---|---|
boolean |
usesEnergy() |
boolean |
usesStrain() |
boolean |
usesStress() |
static FemModel.StressStrainMeasure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FemModel.StressStrainMeasure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FemModel.StressStrainMeasure VonMisesStress
public static final FemModel.StressStrainMeasure VonMisesStrain
public static final FemModel.StressStrainMeasure MAPStress
public static final FemModel.StressStrainMeasure MAPStrain
public static final FemModel.StressStrainMeasure MaxShearStress
max (|s0-s1|/2, |s1-s2|/2, |s2-s0|/2)where
s0
, s1
, and s2
are the eigenvalues of
the stress tensor.public static final FemModel.StressStrainMeasure MaxShearStrain
max (|s0-s1|/2, |s1-s2|/2, |s2-s0|/2)where
s0
, s1
, and s2
are the eigenvalues of
the strain tensor.public static final FemModel.StressStrainMeasure EnergyDensity
public static FemModel.StressStrainMeasure[] values()
for (FemModel.StressStrainMeasure c : FemModel.StressStrainMeasure.values()) System.out.println(c);
public static FemModel.StressStrainMeasure valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean usesStress()
public boolean usesStrain()
public boolean usesEnergy()