use PI;
use crateAsNumeric;
/// Compute the angular frequency (omega) value.
///
/// # Description
///
/// Computes the angular frequency, omega (ω), using the following equation:
///
/// ```text
/// ω = 2π/T
/// ```
///
/// Where `T` is the period.
///
/// # Arguments
///
/// * `period`: The time period.
///
/// # Returns
///
/// * `f64`: The omega (ω) value.