Class Freq
fdscript.xsd
public class Freq
- Inheritance
-
Freq
- Inherited Members
- Extension Methods
Constructors
Freq()
Parameterless constructor for serialization.
public Freq()
Freq(int, int, ShapeNormalisation, bool, bool, bool, int, double)
Define calculation parameters for an eigenfrequency calculation.
public Freq(int numShapes = 3, int autoIter = 0, ShapeNormalisation normalisation = ShapeNormalisation.MassMatrix, bool x = true, bool y = true, bool z = true, int maxSturm = 0, double top = -0.01)
Parameters
numShapesintNumber of shapes.
autoIterintMax. number of iteration.
normalisationShapeNormalisationMode shape normalisation.
xboolConsider masses in global x-direction.
yboolConsider masses in global y-direction.
zboolConsider masses in global z-direction.
maxSturmintMax number of Sturm check steps (checking missing eigenvalues).
topdoubleTop of substructure. Masses on this level and below are not considered in Eigenfrequency calculation.
Freq(int, int, bool, bool, bool, double)
Define calculation parameters for an eigenfrequency calculation.
public Freq(int numShapes = 3, int maxSturm = 0, bool x = true, bool y = true, bool z = true, double top = -0.01)
Parameters
numShapesintNumber of shapes.
maxSturmintMax number of Sturm check steps (checking missing eigenvalues).
xboolConsider masses in global x-direction.
yboolConsider masses in global y-direction.
zboolConsider masses in global z-direction.
topdoubleTop of substructure. Masses on this level and below are not considered in Eigenfrequency calculation.
Fields
_shapeNormalization
public int _shapeNormalization
Field Value
_x
public bool _x
Field Value
_y
public bool _y
Field Value
_z
public bool _z
Field Value
Properties
AutoIter
with the value of 0 disables the "Try to reach ..." option, and an integer greater than 0 activates the option and defines the maximum number of iteration.
public int AutoIter { get; set; }
Property Value
MaxSturm
public int MaxSturm { get; set; }
Property Value
NumShapes
public int NumShapes { get; set; }
Property Value
ShapeNormalization
a Boolean-type parameter whose True value expresses the Unit option and its False value expresses the Mass matrix option as the Mode shape normalization method.
public ShapeNormalisation ShapeNormalization { get; set; }
Property Value
Top
public double Top { get; set; }
Property Value
X
public bool X { get; set; }
Property Value
Y
public bool Y { get; set; }
Property Value
Z
public bool Z { get; set; }
Property Value
Methods
Default()
Define default calculation parameters for an eigenfrequency calculation.
public static Freq Default()