pyyeti.ode.SolveExp2.finalize¶
- SolveExp2.finalize(get_force=False)¶
Finalize time-domain generator solution.
- Parameters:
get_force (bool; optional) – If True, the force entry will be included in the returned data structure.
- Returns:
A record (SimpleNamespace class) with the members
d (2d ndarray) – Displacement; ndof x time
v (2d ndarray) – Velocity; ndof x time
a (2d ndarray) – Acceleration; ndof x time
h (scalar) – Time-step or None
t (1d ndarray) – Time vector: np.arange(d.shape[1])*h
force (2d ndarray; optional) – Force; ndof x time. Only included if get_force is True.