You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
d = k_volume_damping*sqrt(abs(2*L/(V*max(density_derp_h, 1e-10)))) "Friction factor for coupled boundaries"
k_volume_damping "Damping factor multiplicator"
density_derp_h "Partial derivative of density by pressure at constant specific enthalpy"
in ThermofluidStream.Boundaries.Internal.PartialVolume is in my opinion not fully intuitive/not complete correct:
For an incompressible fluid + ThermofluidStream.Boundaries.Reservoir one can obtain k_volume_damping = sqrt(2)*D, with damping ratio D, i.e. k_volume_damping = sqrt(2) yields critical damping.
For an ideal gas, i.e. ThermofluidStream.Media.myMedia.Air.DryAirNasa, + ThermofluidStream.Boundaries.Volume one can obtain density_derp_h = cp/(R^2*T) = kappa/((kappa-1)*R*T) = kappa^2/((kappa-1)*a^2), with velocity of sound a, such that k_volume_damping = sqrt(2)*D*sqrt(density_derp_h/a^2) = sqrt(2)*D*kappa/(kappa-1), i.e. k_volume_damping = sqrt(2)*kappa/sqrt(kappa-1) yields critical damping.
Hence i would change:
k_volume_damping to damping ratio D
density_derp_h to velocity of sound a (partial derivative of pressure by density (commonly at constant specific entropy))
Of course we could also try to use Bessel filter or other filter characteristics.
And i would recommend to enhance the docu....
The text was updated successfully, but these errors were encountered:
The definition/use of:
d = k_volume_damping*sqrt(abs(2*L/(V*max(density_derp_h, 1e-10)))) "Friction factor for coupled boundaries"
k_volume_damping "Damping factor multiplicator"
density_derp_h "Partial derivative of density by pressure at constant specific enthalpy"
in
ThermofluidStream.Boundaries.Internal.PartialVolume
is in my opinion not fully intuitive/not complete correct:ThermofluidStream.Boundaries.Reservoir
one can obtaink_volume_damping = sqrt(2)*D
, with damping ratioD
, i.e.k_volume_damping = sqrt(2)
yields critical damping.ThermofluidStream.Media.myMedia.Air.DryAirNasa
, +ThermofluidStream.Boundaries.Volume
one can obtaindensity_derp_h = cp/(R^2*T) = kappa/((kappa-1)*R*T) = kappa^2/((kappa-1)*a^2)
, with velocity of sounda
, such thatk_volume_damping = sqrt(2)*D*sqrt(density_derp_h/a^2) = sqrt(2)*D*kappa/(kappa-1)
, i.e.k_volume_damping = sqrt(2)*kappa/sqrt(kappa-1)
yields critical damping.Hence i would change:
k_volume_damping
to damping ratioD
density_derp_h
to velocity of sounda
(partial derivative of pressure by density (commonly at constant specific entropy))Of course we could also try to use Bessel filter or other filter characteristics.
And i would recommend to enhance the docu....
The text was updated successfully, but these errors were encountered: