Skip to content

Commit

Permalink
Don't over reduce 3-4 centrifugal force
Browse files Browse the repository at this point in the history
  • Loading branch information
rnd-ash committed Jun 8, 2024
1 parent 46faec8 commit 9aefc7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pressure_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ float PressureManager::calculate_centrifugal_force_for_clutch(Clutch clutch, uin
if (clutch_factor != 0) {
float density_now = MECH_PTR->atf_density_minus_50c - ((sensor_data->atf_temp + 50) * ((float)(MECH_PTR->atf_density_drop_per_c) / 100.0));
ret = density_now * ((speed * speed) / clutch_factor);
ret /= 1000.0; // To convert to mbar
ret /= 10000.0; // To convert to mbar
}
}
return ret;
Expand Down

0 comments on commit 9aefc7c

Please sign in to comment.