Skip to content

Commit

Permalink
reduced te_deadband
Browse files Browse the repository at this point in the history
  • Loading branch information
calbaker committed Feb 3, 2025
1 parent 5f53a04 commit 85c341b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ cabin:
hvac:
LumpedCabin:
te_set_kelvin: 295.15
te_deadband_kelvin: 1.5
te_deadband_kelvin: 0.5
p_watts_per_kelvin: 100.0
i: 50.0
# TODO: bump this up
Expand Down
2 changes: 1 addition & 1 deletion fastsim-core/src/vehicle/hvac/hvac_sys_for_lumped_cabin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl Default for HVACSystemForLumpedCabin {
fn default() -> Self {
Self {
te_set: Some(*TE_STD_AIR),
te_deadband: 1.5 * uc::KELVIN_INT,
te_deadband: 0.5 * uc::KELVIN_INT,
p: Default::default(),
i: Default::default(),
d: Default::default(),
Expand Down

0 comments on commit 85c341b

Please sign in to comment.