dampopt#
- DynamicOptions.dampopt(option='', value='', **kwargs)#
Sets damped eigensolver options.
Mechanical APDL Command: DAMPOPT
Command default:
By default, the shift strategy is not activated for the damped eigensolver. This ensures a faster solve process but limits the number of eigenvalues that can be found.
The default memory allocation strategy is used. Mechanical APDL evaluates the resources of the machine to choose the in-core or out-of-core mode.
- Parameters:
- option
str Damped eigensolver option:
SHIFT- Activate or deactivate the shift strategy of the damped eigensolver to move to a frequency range of interest. TheFREQBvalue of the modopt command is used to choose the first frequency shift (see notes for details).Valid input for
ValuewhenOption= SHIFT:OFF- Do not activate the shift strategy.ON- Activate the shift strategy (default).
MEMORY- Controls the memory allocation strategy for the Damped eigensolver.Valid input for
ValuewhenOption= MEMORY:DEFAULT- Default memory configuration (default). Everything is determined dynamically with respect to current machine resources.INCORE- Fully in-core memory configuration.MIX1- First level of mixed in-core / out-of-core configuration.MIX2- Second level of mixed in-core / out-of-core configuration.OUTOFCORE- Fully out-of-core memory configuration.
- value
str Assigned value for the specified
Option(as described above).
- option
Notes
dampopt specifies options to be used with the damped eigensolver ( modopt,DAMP) during a modal analysis ( antype,MODAL).
Activating the shift strategy (
Option= SHIFT andValue= ON) enables the eigensolver to find higher frequency eigenvalues that might otherwise be missed. The SHIFT option has two objectives:Extract high frequency eigenvalues according to the
FREQBargument specified with modopt.Unlock an auto-shift feature, so the algorithm will chain several analyses automatically then aggregate the solutions in one single results set.
If
FREQEis specified on modopt, the specified value is used to filter the complex eigenfrequencies based on magnitude.When the shift strategy is activated ( dampopt,SHIFT,ON)
and
FREQBon modopt is specified, the damped eigensolver only produces eigenfrequencies with a real part greater thanFREQBand
FREQBon modopt is not specified, the damped eigensolver finds eigenvalues closest to the 0 Hz point.
Memory Allocation Option (
Option= MEMORY)The damped eigensolver algorithm allocates two main pools of memory:
Memory for the internal damped eigensolver iterations.
Memory for the specific damped eigensolver working arrays.
The following table shows how memory is allocated for each option.
This command contains some tables and extra information which can be inspected in the original documentation pointed above.
The MIX1 configuration typically uses more memory than the MIX2 configuration, except when a large number of modes are requested for a small model.
Example Usage