chore: sync project state and current artifacts
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
//! C1-continuous damping to prevent NaN values in derivative properties (Cp, Cv, etc.)
|
||||
//! that diverge near the critical point.
|
||||
|
||||
use crate::types::{CriticalPoint, FluidId, Property, FluidState};
|
||||
use crate::types::{CriticalPoint, FluidId, FluidState, Property};
|
||||
|
||||
/// Parameters for critical point damping.
|
||||
#[derive(Debug, Clone)]
|
||||
@@ -434,8 +434,7 @@ mod tests {
|
||||
for d in distances {
|
||||
let t = 304.13 * (1.0 + d);
|
||||
let p = 7.3773e6 * (1.0 + d);
|
||||
let state =
|
||||
FluidState::from_pt(Pressure::from_pascals(p), Temperature::from_kelvin(t));
|
||||
let state = FluidState::from_pt(Pressure::from_pascals(p), Temperature::from_kelvin(t));
|
||||
let damping = calculate_damping_state(&FluidId::new("CO2"), &state, &cp, ¶ms);
|
||||
|
||||
let blend = damping.blend_factor;
|
||||
|
||||
Reference in New Issue
Block a user