diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-04-27 21:47:58 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-04-27 21:47:58 -0400 |
| commit | aa51ee072bd1d8587cc0b38d40c6971bdf5d1c0b (patch) | |
| tree | 4cc7314d8900aaeb31b9c4c4308e6970f262e4d0 /ui.h | |
| parent | 586c2236573d156d8623eff00cef24ac688f88cb (diff) | |
| download | volute-aa51ee072bd1d8587cc0b38d40c6971bdf5d1c0b.zip | |
load compressors
Diffstat (limited to 'ui.h')
| -rw-r--r-- | ui.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -43,9 +43,14 @@ typedef struct { w_Select mass_flow_rate_corrected_unit; w_Number mass_flow_rate_corrected[MAX_POINTS]; + + Compressor *comps; + int ncomps; + w_Select_Compressor comp_select; } UI; -void init_ui(UI *ui); +int init_ui(UI *ui); +void free_ui(UI *ui); void set_displacement(UI *ui); void set_displacement_unit(UI* ui); void set_ambient_temperature(UI *ui); |