diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 15:30:53 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 15:30:53 -0500 |
| commit | cd1d768b5dbdca6ce714bcb05ef55ab79c983686 (patch) | |
| tree | d1c7c9253ed30aecf91ee3ddd86162b412c8e8a9 /ui.c | |
| parent | 331a6e4e536c329371ad23650876364d87fd9561 (diff) | |
| download | volute-cd1d768b5dbdca6ce714bcb05ef55ab79c983686.zip | |
add intercooler efficiency input
Diffstat (limited to 'ui.c')
| -rw-r--r-- | ui.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -194,6 +194,11 @@ set_comp_efficiency(UI *ui, int idx) { } void +set_intercooler_efficiency(UI *ui, int idx) { + ui->points[idx].intercooler_efficiency = percent(ui->intercooler_efficiency[idx].value); +} + +void set_volume_flow_rate(UI *ui, int idx) { int unit_idx; VolumeFlowRateReader convert; |