From 1f8cfacd84cd1774818b7f259270fab49d1e9d5b Mon Sep 17 00:00:00 2001 From: Robin Steuteville Date: Fri, 23 Feb 2024 13:56:39 -0700 Subject: [PATCH] seeing if full tests run with small rust change --- rust/fastsim-core/src/thermal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/fastsim-core/src/thermal.rs b/rust/fastsim-core/src/thermal.rs index 8eca94cf..f268e1a6 100644 --- a/rust/fastsim-core/src/thermal.rs +++ b/rust/fastsim-core/src/thermal.rs @@ -408,7 +408,7 @@ impl SimDriveHot { / (1.0 + self.state.fc_lambda * self.sd.props.fuel_afr_stoich), ); - // limited between 0 and 1, but should really not get near 1 + // Limited between 0 and 1, but should really not get near 1 self.state.fc_qdot_per_net_heat = (self.vehthrm.fc_coeff_from_comb * (self.state.fc_te_adiabatic_deg_c - self.state.fc_te_deg_c)) .min(1.0)