_LoadCases¶
- class _LoadCases(dll: SofDll)¶
Bases:
objectThe
_LoadCasesclass provides methods and data structure to:access and load the keys
12/LCof the CDB filestore these data in a convenient format
provide access to these data
Not all the information provided by SOFiSTiK are stored and therefore made available. In particular, the information loaded are:
Type of load case (key
KIND)Name of the load case (key
RTEX)SOFiSTiK source program (key
NAME)sum of the reaction forces (keys
RX,RYandRZ)load case factors (keys
fact,factX,factYandfactZ)PLC number (key
PLC)theory (key
THEO)
For details, please refer to SOFiHELP - CDBase.
- get_designation(load_case: int) str¶
Return the designation for the given
load_case. An empty string is returned if theload_caseis not found.
- get_factors(load_case: int) ndarray[tuple[Any, ...], dtype[float64]]¶
Return the factors of the given
load_case. A zero vector is returned if theload_caseis not found.
- get_kind(load_case: int) str¶
Return the kind of the given
load_case. An empty string is returned if theload_caseis not found.
- get_name(load_case: int) str¶
Return the name of the given
load_case. An empty string is returned if theload_caseis not found.
- get_plc(load_case: int) int¶
Return the number of the PLC for the given
load_case.-1is returned if theload_caseis not found.
- get_reactions(load_case: int) ndarray[tuple[Any, ...], dtype[float64]]¶
Return the sum of the reaction forces for the given
load_case. A zero vector is returned if theload_caseis not found.