The SpectrumAmplitude object defines the spectrum of responses for displacement, velocity, or acceleration to be used in a response spectrum analysis.
The SpectrumAmplitude object is derived from the Amplitude object.
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
This method creates a SpectrumAmplitude object.
mdb.models[name].SpectrumAmplitude session.odbs[name].SpectrumAmplitude
Required arguments
A String specifying the repository key.
A SymbolicConstant specifying the method for specifying the spectrum. Possible values are DEFINE and CALCULATE.
A sequence of sequences of Floats specifying the magnitude, frequency, and damping values.
Optional arguments
A SymbolicConstant specifying the units used for specifying the spectrum. Possible values are DISPLACEMENT, VELOCITY, ACCELERATION, and GRAVITY. The default value is ACCELERATION.
A SymbolicConstant specifying the units used to describe the dynamic event in the amplitude used for the calculation. Possible values are EVENT_DISPLACEMENT, EVENT_VELOCITY, EVENT_ACCELERATION, and EVENT_GRAVITY. The default value is EVENT_ACCELERATION.
A SymbolicConstant specifying the solution method for the dynamic equations. Possible values are ABSOLUTE_VALUE and RELATIVE_VALUE. The default value is ABSOLUTE_VALUE.
A Float specifying the implicit time increment used to calculate the spectrum. This argument is required when the method = CALCULATE. The default value is 0.0.
A Float specifying the acceleration due to gravity. This argument applies only when specificationUnits = GRAVITY oreventUnits = GRAVITY. The default value is 1.0.
A Boolean specifying whether to calculate the spectrum for only the specified range of critical damping values or a list of values. If criticalDamping = ON, the spectrum is calculated only for the specified range of critical damping values. If criticalDamping = OFF, the spectrum is calculated for a list of damping values. The default value is OFF.
A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
A String specifying the name of the amplitude that describes the dynamic event used to calculate the spectrum. The default value is an empty string.
Return value
A SpectrumAmplitude object.
Exceptions
InvalidNameError and RangeError.
This method modifies the SpectrumAmplitude object.
Required arguments
Optional arguments
The optional arguments to setValues are the same as the arguments to the SpectrumAmplitude method, except for the name argument.
Return value
Exceptions
RangeError.
The SpectrumAmplitude object has members with the same names and descriptions as the arguments to the SpectrumAmplitude method.