pycatia.abq_automation_interfaces.abqiaabq_steady_state_lin_dyn_step_basic_vb

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.abq_automation_interfaces.abqiaabq_steady_state_lin_dyn_step_basic_vb.ABQIAABQSteadyStateLinDynStepBasicVB(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
ABQAutomationItf.ABQStep
ABQIAABQSteadyStateLinDynStepBasicVB

Interface representing xxx.

Role: Components that implement ABQIAABQSteadyStateLinDynStepBasic are

Do not use the ABQIAABQSteadyStateLinDynStepBasic interface for such and such
ClassReference, Class#MethodReference, #InternalMethod…
add_frequency_data_table(i_lwr_frequency: tuple, i_upr_frequency: tuple, i_nb_points: tuple, i_bias: tuple) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub AddFrequencyDataTable(CATSafeArrayVariant
iLwrFrequency,
CATSafeArrayVariant iUprFrequency,
CATSafeArrayVariant iNbPoints,
CATSafeArrayVariant iBias)

Adds a list of frequency, real and imaginary The number of values in all
the four of the parameters must match. If either list contains extra values,
the extra values are discarded.

Parameters:

iLwrFrequency
The list of lower frequencies.
iUprFrequency
The list of upper frequencies.
iNbPoints
The list of number of points.
iBias
The list of bias.
Parameters:
  • i_lwr_frequency (tuple) –

  • i_upr_frequency (tuple) –

  • i_nb_points (tuple) –

  • i_bias (tuple) –

Return type:

None

add_global_damping(i_alpha: float, i_beta: float, i_structural: float) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub AddGlobalDamping(double iAlpha,
double iBeta,
double iStructural)

Returns or sets Global Damping values.

Returns:
Global Damping values.
Parameters:
  • i_alpha (float) –

  • i_beta (float) –

  • i_structural (float) –

Return type:

None

property boundary_conditions: ABQBoundaryConditions

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property BoundaryConditions() As ABQBoundaryConditions (Read
Only)

Returns the ABQBoundaryConditions container associated with the
step.

Example:
This example retrieves the ABQBoundaryConditions container
abqBCs.

Dim abqSSDStep As ABQSteadStateStep
Dim abqBCs As ABQBoundaryConditions
Set abqBCs = abqSSDStep.BoundaryConditions
Return type:

ABQBoundaryConditions

property description: str

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property Description() As CATBSTR

Returns or sets the description of the Abaqus steady state dynamic
step.

Returns:
The description of the Abaqus steady state dynamic
step.
Return type:

str

property interval_type: int

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property IntervalType() As short

Returns or sets Interval Type.

Returns:
The Interval Type.

Legal values:
1 - Eigenvalue.
2 - Range.

Example:
This example sets the Interval Type as Eigenvalue for
abqSSDStep
abqSSDStep.IntervalType = 1
Return type:

int

property loads: ABQLoads

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property Loads() As ABQLoads (Read Only)

Returns the ABQLoads container associated with the step.

Example:
The following example retrieves the ABQLoads container
abqLoads:

Dim abqSSDStep As ABQSteadStateStep
Dim abqLoads As ABQLoads
Set abqLoads = abqSSDStep.Loads
Return type:

ABQLoads

property scale_type: int

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property ScaleType() As short

Returns or sets Scale Type.

Returns:
The Scale Type.

Legal values:
1 - Logarithmic.
2 - Linear.

Example:
This example sets the Scale Type as Logarithmic for
abqSSDStep
abqSSDStep.ScaleType = 1
Return type:

int