get_sensitivity_responses

opstool.post.get_sensitivity_responses(odb_tag, resp_type=None, print_info=True, lazy_load=False)[source]

Read sensitivity responses data from a file.

Return type:

Dataset

Parameters

odb_tag: Union[int, str], default: one

Tag of output databases (ODB) to be read.

resp_type: str, default: None

Type of response to be read. Optional:

  • “disp” - Displacement at the node.

  • “vel” - Velocity at the node.

  • “accel” - Acceleration at the node.

  • “pressure” - Pressure applied to the node.

  • “lambda” - Multiplier in load patterns.

  • If None, return all responses.

print_info: bool, default: True

Whether to print information.

lazy_load: bool, default: False, added since version 1.0.25.

Whether to lazy load the data. If True, the data will be loaded on demand, which can save memory for large datasets. If False, the data will be fully loaded into memory. If you have enough memory, it is recommended to set this parameter to False for faster and safer data access.

Returns

SensResp: xarray.Dataset

Sensitivity responses’ data.