18auto shamphys::HydroSoundwave::get_value(
f64 t,
f64 x) -> field_val {
19 static constexpr std::complex<double> i(0.0, 1.0);
21 std::complex<f64> val = std::exp(i * (get_omega() * t - k * x));
23 return {std::real(val * rho_tilde), std::real(val * v_tilde)};
double f64
Alias for double.