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