Amplitude¶
Amplitude commands are used to create arbitrary time or frequency variations of load, displacement, and some interaction attributes throughout a step using step time or throughout an analysis using total time.
Create amplitudes¶
In Mdb¶
- class AmplitudeModel(
- name,
- description=
''
, - stefanBoltzmann=
None
, - absoluteZero=
None
, - waveFormulation=
NOT_SET
, - modelType=
STANDARD_EXPLICIT
, - universalGas=
None
, - copyConstraints=
1
, - copyConnectors=
1
, - copyInteractions=
1
, 基类:
ModelBase
Abaqus creates a Model object named Model-1 when a session is started.
备注
This object can be accessed by:
mdb.models[name]
备注
Public Data Attributes:
Inherited from
ModelBase
A String specifying the repository key.
None or a Float specifying the Stefan-Boltzmann constant.
None or a Float specifying the absolute zero constant.
A SymbolicConstant specifying the type of incident wave formulation to be used in acoustic problems.
None or a Float specifying the universal gas constant.
A Boolean specifying whether an input file should be written without parts and assemblies.
A Boolean specifying that the step specified by restartStep should be terminated at the increment specified by restartIncrement.
A Boolean specifying that a shell global model drives a solid submodel.
A Float specifying the time stamp that indicates when the model was last changed.
A String specifying the purpose and contents of the Model object.
A String specifying the name of the job that generated the restart data.
A String specifying the name of the step where the restart analysis will start.
A String specifying the name of the job that generated the results for the global model.
A boolean specifying the status of constraints created in a model, in the model which instances this model.
A boolean specifying the status of connectors created in a model, in the model which instances this model.
A boolean specifying the status of interactions created in a model, in the model which instances this model.
A KeywordBlock object.
A repository of Amplitude objects.
A repository of Profile objects.
A repository of BoundaryCondition objects.
A repository of ConstrainedSketchConstraint objects.
A repository of AnalyticalField objects.
A repository of DiscreteField objects.
A repository of PredefinedField objects.
A repository of Interaction objects.
A repository of InteractionProperty objects.
A repository of ContactControl objects.
A repository of ContactInitialization objects.
A repository of ContactStabilization objects.
A tuple of tuples of Strings specifying the linked child PartInstance name in the current model to the corresponding parent PartInstance name in a different model.
A tuple of tuples of Strings specifying the linked child Part name in the current model to the corresponding parent Part name in a different model.
A repository of Load objects.
A repository of Material objects.
A repository of Calibration objects.
A repository of Section objects.
A repository of RemeshingRule objects.
A repository of ConstrainedSketch objects.
A repository of Part objects.
A repository of Step objects.
A FeatureOptions object.
A repository of AdaptiveMeshConstraint objects.
A repository of AdaptiveMeshControl objects.
A repository of TimePoint objects.
A repository of Filter objects.
A repository of IntegratedOutputSection objects.
A repository of FieldOutputRequest objects.
A repository of HistoryOutputRequest objects.
A repository of OptimizationTask objects.
An Int specifying the increment, interval, iteration or cycle where the restart analysis will start.
An Assembly object.
Public Methods:
ActuatorAmplitude
(name[, timeSpan])This method creates a ActuatorAmplitude object.
DecayAmplitude
(name, initial, maximum, ...)This method creates a DecayAmplitude object.
EquallySpacedAmplitude
(name, fixedInterval, data)This method creates an EquallySpacedAmplitude object.
ModulatedAmplitude
(name, initial, magnitude, ...)This method creates a ModulatedAmplitude object.
PeriodicAmplitude
(name, frequency, start, ...)This method creates a PeriodicAmplitude object.
PsdDefinition
(name, data[, unitType, ...])This method creates a PsdDefinition object.
SmoothStepAmplitude
(name, data[, timeSpan])This method creates a SmoothStepAmplitude object.
SolutionDependentAmplitude
(name[, initial, ...])This method creates a SolutionDependentAmplitude object.
SpectrumAmplitude
(name, method, data[, ...])This method creates a SpectrumAmplitude object.
TabularAmplitude
(name, data[, smooth, timeSpan])This method creates a TabularAmplitude object.
Inherited from
ModelBase
__init__
(name[, description, ...])This method creates a Model object.
ModelFromInputFile
(name, inputFileName)This method creates a Model object by reading the keywords in an input file and creating the corresponding Abaqus/CAE objects.
ModelFromOdbFile
(name, odbFileName)This method creates a Model object by reading an output database and creating any corresponding Abaqus/CAE objects.
ModelFromNastranFile
(modelName, inputFileName)This method creates a Model object by reading the keywords in a Nastran bulk data file or Nastran input file and creating any corresponding Abaqus/CAE objects.
setValues
([description, noPartsInputFile, ...])This method modifies the Model object.
Member Details:
-
ActuatorAmplitude(name, timeSpan=
STEP
)[源代码]¶ This method creates a ActuatorAmplitude object.
备注
This function can be accessed by:
mdb.models[name].ActuatorAmplitude session.odbs[name].ActuatorAmplitude
备注
-
DecayAmplitude(name, initial, maximum, start, decayTime, timeSpan=
STEP
)[源代码]¶ This method creates a DecayAmplitude object.
备注
This function can be accessed by:
mdb.models[name].DecayAmplitude session.odbs[name].DecayAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- initial¶
A Float specifying the constant A0A0.
- maximum¶
A Float specifying the coefficient AA.
- start¶
A Float specifying the starting time t0t0. Possible values are non-negative numbers.
- decayTime¶
A Float specifying the decay time tdtd. Possible values are non-negative numbers.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A DecayAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- EquallySpacedAmplitude( )[源代码]¶
This method creates an EquallySpacedAmplitude object.
备注
This function can be accessed by:
mdb.models[name].EquallySpacedAmplitude session.odbs[name].EquallySpacedAmplitude
- 参数:¶
- name¶
A String specifying the repository key.
- fixedInterval¶
A Float specifying the fixed time interval at which the amplitude data are given. Possible values are positive numbers.
- data¶
A sequence of Floats specifying the amplitude values.
- begin=
0
¶ A Float specifying the time at which the first amplitude data are given. Possible values are non-negative numbers. The default value is 0.0.
- smooth=
SOLVER_DEFAULT
¶ The SymbolicConstant SOLVER_DEFAULT or a Float specifying the degree of smoothing. Possible float values are 0 ≤ smoothing ≤ 0.5. If smooth = SOLVER_DEFAULT, the default degree of smoothing will be determined by the solver. The default value is SOLVER_DEFAULT.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
An EquallySpacedAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- ModulatedAmplitude(
- name,
- initial,
- magnitude,
- start,
- frequency1,
- frequency2,
- timeSpan=
STEP
, This method creates a ModulatedAmplitude object.
备注
This function can be accessed by:
mdb.models[name].ModulatedAmplitude session.odbs[name].ModulatedAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- initial¶
A Float specifying the constant A0A0.
- magnitude¶
A Float specifying the coefficient AA.
- start¶
A Float specifying the starting time t0t0. Possible values are non-negative numbers.
- frequency1¶
A Float specifying the circular frequency 1 (ω1ω1). Possible values are positive numbers.
- frequency2¶
A Float specifying the circular frequency 2 (ω2ω2). Possible values are positive numbers.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A ModulatedAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
-
PeriodicAmplitude(name, frequency, start, a_0, data, timeSpan=
STEP
)[源代码]¶ This method creates a PeriodicAmplitude object.
备注
This function can be accessed by:
mdb.models[name].PeriodicAmplitude session.odbs[name].PeriodicAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- frequency¶
A Float specifying the circular frequency ωω. Possible values are positive numbers.
- start¶
A Float specifying the starting time t0t0. Possible values are positive numbers.
- a_0¶
A Float specifying the constant A0A0.
- data¶
A sequence of pairs of Floats specifying AiAi and BiBi pairs.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A PeriodicAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- PsdDefinition(
- name,
- data,
- unitType=
FORCE
, - referenceGravityAcceleration=
1
, - referenecePower=
0
, - user=
0
, - timeSpan=
STEP
, - amplitude=
''
, This method creates a PsdDefinition object.
备注
This function can be accessed by:
mdb.models[name].PsdDefinition session.odbs[name].PsdDefinition
备注
- 参数:¶
- name¶
A String specifying the repository key.
- data¶
A sequence of sequences of Floats specifying the real part of the frequency function, the imaginary part of the frequency function, and the frequency or frequency band number values, depending on the value of unitType.
- unitType=
FORCE
¶ A SymbolicConstant specifying the type of units for specifying the frequency function. FORCE implies power units. BASE implies gravity used to define base motion. DB implies decibel units. Possible values are FORCE, BASE, and DB. The default value is FORCE.
- referenceGravityAcceleration=
1
¶ A Float specifying the reference gravity acceleration. This argument applies when unitType = BASE. The default value is 1.0.
- referenecePower=
0
¶ A Float specifying the reference power value, in load units squared. This argument applies when unitType = DB. The default value is 0.0.
- user=
0
¶ A Boolean specifying whether the frequency function is defined in user subroutine UPSD. If specified, then data is not applicable, and the unitType value must not be DB. The default value is OFF.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- amplitude=
''
¶ A String specifying the name of the amplitude that describes the dynamic event used to define the cross-spectral density frequency function. The default value is an empty string.
- 返回:¶
A PsdDefinition object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
-
SmoothStepAmplitude(name, data, timeSpan=
STEP
)[源代码]¶ This method creates a SmoothStepAmplitude object.
备注
This function can be accessed by:
mdb.models[name].SmoothStepAmplitude session.odbs[name].SmoothStepAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- data¶
A sequence of pairs of Floats specifying time/frequency and amplitude pairs. Possible values for time/frequency are positive numbers.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A SmoothStepAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- SolutionDependentAmplitude( )[源代码]¶
This method creates a SolutionDependentAmplitude object.
备注
This function can be accessed by:
mdb.models[name].SolutionDependentAmplitude session.odbs[name].SolutionDependentAmplitude
- 参数:¶
- name¶
A String specifying the repository key.
- initial=
1
¶ A Float specifying the initial amplitude value. Possible values are those between minimum and maximum. The default value is 1.0.
- minimum=
0
¶ A Float specifying the minimum amplitude value. Possible values are those smaller than maximum and initial. The default value is 0.1.
- maximum=
1000
¶ A Float specifying the maximum amplitude value. Possible values are those larger than minimum and initial. The default value is 1000.0.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A SolutionDependentAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- SpectrumAmplitude(
- name,
- method,
- data,
- specificationUnits=
ACCELERATION
, - eventUnits=
EVENT_ACCELERATION
, - solution=
ABSOLUTE_VALUE
, - timeIncrement=
0
, - gravity=
1
, - criticalDamping=
0
, - timeSpan=
STEP
, - amplitude=
''
, This method creates a SpectrumAmplitude object.
备注
This function can be accessed by:
mdb.models[name].SpectrumAmplitude session.odbs[name].SpectrumAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- method¶
A SymbolicConstant specifying the method for specifying the spectrum. Possible values are DEFINE and CALCULATE.
- data¶
A sequence of sequences of Floats specifying the magnitude, frequency, and damping values.
- specificationUnits=
ACCELERATION
¶ A SymbolicConstant specifying the units used for specifying the spectrum. Possible values are DISPLACEMENT, VELOCITY, ACCELERATION, and GRAVITY. The default value is ACCELERATION.
- eventUnits=
EVENT_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.
- solution=
ABSOLUTE_VALUE
¶ A SymbolicConstant specifying the solution method for the dynamic equations. Possible values are ABSOLUTE_VALUE and RELATIVE_VALUE. The default value is ABSOLUTE_VALUE.
- timeIncrement=
0
¶ 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.
- gravity=
1
¶ A Float specifying the acceleration due to gravity. This argument applies only when specificationUnits = GRAVITY or*eventUnits* = GRAVITY. The default value is 1.0.
- criticalDamping=
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.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- amplitude=
''
¶ 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.
- 返回:¶
A SpectrumAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
-
TabularAmplitude(name, data, smooth=
SOLVER_DEFAULT
, timeSpan=STEP
)[源代码]¶ This method creates a TabularAmplitude object.
备注
This function can be accessed by:
mdb.models[name].TabularAmplitude session.odbs[name].TabularAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- data¶
A sequence of pairs of Floats specifying time/frequency and amplitude pairs. Possible values for time/frequency are positive numbers.
- smooth=
SOLVER_DEFAULT
¶ The SymbolicConstant SOLVER_DEFAULT or a Float specifying the degree of smoothing. Possible float values are between 0 and 0.5. If smooth = SOLVER_DEFAULT, the default degree of smoothing will be determined by the solver. The default value is SOLVER_DEFAULT.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A TabularAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
-
ActuatorAmplitude(name, timeSpan=
In Odb¶
-
class AmplitudeOdb(name, analysisTitle=
''
, description=''
, path=''
)[源代码]¶ 基类:
OdbBase
The Odb object is the in-memory representation of an output database (ODB) file.
备注
This object can be accessed by:
import odbAccess session.odbs[name]
备注
Public Data Attributes:
Inherited from
OdbBase
A Boolean specifying whether the output database was opened with read-only access.
A repository of Amplitude objects.
A repository of Filter objects.
An OdbAssembly object.
A JobData object.
A repository of OdbPart objects.
A repository of Material objects.
A repository of OdbStep objects.
A repository of Section objects.
A repository of SectionCategory objects.
A SectorDefinition object.
A UserData object.
A RepositorySupport object.
A repository of Profile objects.
Public Methods:
ActuatorAmplitude
(name[, timeSpan])This method creates a ActuatorAmplitude object.
DecayAmplitude
(name, initial, maximum, ...)This method creates a DecayAmplitude object.
EquallySpacedAmplitude
(name, fixedInterval, data)This method creates an EquallySpacedAmplitude object.
ModulatedAmplitude
(name, initial, magnitude, ...)This method creates a ModulatedAmplitude object.
PeriodicAmplitude
(name, frequency, start, ...)This method creates a PeriodicAmplitude object.
PsdDefinition
(name, data[, unitType, ...])This method creates a PsdDefinition object.
SmoothStepAmplitude
(name, data[, timeSpan])This method creates a SmoothStepAmplitude object.
SolutionDependentAmplitude
(name[, initial, ...])This method creates a SolutionDependentAmplitude object.
SpectrumAmplitude
(name, method, data[, ...])This method creates a SpectrumAmplitude object.
TabularAmplitude
(name, data[, smooth, timeSpan])This method creates a TabularAmplitude object.
Inherited from
OdbBase
__init__
(name[, analysisTitle, description, ...])This method creates a new Odb object.
close
()This method closes an output database.
getFrame
(frameValue[, match])This method returns the frame at the specified time, frequency, or mode.
save
()This method saves output to an output database (.odb ) file.
update
()This method is used to update an Odb object in memory while an Abaqus analysis writes data to the associated output database.
Member Details:
-
ActuatorAmplitude(name, timeSpan=
STEP
)[源代码]¶ This method creates a ActuatorAmplitude object.
备注
This function can be accessed by:
mdb.models[name].ActuatorAmplitude session.odbs[name].ActuatorAmplitude
备注
-
DecayAmplitude(name, initial, maximum, start, decayTime, timeSpan=
STEP
)[源代码]¶ This method creates a DecayAmplitude object.
备注
This function can be accessed by:
mdb.models[name].DecayAmplitude session.odbs[name].DecayAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- initial¶
A Float specifying the constant A0A0.
- maximum¶
A Float specifying the coefficient AA.
- start¶
A Float specifying the starting time t0t0. Possible values are non-negative numbers.
- decayTime¶
A Float specifying the decay time tdtd. Possible values are non-negative numbers.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A DecayAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- EquallySpacedAmplitude( )[源代码]¶
This method creates an EquallySpacedAmplitude object.
备注
This function can be accessed by:
mdb.models[name].EquallySpacedAmplitude session.odbs[name].EquallySpacedAmplitude
- 参数:¶
- name¶
A String specifying the repository key.
- fixedInterval¶
A Float specifying the fixed time interval at which the amplitude data are given. Possible values are positive numbers.
- data¶
A sequence of Floats specifying the amplitude values.
- begin=
0
¶ A Float specifying the time at which the first amplitude data are given. Possible values are non-negative numbers. The default value is 0.0.
- smooth=
SOLVER_DEFAULT
¶ The SymbolicConstant SOLVER_DEFAULT or a Float specifying the degree of smoothing. Possible float values are 0 ≤ smoothing ≤ 0.5. If smooth = SOLVER_DEFAULT, the default degree of smoothing will be determined by the solver. The default value is SOLVER_DEFAULT.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
An EquallySpacedAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- ModulatedAmplitude(
- name,
- initial,
- magnitude,
- start,
- frequency1,
- frequency2,
- timeSpan=
STEP
, This method creates a ModulatedAmplitude object.
备注
This function can be accessed by:
mdb.models[name].ModulatedAmplitude session.odbs[name].ModulatedAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- initial¶
A Float specifying the constant A0A0.
- magnitude¶
A Float specifying the coefficient AA.
- start¶
A Float specifying the starting time t0t0. Possible values are non-negative numbers.
- frequency1¶
A Float specifying the circular frequency 1 (ω1ω1). Possible values are positive numbers.
- frequency2¶
A Float specifying the circular frequency 2 (ω2ω2). Possible values are positive numbers.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A ModulatedAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
-
PeriodicAmplitude(name, frequency, start, a_0, data, timeSpan=
STEP
)[源代码]¶ This method creates a PeriodicAmplitude object.
备注
This function can be accessed by:
mdb.models[name].PeriodicAmplitude session.odbs[name].PeriodicAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- frequency¶
A Float specifying the circular frequency ωω. Possible values are positive numbers.
- start¶
A Float specifying the starting time t0t0. Possible values are positive numbers.
- a_0¶
A Float specifying the constant A0A0.
- data¶
A sequence of pairs of Floats specifying AiAi and BiBi pairs.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A PeriodicAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- PsdDefinition(
- name,
- data,
- unitType=
FORCE
, - referenceGravityAcceleration=
1
, - referenecePower=
0
, - user=
0
, - timeSpan=
STEP
, - amplitude=
''
, This method creates a PsdDefinition object.
备注
This function can be accessed by:
mdb.models[name].PsdDefinition session.odbs[name].PsdDefinition
备注
- 参数:¶
- name¶
A String specifying the repository key.
- data¶
A sequence of sequences of Floats specifying the real part of the frequency function, the imaginary part of the frequency function, and the frequency or frequency band number values, depending on the value of unitType.
- unitType=
FORCE
¶ A SymbolicConstant specifying the type of units for specifying the frequency function. FORCE implies power units. BASE implies gravity used to define base motion. DB implies decibel units. Possible values are FORCE, BASE, and DB. The default value is FORCE.
- referenceGravityAcceleration=
1
¶ A Float specifying the reference gravity acceleration. This argument applies when unitType = BASE. The default value is 1.0.
- referenecePower=
0
¶ A Float specifying the reference power value, in load units squared. This argument applies when unitType = DB. The default value is 0.0.
- user=
0
¶ A Boolean specifying whether the frequency function is defined in user subroutine UPSD. If specified, then data is not applicable, and the unitType value must not be DB. The default value is OFF.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- amplitude=
''
¶ A String specifying the name of the amplitude that describes the dynamic event used to define the cross-spectral density frequency function. The default value is an empty string.
- 返回:¶
A PsdDefinition object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
-
SmoothStepAmplitude(name, data, timeSpan=
STEP
)[源代码]¶ This method creates a SmoothStepAmplitude object.
备注
This function can be accessed by:
mdb.models[name].SmoothStepAmplitude session.odbs[name].SmoothStepAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- data¶
A sequence of pairs of Floats specifying time/frequency and amplitude pairs. Possible values for time/frequency are positive numbers.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A SmoothStepAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- SolutionDependentAmplitude( )[源代码]¶
This method creates a SolutionDependentAmplitude object.
备注
This function can be accessed by:
mdb.models[name].SolutionDependentAmplitude session.odbs[name].SolutionDependentAmplitude
- 参数:¶
- name¶
A String specifying the repository key.
- initial=
1
¶ A Float specifying the initial amplitude value. Possible values are those between minimum and maximum. The default value is 1.0.
- minimum=
0
¶ A Float specifying the minimum amplitude value. Possible values are those smaller than maximum and initial. The default value is 0.1.
- maximum=
1000
¶ A Float specifying the maximum amplitude value. Possible values are those larger than minimum and initial. The default value is 1000.0.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A SolutionDependentAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
- SpectrumAmplitude(
- name,
- method,
- data,
- specificationUnits=
ACCELERATION
, - eventUnits=
EVENT_ACCELERATION
, - solution=
ABSOLUTE_VALUE
, - timeIncrement=
0
, - gravity=
1
, - criticalDamping=
0
, - timeSpan=
STEP
, - amplitude=
''
, This method creates a SpectrumAmplitude object.
备注
This function can be accessed by:
mdb.models[name].SpectrumAmplitude session.odbs[name].SpectrumAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- method¶
A SymbolicConstant specifying the method for specifying the spectrum. Possible values are DEFINE and CALCULATE.
- data¶
A sequence of sequences of Floats specifying the magnitude, frequency, and damping values.
- specificationUnits=
ACCELERATION
¶ A SymbolicConstant specifying the units used for specifying the spectrum. Possible values are DISPLACEMENT, VELOCITY, ACCELERATION, and GRAVITY. The default value is ACCELERATION.
- eventUnits=
EVENT_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.
- solution=
ABSOLUTE_VALUE
¶ A SymbolicConstant specifying the solution method for the dynamic equations. Possible values are ABSOLUTE_VALUE and RELATIVE_VALUE. The default value is ABSOLUTE_VALUE.
- timeIncrement=
0
¶ 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.
- gravity=
1
¶ A Float specifying the acceleration due to gravity. This argument applies only when specificationUnits = GRAVITY or*eventUnits* = GRAVITY. The default value is 1.0.
- criticalDamping=
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.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- amplitude=
''
¶ 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.
- 返回:¶
A SpectrumAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
-
TabularAmplitude(name, data, smooth=
SOLVER_DEFAULT
, timeSpan=STEP
)[源代码]¶ This method creates a TabularAmplitude object.
备注
This function can be accessed by:
mdb.models[name].TabularAmplitude session.odbs[name].TabularAmplitude
备注
- 参数:¶
- name¶
A String specifying the repository key.
- data¶
A sequence of pairs of Floats specifying time/frequency and amplitude pairs. Possible values for time/frequency are positive numbers.
- smooth=
SOLVER_DEFAULT
¶ The SymbolicConstant SOLVER_DEFAULT or a Float specifying the degree of smoothing. Possible float values are between 0 and 0.5. If smooth = SOLVER_DEFAULT, the default degree of smoothing will be determined by the solver. The default value is SOLVER_DEFAULT.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- 返回:¶
A TabularAmplitude object.
- 返回类型:¶
- 抛出:¶
InvalidNameError –
RangeError –
-
ActuatorAmplitude(name, timeSpan=
Other Classes¶
-
class ActuatorAmplitude(name, timeSpan=
STEP
)[源代码]¶ 基类:
Amplitude
The ActuatorAmplitude object defines an actuator amplitude curve. The ActuatorAmplitude object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
AMPLITUDE
备注
Member Details:
- class Amplitude[源代码]¶
基类:
object
The Amplitude object is the abstract base type for other Amplitude objects. The Amplitude object has no explicit constructor. The methods and members of the Amplitude object are common to all objects derived from the Amplitude.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
备注
Member Details:
-
class DecayAmplitude(name, initial, maximum, start, decayTime, timeSpan=
STEP
)[源代码]¶ 基类:
Amplitude
The DecayAmplitude object defines an amplitude curve using an exponential decay. The DecayAmplitude object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
AMPLITUDE
备注
Member Details:
- decayTime : --is-rst--:py:class:`float`[源代码]¶
A Float specifying the decay time tdtd. Possible values are non-negative numbers.
- class EquallySpacedAmplitude( )[源代码]¶
基类:
Amplitude
The EquallySpacedAmplitude object defines a list of amplitude values at fixed time intervals beginning at a specified value of time. The EquallySpacedAmplitude object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
AMPLITUDE
Member Details:
-
baselineCorrection : --is-rst--:py:class:`~abaqus.Amplitude.BaselineCorrection.BaselineCorrection` =
<abaqus.Amplitude.BaselineCorrection.BaselineCorrection object>
[源代码]¶ A BaselineCorrection object.
-
begin : --is-rst--:py:class:`float` =
0
[源代码]¶ A Float specifying the time at which the first amplitude data are given. Possible values are non-negative numbers. The default value is 0.0.
-
data : --is-rst--:py:class:`tuple`\ \[:py:class:`float`, :py:data:`...<Ellipsis>`] =
()
[源代码]¶ A sequence of Floats specifying the amplitude values.
- fixedInterval : --is-rst--:py:class:`float`[源代码]¶
A Float specifying the fixed time interval at which the amplitude data are given. Possible values are positive numbers.
-
setValues(begin=
0
, smooth=SOLVER_DEFAULT
, timeSpan=STEP
)[源代码]¶ This method modifies the EquallySpacedAmplitude object.
- 参数:¶
- begin=
0
¶ A Float specifying the time at which the first amplitude data are given. Possible values are non-negative numbers. The default value is 0.0.
- smooth=
SOLVER_DEFAULT
¶ The SymbolicConstant SOLVER_DEFAULT or a Float specifying the degree of smoothing. Possible float values are 0 ≤ smoothing ≤ 0.5. If smooth = SOLVER_DEFAULT, the default degree of smoothing will be determined by the solver. The default value is SOLVER_DEFAULT.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- begin=
- 抛出:¶
RangeError –
-
smooth : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant`, :py:class:`float`] =
'SOLVER_DEFAULT'
[源代码]¶ The SymbolicConstant SOLVER_DEFAULT or a Float specifying the degree of smoothing. Possible float values are 0 ≤ smoothing ≤ 0.5. If smooth = SOLVER_DEFAULT, the default degree of smoothing will be determined by the solver. The default value is SOLVER_DEFAULT.
-
class ModulatedAmplitude(name, initial, magnitude, start, frequency1, frequency2, timeSpan=
STEP
)[源代码]¶ 基类:
Amplitude
The ModulatedAmplitude object defines a modulated amplitude curve. The ModulatedAmplitude object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
AMPLITUDE
备注
Member Details:
- frequency1 : --is-rst--:py:class:`float`[源代码]¶
A Float specifying the circular frequency 1 (ω1ω1). Possible values are positive numbers.
- frequency2 : --is-rst--:py:class:`float`[源代码]¶
A Float specifying the circular frequency 2 (ω2ω2). Possible values are positive numbers.
-
class PeriodicAmplitude(name, frequency, start, a_0, data, timeSpan=
STEP
)[源代码]¶ 基类:
Amplitude
The PeriodicAmplitude object defines an amplitude curve using a Fourier series. The PeriodicAmplitude object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
AMPLITUDE
备注
Member Details:
-
data : --is-rst--:py:class:`tuple`\ \[:py:class:`tuple`\ \[:py:class:`float`, :py:class:`float`], :py:data:`...<Ellipsis>`] =
()
[源代码]¶ A sequence of pairs of Floats specifying AiAi and BiBi pairs.
- frequency : --is-rst--:py:class:`float`[源代码]¶
A Float specifying the circular frequency ωω. Possible values are positive numbers.
- class PsdDefinition(
- name,
- data,
- unitType=
FORCE
, - referenceGravityAcceleration=
1
, - referenecePower=
0
, - user=
0
, - timeSpan=
STEP
, - amplitude=
''
, 基类:
Amplitude
The PsdDefinition object defines the cross-spectral density frequency function for random response loading. The PsdDefinition object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
PSD-DEFINITION
备注
Member Details:
-
amplitude : --is-rst--:py:class:`str` =
''
[源代码]¶ A String specifying the name of the amplitude that describes the dynamic event used to define the cross-spectral density frequency function. The default value is an empty string.
-
data : --is-rst--:py:class:`tuple`\ \[:py:class:`tuple`\ \[:py:class:`float`, :py:data:`...<Ellipsis>`], :py:data:`...<Ellipsis>`] =
()
[源代码]¶ A sequence of sequences of Floats specifying the real part of the frequency function, the imaginary part of the frequency function, and the frequency or frequency band number values, depending on the value of unitType.
-
referenceGravityAcceleration : --is-rst--:py:class:`float` =
1
[源代码]¶ A Float specifying the reference gravity acceleration. This argument applies when unitType = BASE. The default value is 1.0.
-
referenecePower : --is-rst--:py:class:`float` =
0
[源代码]¶ A Float specifying the reference power value, in load units squared. This argument applies when unitType = DB. The default value is 0.0.
- setValues(
- unitType=
FORCE
, - referenceGravityAcceleration=
1
, - referenecePower=
0
, - user=
0
, - timeSpan=
STEP
, - amplitude=
''
, This method modifies the PsdDefinition object.
- 参数:¶
- unitType=
FORCE
¶ A SymbolicConstant specifying the type of units for specifying the frequency function. FORCE implies power units. BASE implies gravity used to define base motion. DB implies decibel units. Possible values are FORCE, BASE, and DB. The default value is FORCE.
- referenceGravityAcceleration=
1
¶ A Float specifying the reference gravity acceleration. This argument applies when unitType = BASE. The default value is 1.0.
- referenecePower=
0
¶ A Float specifying the reference power value, in load units squared. This argument applies when unitType = DB. The default value is 0.0.
- user=
0
¶ A Boolean specifying whether the frequency function is defined in user subroutine UPSD. If specified, then data is not applicable, and the unitType value must not be DB. The default value is OFF.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- amplitude=
''
¶ A String specifying the name of the amplitude that describes the dynamic event used to define the cross-spectral density frequency function. The default value is an empty string.
- unitType=
- 抛出:¶
RangeError –
-
timeSpan : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant` =
'STEP'
[源代码]¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
-
unitType : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant` =
'FORCE'
[源代码]¶ A SymbolicConstant specifying the type of units for specifying the frequency function. FORCE implies power units. BASE implies gravity used to define base motion. DB implies decibel units. Possible values are FORCE, BASE, and DB. The default value is FORCE.
-
user : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
0
[源代码]¶ A Boolean specifying whether the frequency function is defined in user subroutine UPSD. If specified, then data is not applicable, and the unitType value must not be DB. The default value is OFF.
-
class SmoothStepAmplitude(name, data, timeSpan=
STEP
)[源代码]¶ 基类:
Amplitude
The SmoothStepAmplitude object defines an amplitude that ramps up or down smoothly from one data point to another. The SmoothStepAmplitude object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
AMPLITUDE
备注
Member Details:
-
data : --is-rst--:py:class:`tuple`\ \[:py:class:`tuple`\ \[:py:class:`float`, :py:class:`float`], :py:data:`...<Ellipsis>`] =
()
[源代码]¶ A sequence of pairs of Floats specifying time/frequency and amplitude pairs. Possible values for time/frequency are positive numbers.
-
class SolutionDependentAmplitude(name, initial=
1
, minimum=0
, maximum=1000
, timeSpan=STEP
)[源代码]¶ 基类:
Amplitude
The SolutionDependentAmplitude object defines a solution-dependent amplitude for superplastic forming analysis. The SolutionDependentAmplitude object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
AMPLITUDE
Member Details:
-
initial : --is-rst--:py:class:`float` =
1
[源代码]¶ A Float specifying the initial amplitude value. Possible values are those between minimum and maximum. The default value is 1.0.
-
maximum : --is-rst--:py:class:`float` =
1000
[源代码]¶ A Float specifying the maximum amplitude value. Possible values are those larger than minimum and initial. The default value is 1000.0.
-
minimum : --is-rst--:py:class:`float` =
0
[源代码]¶ A Float specifying the minimum amplitude value. Possible values are those smaller than maximum and initial. The default value is 0.1.
-
setValues(initial=
1
, minimum=0
, maximum=1000
, timeSpan=STEP
)[源代码]¶ This method modifies the SolutionDependentAmplitude object.
- 参数:¶
- initial=
1
¶ A Float specifying the initial amplitude value. Possible values are those between minimum and maximum. The default value is 1.0.
- minimum=
0
¶ A Float specifying the minimum amplitude value. Possible values are those smaller than maximum and initial. The default value is 0.1.
- maximum=
1000
¶ A Float specifying the maximum amplitude value. Possible values are those larger than minimum and initial. The default value is 1000.0.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- initial=
- 抛出:¶
RangeError –
- class SpectrumAmplitude(
- name,
- method,
- data,
- specificationUnits=
ACCELERATION
, - eventUnits=
EVENT_ACCELERATION
, - solution=
ABSOLUTE_VALUE
, - timeIncrement=
0
, - gravity=
1
, - criticalDamping=
0
, - timeSpan=
STEP
, - amplitude=
''
, 基类:
Amplitude
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.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
SPECTRUM
备注
Member Details:
-
amplitude : --is-rst--:py:class:`str` =
''
[源代码]¶ 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.
-
criticalDamping : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
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.
-
data : --is-rst--:py:class:`tuple`\ \[:py:class:`tuple`\ \[:py:class:`float`, :py:data:`...<Ellipsis>`], :py:data:`...<Ellipsis>`] =
()
[源代码]¶ A sequence of sequences of Floats specifying the magnitude, frequency, and damping values.
-
eventUnits : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant` =
'EVENT_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.
-
gravity : --is-rst--:py:class:`float` =
1
[源代码]¶ A Float specifying the acceleration due to gravity. This argument applies only when specificationUnits = GRAVITY or*eventUnits* = GRAVITY. The default value is 1.0.
- method : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant`[源代码]¶
A SymbolicConstant specifying the method for specifying the spectrum. Possible values are DEFINE and CALCULATE.
- setValues(
- specificationUnits=
ACCELERATION
, - eventUnits=
EVENT_ACCELERATION
, - solution=
ABSOLUTE_VALUE
, - timeIncrement=
0
, - gravity=
1
, - criticalDamping=
0
, - timeSpan=
STEP
, - amplitude=
''
, This method modifies the SpectrumAmplitude object.
- 参数:¶
- specificationUnits=
ACCELERATION
¶ A SymbolicConstant specifying the units used for specifying the spectrum. Possible values are DISPLACEMENT, VELOCITY, ACCELERATION, and GRAVITY. The default value is ACCELERATION.
- eventUnits=
EVENT_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.
- solution=
ABSOLUTE_VALUE
¶ A SymbolicConstant specifying the solution method for the dynamic equations. Possible values are ABSOLUTE_VALUE and RELATIVE_VALUE. The default value is ABSOLUTE_VALUE.
- timeIncrement=
0
¶ 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.
- gravity=
1
¶ A Float specifying the acceleration due to gravity. This argument applies only when specificationUnits = GRAVITY or*eventUnits* = GRAVITY. The default value is 1.0.
- criticalDamping=
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.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- amplitude=
''
¶ 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.
- specificationUnits=
- 抛出:¶
RangeError –
-
solution : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant` =
'ABSOLUTE_VALUE'
[源代码]¶ A SymbolicConstant specifying the solution method for the dynamic equations. Possible values are ABSOLUTE_VALUE and RELATIVE_VALUE. The default value is ABSOLUTE_VALUE.
-
specificationUnits : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant` =
'ACCELERATION'
[源代码]¶ A SymbolicConstant specifying the units used for specifying the spectrum. Possible values are DISPLACEMENT, VELOCITY, ACCELERATION, and GRAVITY. The default value is ACCELERATION.
-
class TabularAmplitude(name, data, smooth=
SOLVER_DEFAULT
, timeSpan=STEP
)[源代码]¶ 基类:
Amplitude
The TabularAmplitude object defines an amplitude curve as a table of values at convenient points on the time scale. The TabularAmplitude object is derived from the Amplitude object.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name] import odbAmplitude session.odbs[name].amplitudes[name]
The corresponding analysis keywords are:
AMPLITUDE
备注
Member Details:
-
baselineCorrection : --is-rst--:py:class:`~abaqus.Amplitude.BaselineCorrection.BaselineCorrection` =
<abaqus.Amplitude.BaselineCorrection.BaselineCorrection object>
[源代码]¶ A BaselineCorrection object.
-
data : --is-rst--:py:class:`tuple`\ \[:py:class:`tuple`\ \[:py:class:`float`, :py:class:`float`], :py:data:`...<Ellipsis>`] =
()
[源代码]¶ A sequence of pairs of Floats specifying time/frequency and amplitude pairs. Possible values for time/frequency are positive numbers.
-
setValues(smooth=
SOLVER_DEFAULT
, timeSpan=STEP
)[源代码]¶ This method modifies the TabularAmplitude object.
- 参数:¶
- smooth=
SOLVER_DEFAULT
¶ The SymbolicConstant SOLVER_DEFAULT or a Float specifying the degree of smoothing. Possible float values are between 0 and 0.5. If smooth = SOLVER_DEFAULT, the default degree of smoothing will be determined by the solver. The default value is SOLVER_DEFAULT.
- timeSpan=
STEP
¶ A SymbolicConstant specifying the time span of the amplitude. Possible values are STEP and TOTAL. The default value is STEP.
- smooth=
- 抛出:¶
RangeError –
-
smooth : --is-rst--:py:data:`~typing.Union`\ \[:py:data:`~typing.Literal`\ \[``SOLVER_DEFAULT``], :py:class:`float`] =
'SOLVER_DEFAULT'
[源代码]¶ The SymbolicConstant SOLVER_DEFAULT or a Float specifying the degree of smoothing. Possible float values are between 0 and 0.5. If smooth = SOLVER_DEFAULT, the default degree of smoothing will be determined by the solver. The default value is SOLVER_DEFAULT.
-
class BaselineCorrection(intervals=
()
)[源代码]¶ 基类:
object
The BaselineCorrection object modifies an acceleration history to minimize the overall drift of the displacement obtained from the time integration of the given acceleration.
备注
This object can be accessed by:
import amplitude mdb.models[name].amplitudes[name].baselineCorrection import odbAmplitude session.odbs[name].amplitudes[name].baselineCorrection
The corresponding analysis keywords are:
BASELINE CORRECTION
备注
Member Details:
- class Correlation[源代码]¶
基类:
Amplitude
A Correlation is an object used to define the cross-correlation as part of the definition of random loading. The Correlation object is derived from the Amplitude object.
备注
This object can be accessed by:
import load mdb.models[name].boundaryConditions[name].correlation[i]
备注
Member Details:
-
approach : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant` =
'CORRELATED'
[源代码]¶ A SymbolicConstant specifying the approach used in the correlation data representation. Possible values are CORRELATED, MOVING_NOISE, UNCORRELATED, and USER. The default value is CORRELATED.
-
data : --is-rst--:py:class:`tuple`\ \[:py:class:`tuple`\ \[:py:class:`float`, :py:data:`...<Ellipsis>`], :py:data:`...<Ellipsis>`] =
()
[源代码]¶ A tuple of tuples of Floats specifying the real and imaginary part of the scaling factor. If approach = MOVING_NOISE, then data represents the noise velocity components 1, 2, and 3.
-
approach : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant` =