Source code for abaqus.StepMiscellaneous.StructuralDampingComponent
[docs]class StructuralDampingComponent:
"""A StructuralDampingComponent object is used to define structural damping over a range of
modes.
Attributes
----------
start: int
An Int specifying the mode number of the lowest mode of a range.
end: int
An Int specifying the mode number of the highest mode of a range.
factor: float
A Float specifying the damping factor, s.
Notes
-----
This object can be accessed by:
.. code-block:: python
import step
mdb.models[name].steps[name].structuralDamping.components[i]
"""
# An Int specifying the mode number of the lowest mode of a range.
start: int = None
# An Int specifying the mode number of the highest mode of a range.
end: int = None
# A Float specifying the damping factor, s.
factor: float = None