gemseo_umdo / use_cases / beam_model / core

Hide inherited members

output_data module

The GEMSEO-free version of the output data for the beam use case.

class gemseo_umdo.use_cases.beam_model.core.output_data.BeamModelOutputData(Ux, Uy, Uz, sigma, tau, displ, sigma_vm, w, yz_grid)[source]

Bases: object

Output data of the beam model.

Parameters:
Ux: ndarray[Any, dtype[float]]

The strain energy along the $x$-axis.

Uy: ndarray[Any, dtype[float]]

The strain energy along the $y$-axis.

Uz: ndarray[Any, dtype[float]]

The strain energy along the $z$-axis.

displ: ndarray[Any, dtype[float]]

The displacements at the tip section points.

sigma: ndarray[Any, dtype[float]]

The normal stress at the root section points.

sigma_vm: ndarray[Any, dtype[float]]

The von Mises stress at the root section points.

tau: ndarray[Any, dtype[float]]

The torsional stress at the root section points.

w: float

The weight of the beam.

yz_grid: ndarray[Any, dtype[float]]

The $yz$-grid coordinates.