-
Notifications
You must be signed in to change notification settings - Fork 0
/
ELAFish.quantity.msl
476 lines (417 loc) · 12.4 KB
/
ELAFish.quantity.msl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
// -----------------------------------------------------------------------
// HEMMIS - Ghent University, BIOMATH - Université Laval, modelEAU
// Implementation: Hans Vangheluwe, Peter Vanrolleghem, Henk Vanhooren,
// Jurgen Meirlaen,Frederik Decouttere, Youri Amerlinck
// Frederik De Laender, Ludiwine Clouzot.
// Description: MSL-USER/ELAFish/Quantity definitions
// -----------------------------------------------------------------------
#ifndef ELAFISH_QUANTITY
#define ELAFISH_QUANTITY
// Contains class definitions for the WWTP domain quantities.
// This is far more messy than the equivalent quantity definitions
// for electrical, mechanical, ... domains.
//
// Rather than using concentrations, the generic models
// are expressed in terms of masses and fluxes:
CLASS MassFlux
"Mass per time unit"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "MassFlux";
unit <- "g/d";
interval <- {: lowerBound <- MIN_INF; upperBound <- PLUS_INF :};
nature <- "THROUGH";
:};
CLASS ArealFlux
"Mass per unit of surface and per unit of time"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "ArealFlux";
unit <- "g/(m2*d)";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF :};
:};
// ASM1
// stoichiometric parameters
CLASS YieldForAutotrophicBiomass
"A class for YieldForAutotrophicBiomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Y_A";
unit <- "gCOD/gN";
interval <- {: lowerBound <- 0; upperBound <- 4.57 :};
:};
CLASS YieldForHeterotrophicBiomass
"A class for YieldForHeterotrophicBiomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Y_H";
unit <- "gCOD/gCOD";
interval <- {: lowerBound <- 0; upperBound <- 1 :};
:};
CLASS FractOfBiomassLeadingToPartProd
"Fraction of biomass leading to particulate products"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "F_P";
unit <- "-";
interval <- {: lowerBound <- 0; upperBound <- 1 :};
:};
CLASS MassOfNitrogenPerMassOfCODInBiomass
"Mass of N per mass of COD in biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "I_XB";
unit <- "gN/gCOD";
interval <- {: lowerBound <- 0; upperBound <- 0.2 :};
:};
CLASS MassOfNitrogenPerMassOfCODInProdFromBiomass
"Mass of N per mass of COD in products from biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "I_XP";
unit <- "gN/gCOD";
interval <- {: lowerBound <- 0; upperBound <- 0.2 :};
:};
// kinetic parameters
CLASS MaxSpecifGrowthRateHetero
"Maximum specific growth rate for heterotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Mu_H";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 20 :};
:};
CLASS MaxSpecifGrowthRateAutotr
"Maximum specific growth rate for autotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Mu_A";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 5 :};
:};
CLASS HalfSatCoeff
"Half-saturation coefficient"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_";
unit <- "gCOD/m3";
interval <- {: lowerBound <- 0; upperBound <- 1000000 :};
:};
CLASS HalfSatCoeffForHetero
"Half-saturation coefficient for heterotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_S";
unit <- "gCOD/m3";
interval <- {: lowerBound <- 0; upperBound <- 100 :};
:};
CLASS OxygenHalfSatCoeffForHetero
"Oxygen half-saturation coeff for heterotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_OH";
unit <- "gO2/m3";
interval <- {: lowerBound <- 0; upperBound <- 10 :};
:};
CLASS NitrateHalfSatCoeffForDenitrifHetero
"Nitrate half-saturation coeff for denitrifying heterotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_NO";
unit <- "gNO3-N/m3";
interval <- {: lowerBound <- 0; upperBound <- 2 :};
:};
CLASS OxygenHalfSatCoeffForAutotr
"Oxygen half-saturation coeff for autotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_OA";
unit <- "gO2/m3";
interval <- {: lowerBound <- 0; upperBound <- 10 :};
:};
CLASS AmmonHalfSatCoeffForAutotr
"Ammonium half saturation coeff for autotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_NH";
unit <- "gNH3-N/m3";
interval <- {: lowerBound <- 0; upperBound <- 10 :};
:};
CLASS HalfSatCoeffForHydrolSlowBioDegradeSubstr
"Half saturation constant for hydrolysis of slowly biodegradable substrate"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_X";
unit <- "gCOD/gCOD";
interval <- {: lowerBound <- 0; upperBound <- 1 :};
:};
CLASS MaxSpecificHydrolysisRate
"Maximum specific hydrolysis rate"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_h";
unit <- "gCOD/(gCOD*d)";
interval <- {: lowerBound <- 0; upperBound <- 25 :};
:};
CLASS AmmonificationRate
"Ammonification rate"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_a";
unit <- "m3/(gCOD*d)";
interval <- {: lowerBound <- 0; upperBound <- 0.25 :};
:};
CLASS DecayCoeffHeterotr
"Decay coefficient for heterotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "B_H";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 25 :};
:};
CLASS DecayCoeffAutotr
"Decay coefficient for autotrophic biomass"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "B_A";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 25 :};
:};
// ASM2
CLASS DissolvedComponent
"A class for dissolved components
change quantity in object to specialize
e.g. SO2 for dissolved oxygen"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "S";
unit <- "g/m3";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF :};
nature <- "ACROSS";
:};
CLASS ParticulateComponent
"A class for particulate component
same remark as for DissolvedComponent"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "X";
unit <- "g/m3";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF :};
nature <- "ACROSS";
:};
CLASS ConversionFactor
"A class for typical conversion factors for continuity equations
from ASM2"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "I";
unit <- "g/gCOD";
interval <- {: lowerBound <- 0; upperBound <- 1 :};
:};
CLASS NitrogenConversionFactor
"A class for typical conversion factors of Nitrogen for continuity equations
from ASM2"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "I";
unit <- "gN/gCOD";
interval <- {: lowerBound <- 0; upperBound <- 1 :};
:};
CLASS PhosphorusConversionFactor
"A class for typical conversion factors of Phosphorus for continuity equations
from ASM2"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "I";
unit <- "gP/gCOD";
interval <- {: lowerBound <- 0; upperBound <- 1 :};
:};
CLASS MaxGrowthRate
"Maximum growth rate"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Mu";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 20 :};
:};
CLASS RateConstant
"Rate constant"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Q_or_B_or_K";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 20 :};
:};
CLASS Yield
"A class for Yield"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Yield";
unit <- "-";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF:};
:};
CLASS GrowthRate
"GrowthRate"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "GrowthRate";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 20:};
:};
CLASS Fraction
"Fraction"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Fraction";
unit <- "-";
interval <- {: lowerBound <- 0; upperBound <- 1:};
:};
CLASS SaturationCoefficient
"Saturation coefficient"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K";
unit <- "-";
interval <- {: lowerBound <- 0; upperBound <- 100:};
:};
CLASS DecayCoefficient
"Decay coefficient"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "B";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 20:};
:};
CLASS CorrectionFactor
"CorrectionFactor"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "eta";
unit <- "-";
interval <- {: lowerBound <- 0; upperBound <- 1 :};
:};
CLASS ReductionFactor
"Reductionfactor"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "eta";
unit <- "-";
interval <- {: lowerBound <- 0; upperBound <- 1 :};
:};
CLASS MaxSpecAmmonRate
"Maximum specific ammonification rate"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "MaxSpecAmmonRate";
unit <- "m3/(gCOD*d)";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF:};
:};
CLASS OxygenTransferCoefficient
"Oxygen Transfer Coefficient"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Kla";
unit <- "1/d";
interval <- {: lowerBound <- 0; upperBound <- 5000 :};
:};
CLASS OxygenUptakeRate
"Oxygen Uptake Rate"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "OUR";
unit <- "g/(m3.d)";
:};
CLASS ElectricalEnergy
"A class for electrical energy"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "Electrical energy";
unit <- "kWh";
:};
CLASS Dollar
"dollars"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "dollar";
unit <- "$";
:};
CLASS Euro
"Euro"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "euro";
unit <- "E";
:};
CLASS HenryCoefficient
"A class for the Henry coefficient"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "HenryCoefficient";
unit <- "atm.m3.Mol-1";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF; :};
:};
CLASS MassOfNitrogenPerMassOfCOD
"Mass of N per mass of COD"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "I_";
unit <- "gN/gCOD";
interval <- {: lowerBound <- 0; upperBound <- 0.2; :};
:};
CLASS MolarHalfSatCoeff
"Half-saturation coefficient for components expressed in mol.m-3"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_S_";
unit <- "Mol.m-3";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF; :};
:};
CLASS InhibitionCoeff
"Inhibition coefficient for components expressed in g.m-3"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_I_";
unit <- "g.m-3";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF; :};
:};
CLASS MolarInhibitionCoeff
"Inhibition coefficient for components expressed in mol.m-3"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "K_I_";
unit <- "Mol.m-3";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF; :};
:};
CLASS TemperatureCoefficient
"Temperature coefficient for reaction rate"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "TemperatureCoefficient";
unit <- "-";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF; :};
:};
CLASS MolConcentration
"Concentration in Mol per m3"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "MolConcentration";
unit <- "Mol.m-3";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF; :};
:};
CLASS MolFlowRate
"Gas flow rate in Mol per day"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "MolFlowRate";
unit <- "Mol.d-1";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF; :};
:};
CLASS GasFlowRate
"Gas flow rate in m3 per day"
SPECIALISES PhysicalQuantityType :=
{:
quantity <- "GasFlowRate";
unit <- "m3.d-1";
interval <- {: lowerBound <- 0; upperBound <- PLUS_INF; :};
:};
#endif