Refine option schema

This commit is contained in:
WQY\qiong
2022-10-22 11:02:05 +08:00
parent b377d5f70c
commit 4ba2e210d8

View File

@@ -7,3 +7,30 @@ create table options
key text not null
, value text not null
);
insert into options (key, value) values
('UNITS', 'GPM')
, ('HEADLOSS', 'H-W')
--, ('HYDRAULICS', '')
, ('VISCOSITY', '1.0')
, ('SPECIFIC GRAVITY', '1.0')
, ('TRIALS', '40')
, ('ACCURACY', '0.001')
, ('FLOWCHANGE', '0')
, ('HEADERROR', '0')
, ('CHECKFREQ', '2')
, ('MAXCHECK', '10')
, ('DAMPLIMIT', '0')
, ('UNBALANCED', 'STOP')
, ('DEMAND MODEL', 'DDA')
, ('MINIMUM PRESSURE', '0')
, ('REQUIRED PRESSURE', '0.1')
, ('PRESSURE EXPONENT', '0.5')
, ('PATTERN', '1')
, ('DEMAND MULTIPLIER', '1.0')
, ('EMITTER EXPONENT', '0.5')
, ('QUALITY', 'NONE')
, ('DIFFUSIVITY', '1.0')
, ('TOLERANCE', '0.01')
--, ('MAP', '')
;