//! Auto-generated module
//!//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
/// Result of a modal analysis.
pubstructModalAnalysis{/// Natural frequencies in Hz (cycles per second), sorted ascending.
pubfrequencies_hz:Vec<f64>,
/// Mode shapes (each is a unit vector of length n_dof), sorted by ascending frequency.
pubmode_shapes:Vec<Vec<f64>>,
/// Natural angular frequencies squared (omega^2), in (rad/s)^2.
pubomega_sq:Vec<f64>,
}/// Convergence diagnostics for subspace iteration.
pubstructSubspaceConvergence{/// Residuals per mode: ||A*v - lambda*v||.
pubresiduals:Vec<f64>,
}