@dnv-plant/typescriptpws 1.0.0-alpha.0 → 1.0.0-alpha.1785261
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +21 -21
- package/src/calculations.ts +5668 -5668
- package/src/constants.ts +311 -311
- package/src/entities.ts +3119 -3119
- package/src/entity-schemas.ts +2880 -2880
- package/src/enums.ts +733 -733
- package/{index.ts → src/index.ts} +14 -14
- package/src/materials.ts +537 -537
- package/src/utilities.ts +217 -217
- package/tsconfig.json +111 -111
package/src/enums.ts
CHANGED
|
@@ -1,734 +1,734 @@
|
|
|
1
|
-
/***********************************************************************
|
|
2
|
-
* This file has been auto-generated by a code generation tool.
|
|
3
|
-
* Version: 1.0.0
|
|
4
|
-
* Date/time: 30 Jan 2025 11:43:06
|
|
5
|
-
* Template: templates/typescriptpws/enums.razor.
|
|
6
|
-
***********************************************************************/
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* The Pasquill atmospheric stability classes, a common method for categorizing the amount of atmospheric turbulence present.
|
|
10
|
-
*/
|
|
11
|
-
export enum AtmosphericStabilityClass {
|
|
12
|
-
/** A - very unstable - sunny, light winds. */
|
|
13
|
-
STABILITY_A = 1,
|
|
14
|
-
|
|
15
|
-
/** A/B - unstable - as with A only less sunny or more windy. */
|
|
16
|
-
STABILITY_AB = 2,
|
|
17
|
-
|
|
18
|
-
/** B - unstable as with A/B only less sunny or more windy. */
|
|
19
|
-
STABILITY_B = 3,
|
|
20
|
-
|
|
21
|
-
/** B/C - moderately unstable - moderate sun and moderate wind. */
|
|
22
|
-
STABILITY_BC = 4,
|
|
23
|
-
|
|
24
|
-
/** C - moderately unstable - very windy/sunny or overcast/light wind. */
|
|
25
|
-
STABILITY_C = 5,
|
|
26
|
-
|
|
27
|
-
/** C/D - moderately unstable - moderate sun and high wind. */
|
|
28
|
-
STABILITY_CD = 6,
|
|
29
|
-
|
|
30
|
-
/** D - neutral - little sun and high wind or overcast/windy night. */
|
|
31
|
-
STABILITY_D = 7,
|
|
32
|
-
|
|
33
|
-
/** E - moderately stable - less overcast and less windy night than D. */
|
|
34
|
-
STABILITY_E = 8,
|
|
35
|
-
|
|
36
|
-
/** F - stable - night with moderate clouds and light/moderate wind. */
|
|
37
|
-
STABILITY_F = 9,
|
|
38
|
-
|
|
39
|
-
/** G - very stable - possibly fog. */
|
|
40
|
-
STABILITY_G = 10,
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* Type of case being run.
|
|
45
|
-
*/
|
|
46
|
-
export enum CaseType {
|
|
47
|
-
/** A storage scenario which models a release of material due to rupture of a short length of pipework attached to a vessel or any kind of pressure reservoir. */
|
|
48
|
-
LINE_RUPTURE = 4,
|
|
49
|
-
|
|
50
|
-
/** A storage scenario which models a release of material from the vapour side of a vessel due to the lifting of a relief valve. */
|
|
51
|
-
RELIEF_VALVE = 3,
|
|
52
|
-
|
|
53
|
-
/** A tank roof fire, represented by a pool fire elevated at the height of the tank. */
|
|
54
|
-
TANK_FIRE = 2,
|
|
55
|
-
|
|
56
|
-
/** Case type has not been set. */
|
|
57
|
-
UNSET = -1,
|
|
58
|
-
|
|
59
|
-
/** An instanaeous release of the entire inventory of an associated vessel, intended to model an incident in which the vessel is destroyed by an impact, a crack, or some other failure which propagates very quickly. */
|
|
60
|
-
VESSEL_CATASTROPHIC_RUPTURE = 1,
|
|
61
|
-
|
|
62
|
-
/** A release of material through a hole in a vessel or pipe. */
|
|
63
|
-
VESSEL_LEAK = 0,
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
/**
|
|
67
|
-
* Type of contour plot or grid.
|
|
68
|
-
*/
|
|
69
|
-
export enum ContourType {
|
|
70
|
-
/** Crosswind (YZ plane). */
|
|
71
|
-
CROSSWIND = 5,
|
|
72
|
-
|
|
73
|
-
/** Flame shape crosswind (YZ plane). */
|
|
74
|
-
FLAME_CROSSWIND = 8,
|
|
75
|
-
|
|
76
|
-
/** Flame shape footprint (XY plane). */
|
|
77
|
-
FLAME_FOOTPRINT = 6,
|
|
78
|
-
|
|
79
|
-
/** Flame shape sideview (XZ plane). */
|
|
80
|
-
FLAME_SIDEVIEW = 7,
|
|
81
|
-
|
|
82
|
-
/** Footprint (XY plane). */
|
|
83
|
-
FOOTPRINT = 1,
|
|
84
|
-
|
|
85
|
-
/** Footprint (XY plane) at a given time. */
|
|
86
|
-
FOOTPRINT_AT_TIME = 2,
|
|
87
|
-
|
|
88
|
-
/** Footprint ellipse (XY plane). */
|
|
89
|
-
FOOTPRINT_ELLIPSE = 3,
|
|
90
|
-
|
|
91
|
-
/** Sideview (XZ plane). */
|
|
92
|
-
SIDEVIEW = 4,
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
/**
|
|
96
|
-
* Whether day or night.
|
|
97
|
-
*/
|
|
98
|
-
export enum DayNight {
|
|
99
|
-
/** Day. */
|
|
100
|
-
DAY = 1,
|
|
101
|
-
|
|
102
|
-
/** Night. */
|
|
103
|
-
NIGHT = 2,
|
|
104
|
-
|
|
105
|
-
/** Day/night flag not set. */
|
|
106
|
-
UNSET = 0,
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
/**
|
|
110
|
-
* Whether the release or cloud is instantaneous, continuous or time-varying.
|
|
111
|
-
*/
|
|
112
|
-
export enum DynamicType {
|
|
113
|
-
/** A release of mass at a rate which does not vary with time. */
|
|
114
|
-
CONTINUOUS = 2,
|
|
115
|
-
|
|
116
|
-
/** A release of the entire mass instantaneously. */
|
|
117
|
-
INSTANTANEOUS = 1,
|
|
118
|
-
|
|
119
|
-
/** A release of mass at a rate which varies with time. */
|
|
120
|
-
TIME_VARYING = 3,
|
|
121
|
-
|
|
122
|
-
/** Unset. */
|
|
123
|
-
UNSET = 0,
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
/**
|
|
127
|
-
* The type of fire that occurs or is modelled.
|
|
128
|
-
*/
|
|
129
|
-
export enum FireType {
|
|
130
|
-
/** A high-velocity burning jet, modelled using the API model, which treats the flame as a banana-shaped plume. */
|
|
131
|
-
APIJET = 3,
|
|
132
|
-
|
|
133
|
-
/** A high-velocity burning jet, modelled using the Cone model, which treats the flame as a tilted cone frustum. */
|
|
134
|
-
CONE_JET = 4,
|
|
135
|
-
|
|
136
|
-
/** A large, intense ball of fire that rises and expands before dissipating. */
|
|
137
|
-
FIREBALL = 1,
|
|
138
|
-
|
|
139
|
-
/** A high-velocity burning jet, modelled using the Miller model, which treats the flame as two straight-line segments, with the first segment projected in the direction of the release and the second segment angled according to the effects of buoyancy and wind. */
|
|
140
|
-
MULTI_POINT_SOURCE_JET = 10,
|
|
141
|
-
|
|
142
|
-
/** No fire occurs or modelled. */
|
|
143
|
-
NO_FIRE = 0,
|
|
144
|
-
|
|
145
|
-
/** An ignited pool of flammable liquid that has accumulated on a surface. */
|
|
146
|
-
POOL = 2,
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
/**
|
|
150
|
-
* Whether a material is flammable, toxic, both or inert.
|
|
151
|
-
*/
|
|
152
|
-
export enum FlammableToxic {
|
|
153
|
-
/** Both. */
|
|
154
|
-
BOTH = 0,
|
|
155
|
-
|
|
156
|
-
/** Flammable. */
|
|
157
|
-
FLAMMABLE = 1,
|
|
158
|
-
|
|
159
|
-
/** Inert. */
|
|
160
|
-
INERT = -2,
|
|
161
|
-
|
|
162
|
-
/** Toxic. */
|
|
163
|
-
TOXIC = -1,
|
|
164
|
-
|
|
165
|
-
/** Option when this field is unset. */
|
|
166
|
-
UNSET = -99,
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
/**
|
|
170
|
-
* Method to describe how phase changes between storage and orifice conditions will be modelled.
|
|
171
|
-
*/
|
|
172
|
-
export enum FlashAtOrifice {
|
|
173
|
-
/** No flashing of liquid (metastable liquid) upstream of the orifice. */
|
|
174
|
-
DISALLOW_LIQUID_FLASH = 2,
|
|
175
|
-
|
|
176
|
-
/** Flashing allowed upstream of the orifice. */
|
|
177
|
-
FLASH_ALLOWED = 1,
|
|
178
|
-
|
|
179
|
-
/** No phase change upstream of the orifice. */
|
|
180
|
-
NO_FLASH_AT_ORIFICE = 0,
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
/**
|
|
184
|
-
* Fluid state specification.
|
|
185
|
-
*/
|
|
186
|
-
export enum FluidSpec {
|
|
187
|
-
/** Specify bubble point at fixed pressure. */
|
|
188
|
-
PBUB = 3,
|
|
189
|
-
|
|
190
|
-
/** Specify dew point at fixed pressure. */
|
|
191
|
-
PDEW = 5,
|
|
192
|
-
|
|
193
|
-
/** Specify pressure and liquid fraction. */
|
|
194
|
-
PLF = 6,
|
|
195
|
-
|
|
196
|
-
/** Specify pressure, temperature and liquid fraction. */
|
|
197
|
-
PTLF = 0,
|
|
198
|
-
|
|
199
|
-
/** Specify bubble point at fixed temperature. */
|
|
200
|
-
TBUB = 2,
|
|
201
|
-
|
|
202
|
-
/** Specify dew point at fixed temperature. */
|
|
203
|
-
TDEW = 4,
|
|
204
|
-
|
|
205
|
-
/** Specify temperature and liquid fraction. */
|
|
206
|
-
TLF = 7,
|
|
207
|
-
|
|
208
|
-
/** Specify temperature and pressure. */
|
|
209
|
-
TP = 1,
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
/**
|
|
213
|
-
* The type of flame produced when a material burns.
|
|
214
|
-
*/
|
|
215
|
-
export enum LuminousSmokyFlame {
|
|
216
|
-
/** Used or compounds with unknown experimental profile for surface emissive power. */
|
|
217
|
-
GENERAL = 2,
|
|
218
|
-
|
|
219
|
-
/** Whether a material would produce luminous flames when burnt. */
|
|
220
|
-
LUMINOUS = 0,
|
|
221
|
-
|
|
222
|
-
/** Non flammable material, so no flames produced. */
|
|
223
|
-
NON_FLAMMABLE = -1,
|
|
224
|
-
|
|
225
|
-
/** Whether a material would produce smoky flames when burnt. */
|
|
226
|
-
SMOKY = 1,
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
/**
|
|
230
|
-
* The multi energy confined method for modelling the effects of explosions.
|
|
231
|
-
*/
|
|
232
|
-
export enum MEConfinedMethod {
|
|
233
|
-
/** A method where the explosion calculations model a single confined source that contains the entire mass of the cloud, with a strength of confinement defined by the ExplosionUniformStrength in the ExplosionParameters. */
|
|
234
|
-
UNIFORM_CONFINED = 3,
|
|
235
|
-
|
|
236
|
-
/** A method where the explosions calculations are based on user-defined confined sources, their explosion strengths and their volumes. */
|
|
237
|
-
USER_DEFINED = 1,
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
/**
|
|
241
|
-
* Method for modelling a mixture.
|
|
242
|
-
*/
|
|
243
|
-
export enum MixtureModelling {
|
|
244
|
-
/** Multi-component multiple aerosol. */
|
|
245
|
-
MC_MULTIPLE_AEROSOL = 3,
|
|
246
|
-
|
|
247
|
-
/** Multi-component single aerosol. */
|
|
248
|
-
MC_SINGLE_AEROSOL = 1,
|
|
249
|
-
|
|
250
|
-
/** Pseudo-component: representing the mixture as a single, averaged component. */
|
|
251
|
-
PC = 0,
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
/**
|
|
255
|
-
* Fluid phase (vapour, liquid or two-phase).
|
|
256
|
-
*/
|
|
257
|
-
export enum Phase {
|
|
258
|
-
/** Liquid. */
|
|
259
|
-
LIQUID = 3,
|
|
260
|
-
|
|
261
|
-
/** Two-phase. */
|
|
262
|
-
TWO_PHASE = 2,
|
|
263
|
-
|
|
264
|
-
/** Unset. */
|
|
265
|
-
UNSET = 0,
|
|
266
|
-
|
|
267
|
-
/** Vapour. */
|
|
268
|
-
VAPOUR = 1,
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
/**
|
|
272
|
-
* Type of pool fire.
|
|
273
|
-
*/
|
|
274
|
-
export enum PoolFireType {
|
|
275
|
-
/** A type of pool fire assumed to take place at the time when the spill rate into the pool is equal to the burn rate of the pool fire. */
|
|
276
|
-
EARLY = 1,
|
|
277
|
-
|
|
278
|
-
/** Immediate pool fire. */
|
|
279
|
-
IMMEDIATE = 0,
|
|
280
|
-
|
|
281
|
-
/** A type of pool fire assumed to occur as a result of delayed ignition, at a time when the pool has reached its maximum radius. */
|
|
282
|
-
LATE = 2,
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
/**
|
|
286
|
-
* Surface onto which the liquid which rains out will spread.
|
|
287
|
-
*/
|
|
288
|
-
export enum PoolSurfaceType {
|
|
289
|
-
/** Concrete. */
|
|
290
|
-
CONCRETE = 3,
|
|
291
|
-
|
|
292
|
-
/** Deep open water. */
|
|
293
|
-
DEEP_OPEN_WATER = 5,
|
|
294
|
-
|
|
295
|
-
/** Deep river. */
|
|
296
|
-
DEEP_RIVER = 7,
|
|
297
|
-
|
|
298
|
-
/** Dry soil. */
|
|
299
|
-
DRY_SOIL = 2,
|
|
300
|
-
|
|
301
|
-
/** Insulated concrete. */
|
|
302
|
-
INSULATED_CONCRETE = 4,
|
|
303
|
-
|
|
304
|
-
/** Shallow open water. */
|
|
305
|
-
SHALLOW_OPEN_WATER = 6,
|
|
306
|
-
|
|
307
|
-
/** Shallow river. */
|
|
308
|
-
SHALLOW_RIVER = 8,
|
|
309
|
-
|
|
310
|
-
/** Wet soil. */
|
|
311
|
-
WET_SOIL = 1,
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
/**
|
|
315
|
-
* The template to be used for the selection of calculation methods for material properties.
|
|
316
|
-
*/
|
|
317
|
-
export enum PropertyTemplate {
|
|
318
|
-
/** Acid association template for modelling reactive Hydrogen Fluoride. */
|
|
319
|
-
ACID_ASSOCIATION = 102,
|
|
320
|
-
|
|
321
|
-
/** Template using the Peng-Robinson cubic equation of state. */
|
|
322
|
-
PENG_ROBINSON = 104,
|
|
323
|
-
|
|
324
|
-
/** Old default Phast property template. */
|
|
325
|
-
PHAST64 = 101,
|
|
326
|
-
|
|
327
|
-
/** The PhastMC is the default Phast template. */
|
|
328
|
-
PHAST_MC = 100,
|
|
329
|
-
|
|
330
|
-
/** The Peng-Robinson template but with ideal fugacities for improved robustness. */
|
|
331
|
-
PRIDEAL_FUGACITY = 106,
|
|
332
|
-
|
|
333
|
-
/** Template using the Soave-Redlich-Kwong cubic equation of state. */
|
|
334
|
-
SOAVE_REDLICK_KWONG = 103,
|
|
335
|
-
|
|
336
|
-
/** The Soave-Redlich-Kwong template but with ideal fugacities for improved robustness. */
|
|
337
|
-
SRKIDEAL_FUGACITY = 107,
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
/**
|
|
341
|
-
* The type of radiation result of interest.
|
|
342
|
-
*/
|
|
343
|
-
export enum RadiationType {
|
|
344
|
-
/** The cumulative thermal energy produced from a flame and absorbed by a person or object, measured in W/m2.s. */
|
|
345
|
-
DOSE = 1,
|
|
346
|
-
|
|
347
|
-
/** The intensity of the heat produced from a flame, measured in W/m2. */
|
|
348
|
-
INTENSITY = 5,
|
|
349
|
-
|
|
350
|
-
/** The lethality of the heat produced from a flame, measured as percentage fatality. */
|
|
351
|
-
LETHALITY = 3,
|
|
352
|
-
|
|
353
|
-
/** The Probit produced from a flame, a statistical value which correlates dose with the likelihood of fatality on a probabilistic scale. */
|
|
354
|
-
PROBIT = 2,
|
|
355
|
-
|
|
356
|
-
/** Radiation type not set. */
|
|
357
|
-
UNSET = 0,
|
|
358
|
-
|
|
359
|
-
/** The calculated view factor. */
|
|
360
|
-
VIEW_FACTOR = 4,
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
/**
|
|
364
|
-
* Sets the model for droplet evaporation calculations.
|
|
365
|
-
*/
|
|
366
|
-
export enum RainoutThermoFlag {
|
|
367
|
-
/** Suppress rainout and force the liquid droplets to stay inside the cloud, which can have a significant effect on the properties of the cloud. */
|
|
368
|
-
NO_RAINOUT_EQUILIBRIUM = -1,
|
|
369
|
-
|
|
370
|
-
/** The liquid drops have the same temperature as the vapour cloud. */
|
|
371
|
-
RAINOUT_EQUILIBRIUM = 1,
|
|
372
|
-
|
|
373
|
-
/** Liquid drops have a different temperature from the vapour cloud, which surpresses their evaporation and produces a higher amount of rainout than other options. */
|
|
374
|
-
RAINOUT_NON_EQUILIBRIUM = 2,
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
/**
|
|
378
|
-
* The initial direction of the discharge from its source.
|
|
379
|
-
*/
|
|
380
|
-
export enum ReleaseDirection {
|
|
381
|
-
/** Horizontal. */
|
|
382
|
-
HORIZONTAL = 0,
|
|
383
|
-
|
|
384
|
-
/** Vertical. */
|
|
385
|
-
VERTICAL = 1,
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
/**
|
|
389
|
-
* Output resolution (and performance) controlling the spacing in the x, y, z and time dimensions.
|
|
390
|
-
*/
|
|
391
|
-
export enum Resolution {
|
|
392
|
-
/** Extremely high. */
|
|
393
|
-
EXTREME = 5,
|
|
394
|
-
|
|
395
|
-
/** High. */
|
|
396
|
-
HIGH = 1,
|
|
397
|
-
|
|
398
|
-
/** Low. */
|
|
399
|
-
LOW = 3,
|
|
400
|
-
|
|
401
|
-
/** Medium. */
|
|
402
|
-
MEDIUM = 2,
|
|
403
|
-
|
|
404
|
-
/** Very high. */
|
|
405
|
-
VERY_HIGH = 4,
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
/**
|
|
409
|
-
* Result codes returned from calls to the MDE.
|
|
410
|
-
*/
|
|
411
|
-
export enum ResultCode {
|
|
412
|
-
/** . */
|
|
413
|
-
CLIENT_ID_NOT_SPECIFIED_ERROR = 21110,
|
|
414
|
-
|
|
415
|
-
/** . */
|
|
416
|
-
DATA_STORAGE_ERROR = 21113,
|
|
417
|
-
|
|
418
|
-
/** . */
|
|
419
|
-
DISCHARGE_CALCULATION_INITIALIZATION_ERROR = 21107,
|
|
420
|
-
|
|
421
|
-
/** . */
|
|
422
|
-
DISPERSION_CALCULATION_INITIALIZATION_ERROR = 21108,
|
|
423
|
-
|
|
424
|
-
/** . */
|
|
425
|
-
ERROR_READING_INPUT_FILE_ERROR = 21011,
|
|
426
|
-
|
|
427
|
-
/** Execution fail. */
|
|
428
|
-
FAIL_EXECUTION = 1,
|
|
429
|
-
|
|
430
|
-
/** Validation fail. */
|
|
431
|
-
FAIL_VALIDATION = -1,
|
|
432
|
-
|
|
433
|
-
/** . */
|
|
434
|
-
FAILED_TO_INITIALISE_MDE_ERROR_REPORTING_ERROR = 21012,
|
|
435
|
-
|
|
436
|
-
/** . */
|
|
437
|
-
FAILED_TO_INITIALISE_PROPERTY_SYSTEM_ERROR = 21013,
|
|
438
|
-
|
|
439
|
-
/** . */
|
|
440
|
-
HTTP_AMBIGUOUS_ERROR = 30300,
|
|
441
|
-
|
|
442
|
-
/** . */
|
|
443
|
-
HTTP_BAD_GATEWAY_ERROR = 30502,
|
|
444
|
-
|
|
445
|
-
/** . */
|
|
446
|
-
HTTP_BAD_REQUEST_ERROR = 30400,
|
|
447
|
-
|
|
448
|
-
/** . */
|
|
449
|
-
HTTP_CONFLICT_ERROR = 30409,
|
|
450
|
-
|
|
451
|
-
/** . */
|
|
452
|
-
HTTP_EXPECTATION_FAILED_ERROR = 30417,
|
|
453
|
-
|
|
454
|
-
/** . */
|
|
455
|
-
HTTP_FORBIDDEN_ERROR = 30403,
|
|
456
|
-
|
|
457
|
-
/** . */
|
|
458
|
-
HTTP_FOUND_ERROR = 30302,
|
|
459
|
-
|
|
460
|
-
/** . */
|
|
461
|
-
HTTP_GATEWAY_TIMEOUT_ERROR = 30504,
|
|
462
|
-
|
|
463
|
-
/** . */
|
|
464
|
-
HTTP_GONE_ERROR = 30410,
|
|
465
|
-
|
|
466
|
-
/** . */
|
|
467
|
-
HTTP_HTTP_VERSION_NOT_SUPPORTED_ERROR = 30505,
|
|
468
|
-
|
|
469
|
-
/** . */
|
|
470
|
-
HTTP_INTERNAL_SERVER_ERROR_ERROR = 30500,
|
|
471
|
-
|
|
472
|
-
/** . */
|
|
473
|
-
HTTP_LENGTH_REQUIRED_ERROR = 30411,
|
|
474
|
-
|
|
475
|
-
/** . */
|
|
476
|
-
HTTP_METHOD_NOT_ALLOWED_ERROR = 30405,
|
|
477
|
-
|
|
478
|
-
/** . */
|
|
479
|
-
HTTP_MOVED_ERROR = 30301,
|
|
480
|
-
|
|
481
|
-
/** . */
|
|
482
|
-
HTTP_MOVED_PERMANENTLY_ERROR = 30301,
|
|
483
|
-
|
|
484
|
-
/** . */
|
|
485
|
-
HTTP_MULTIPLE_CHOICES_ERROR = 30300,
|
|
486
|
-
|
|
487
|
-
/** . */
|
|
488
|
-
HTTP_NOT_ACCEPTABLE_ERROR = 30406,
|
|
489
|
-
|
|
490
|
-
/** . */
|
|
491
|
-
HTTP_NOT_FOUND_ERROR = 30404,
|
|
492
|
-
|
|
493
|
-
/** . */
|
|
494
|
-
HTTP_NOT_IMPLEMENTED_ERROR = 30501,
|
|
495
|
-
|
|
496
|
-
/** . */
|
|
497
|
-
HTTP_NOT_MODIFIED_ERROR = 30304,
|
|
498
|
-
|
|
499
|
-
/** . */
|
|
500
|
-
HTTP_PAYMENT_REQUIRED_ERROR = 30402,
|
|
501
|
-
|
|
502
|
-
/** . */
|
|
503
|
-
HTTP_PRECONDITION_FAILED_ERROR = 30412,
|
|
504
|
-
|
|
505
|
-
/** . */
|
|
506
|
-
HTTP_PROXY_AUTHENTICATION_REQUIRED_ERROR = 30407,
|
|
507
|
-
|
|
508
|
-
/** . */
|
|
509
|
-
HTTP_REDIRECT_ERROR = 30302,
|
|
510
|
-
|
|
511
|
-
/** . */
|
|
512
|
-
HTTP_REDIRECT_KEEP_VERB_ERROR = 30307,
|
|
513
|
-
|
|
514
|
-
/** . */
|
|
515
|
-
HTTP_REDIRECT_METHOD_ERROR = 30303,
|
|
516
|
-
|
|
517
|
-
/** . */
|
|
518
|
-
HTTP_REQUESTED_RANGE_NOT_SATISFIABLE_ERROR = 30416,
|
|
519
|
-
|
|
520
|
-
/** . */
|
|
521
|
-
HTTP_REQUEST_ENTITY_TOO_LARGE_ERROR = 30413,
|
|
522
|
-
|
|
523
|
-
/** . */
|
|
524
|
-
HTTP_REQUEST_TIMEOUT_ERROR = 30408,
|
|
525
|
-
|
|
526
|
-
/** . */
|
|
527
|
-
HTTP_REQUEST_URI_TOO_LONG_ERROR = 30414,
|
|
528
|
-
|
|
529
|
-
/** . */
|
|
530
|
-
HTTP_SEE_OTHER_ERROR = 30303,
|
|
531
|
-
|
|
532
|
-
/** . */
|
|
533
|
-
HTTP_SERVICE_UNAVAILABLE_ERROR = 30503,
|
|
534
|
-
|
|
535
|
-
/** . */
|
|
536
|
-
HTTP_TEMPORARY_REDIRECT_ERROR = 30307,
|
|
537
|
-
|
|
538
|
-
/** . */
|
|
539
|
-
HTTP_UNAUTHORIZED_ERROR = 30401,
|
|
540
|
-
|
|
541
|
-
/** . */
|
|
542
|
-
HTTP_UNSUPPORTED_MEDIA_TYPE_ERROR = 30415,
|
|
543
|
-
|
|
544
|
-
/** . */
|
|
545
|
-
HTTP_UNUSED_ERROR = 30306,
|
|
546
|
-
|
|
547
|
-
/** . */
|
|
548
|
-
HTTP_UPGRADE_REQUIRED_ERROR = 30426,
|
|
549
|
-
|
|
550
|
-
/** . */
|
|
551
|
-
HTTP_USE_PROXY_ERROR = 30305,
|
|
552
|
-
|
|
553
|
-
/** . */
|
|
554
|
-
INDEX_OUT_OF_RANGE_ERROR = 21112,
|
|
555
|
-
|
|
556
|
-
/** . */
|
|
557
|
-
INPUT_FILE_NOT_FOUND_ERROR = 21009,
|
|
558
|
-
|
|
559
|
-
/** . */
|
|
560
|
-
INPUT_FILE_NOT_SPECIFIED_ERROR = 21008,
|
|
561
|
-
|
|
562
|
-
/** . */
|
|
563
|
-
INVALID_ACCESS_TOKEN_ERROR = 21014,
|
|
564
|
-
|
|
565
|
-
/** No or invalid application root directory specified. */
|
|
566
|
-
INVALID_APP_ROOT_DIRECTORY_ERROR = 21004,
|
|
567
|
-
|
|
568
|
-
/** No or invalid MDE models directory specified. */
|
|
569
|
-
INVALID_MDE_MODELS_DIRECTORY_ERROR = 21005,
|
|
570
|
-
|
|
571
|
-
/** No or invalid physical properties directory specified. */
|
|
572
|
-
INVALID_PROPERTY_SYSTEM_DIRECTORY_ERROR = 21007,
|
|
573
|
-
|
|
574
|
-
/** No or invalid working directory specified. */
|
|
575
|
-
INVALID_WORKING_DIRECTORY_ERROR = 21003,
|
|
576
|
-
|
|
577
|
-
/** . */
|
|
578
|
-
JSON_READER_ERROR = 21111,
|
|
579
|
-
|
|
580
|
-
/** . */
|
|
581
|
-
MDEERROR_REPORTING_INITIALIZATION_ERROR = 21105,
|
|
582
|
-
|
|
583
|
-
/** . */
|
|
584
|
-
MDEINITIALIZATION_ERROR = 21104,
|
|
585
|
-
|
|
586
|
-
/** MDE directory was correctly specified but the directory does not exist. */
|
|
587
|
-
MDE_MODEL_DIRECTORY_NOT_FOUND_ERROR = 21006,
|
|
588
|
-
|
|
589
|
-
/** Missing parameters. */
|
|
590
|
-
MISSING_PARAMETERS_ERROR = 21002,
|
|
591
|
-
|
|
592
|
-
/** . */
|
|
593
|
-
NO_DISCHARGE_RECORDS_ERROR = 21100,
|
|
594
|
-
|
|
595
|
-
/** . */
|
|
596
|
-
NO_DISCHARGE_RECORDS_GENERATED_WARNING = 63001,
|
|
597
|
-
|
|
598
|
-
/** . */
|
|
599
|
-
NO_DISPERSION_RECORDS_ERROR = 21102,
|
|
600
|
-
|
|
601
|
-
/** . */
|
|
602
|
-
NO_DISPERSION_RECORDS_GENERATED_WARNING = 63002,
|
|
603
|
-
|
|
604
|
-
/** . */
|
|
605
|
-
NO_FLAME_RECORDS_ERROR = 21103,
|
|
606
|
-
|
|
607
|
-
/** . */
|
|
608
|
-
OUTPUT_FILE_NOT_SPECIFIED_ERROR = 21010,
|
|
609
|
-
|
|
610
|
-
/** . */
|
|
611
|
-
PHYSICAL_PROPERTY_SYSTEM_INITIALIZATION_ERROR = 21106,
|
|
612
|
-
|
|
613
|
-
/** Success. */
|
|
614
|
-
SUCCESS = 0,
|
|
615
|
-
|
|
616
|
-
/** . */
|
|
617
|
-
UNABLE_TO_READ_DATA_ERROR = 21109,
|
|
618
|
-
|
|
619
|
-
/** Unexpected application error encountered. */
|
|
620
|
-
UNEXPECTED_APPLICATION_ERROR = 21001,
|
|
621
|
-
|
|
622
|
-
/** The calculation has not been run yet. */
|
|
623
|
-
NOT_RUN = -2,
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
/**
|
|
627
|
-
* Flag for whether we want to deploy or disable solid modelling. In addition to this flag, each component has its own allowSolids flag.
|
|
628
|
-
*/
|
|
629
|
-
export enum SolidModelling {
|
|
630
|
-
/** Solid modelling will be deployed if it is supported by the component in question. */
|
|
631
|
-
DEPLOY_SOLID_MODELLING = 1,
|
|
632
|
-
|
|
633
|
-
/** Solid modelling will not be used, even if it is allowed by the component in question. */
|
|
634
|
-
DISABLE_SOLID_MODELLING = 0,
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
/**
|
|
638
|
-
* The method used to determine the concentration of interest when post processing dispersion calculations.
|
|
639
|
-
*/
|
|
640
|
-
export enum SpecialConcentration {
|
|
641
|
-
/** The concentration of interest will be the LFL of the material. */
|
|
642
|
-
LFL = 2,
|
|
643
|
-
|
|
644
|
-
/** The concentration of interest will be the LFL fraction specified in the DispersionOutputConfig. */
|
|
645
|
-
LFL_FRACTION = 1,
|
|
646
|
-
|
|
647
|
-
/** The minimum concentration specified in the ScalarUDMOutputs. */
|
|
648
|
-
MIN = 4,
|
|
649
|
-
|
|
650
|
-
/** A method which allows you to use a specific concentration fraction for the concentration of interest. */
|
|
651
|
-
NOT_DEFINED = 0,
|
|
652
|
-
|
|
653
|
-
/** The concentration of interest will be the UFL of the material. */
|
|
654
|
-
UFL = 3,
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
/**
|
|
658
|
-
* Surface over which the dispersion occurs.
|
|
659
|
-
*/
|
|
660
|
-
export enum SurfaceType {
|
|
661
|
-
/** Dispersion over land. */
|
|
662
|
-
LAND = 1,
|
|
663
|
-
|
|
664
|
-
/** Dispersion over water. */
|
|
665
|
-
WATER = 2,
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
/**
|
|
669
|
-
* Whether the release is a time-varying release or a steady state release using the initial rate.
|
|
670
|
-
*/
|
|
671
|
-
export enum TimeVaryingOption {
|
|
672
|
-
/** Use initial rate modelling. */
|
|
673
|
-
INITIAL_RATE = 1,
|
|
674
|
-
|
|
675
|
-
/** Use time-varying rate modelling. */
|
|
676
|
-
TIME_VARYING_RATE = 2,
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
/**
|
|
680
|
-
* The type of toxic result.
|
|
681
|
-
*/
|
|
682
|
-
export enum ToxicResultType {
|
|
683
|
-
/** Toxic dose. */
|
|
684
|
-
TOXIC_DOSE = 3,
|
|
685
|
-
|
|
686
|
-
/** Probability of death. */
|
|
687
|
-
TOXIC_LETHALITY = 1,
|
|
688
|
-
|
|
689
|
-
/** Toxic probit number. */
|
|
690
|
-
TOXIC_PROBIT = 2,
|
|
691
|
-
|
|
692
|
-
/** Toxic result type not set. */
|
|
693
|
-
UNSET = 0,
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
/**
|
|
697
|
-
* The conditions of the material in a vessel.
|
|
698
|
-
*/
|
|
699
|
-
export enum VesselConditions {
|
|
700
|
-
/** Liquid stored at atmospheric pressure. */
|
|
701
|
-
ATMOSPHERIC_LIQUID_VESSEL = 5,
|
|
702
|
-
|
|
703
|
-
/** Homogenesously mixed two phase. */
|
|
704
|
-
HOMOGENEOUS_VESSEL_TYPE = 2,
|
|
705
|
-
|
|
706
|
-
/** Pressurised liquid vessel. */
|
|
707
|
-
PRESSURIZED_LIQUID_VESSEL = 4,
|
|
708
|
-
|
|
709
|
-
/** Pressurised gas vessel. */
|
|
710
|
-
PURE_GAS = 1,
|
|
711
|
-
|
|
712
|
-
/** Two phase vessel. */
|
|
713
|
-
STRATIFIED_TWO_PHASE_VESSEL = 3,
|
|
714
|
-
|
|
715
|
-
/** Unset. */
|
|
716
|
-
UNSET = 0,
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
/**
|
|
720
|
-
* The shape of a vessel.
|
|
721
|
-
*/
|
|
722
|
-
export enum VesselShape {
|
|
723
|
-
/** Horizontal cylinder shape for a vessel. */
|
|
724
|
-
HORIZONTAL_CYLINDER = 2,
|
|
725
|
-
|
|
726
|
-
/** Vertical cylinder shape for a vessel. */
|
|
727
|
-
VERTICAL_CYLINDER = 1,
|
|
728
|
-
|
|
729
|
-
/** Cuboid shape for a vessel. */
|
|
730
|
-
VESSEL_CUBOID = 4,
|
|
731
|
-
|
|
732
|
-
/** Sphere shape for a vessel. */
|
|
733
|
-
VESSEL_SPHERE = 3,
|
|
1
|
+
/***********************************************************************
|
|
2
|
+
* This file has been auto-generated by a code generation tool.
|
|
3
|
+
* Version: 1.0.0
|
|
4
|
+
* Date/time: 30 Jan 2025 11:43:06
|
|
5
|
+
* Template: templates/typescriptpws/enums.razor.
|
|
6
|
+
***********************************************************************/
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* The Pasquill atmospheric stability classes, a common method for categorizing the amount of atmospheric turbulence present.
|
|
10
|
+
*/
|
|
11
|
+
export enum AtmosphericStabilityClass {
|
|
12
|
+
/** A - very unstable - sunny, light winds. */
|
|
13
|
+
STABILITY_A = 1,
|
|
14
|
+
|
|
15
|
+
/** A/B - unstable - as with A only less sunny or more windy. */
|
|
16
|
+
STABILITY_AB = 2,
|
|
17
|
+
|
|
18
|
+
/** B - unstable as with A/B only less sunny or more windy. */
|
|
19
|
+
STABILITY_B = 3,
|
|
20
|
+
|
|
21
|
+
/** B/C - moderately unstable - moderate sun and moderate wind. */
|
|
22
|
+
STABILITY_BC = 4,
|
|
23
|
+
|
|
24
|
+
/** C - moderately unstable - very windy/sunny or overcast/light wind. */
|
|
25
|
+
STABILITY_C = 5,
|
|
26
|
+
|
|
27
|
+
/** C/D - moderately unstable - moderate sun and high wind. */
|
|
28
|
+
STABILITY_CD = 6,
|
|
29
|
+
|
|
30
|
+
/** D - neutral - little sun and high wind or overcast/windy night. */
|
|
31
|
+
STABILITY_D = 7,
|
|
32
|
+
|
|
33
|
+
/** E - moderately stable - less overcast and less windy night than D. */
|
|
34
|
+
STABILITY_E = 8,
|
|
35
|
+
|
|
36
|
+
/** F - stable - night with moderate clouds and light/moderate wind. */
|
|
37
|
+
STABILITY_F = 9,
|
|
38
|
+
|
|
39
|
+
/** G - very stable - possibly fog. */
|
|
40
|
+
STABILITY_G = 10,
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Type of case being run.
|
|
45
|
+
*/
|
|
46
|
+
export enum CaseType {
|
|
47
|
+
/** A storage scenario which models a release of material due to rupture of a short length of pipework attached to a vessel or any kind of pressure reservoir. */
|
|
48
|
+
LINE_RUPTURE = 4,
|
|
49
|
+
|
|
50
|
+
/** A storage scenario which models a release of material from the vapour side of a vessel due to the lifting of a relief valve. */
|
|
51
|
+
RELIEF_VALVE = 3,
|
|
52
|
+
|
|
53
|
+
/** A tank roof fire, represented by a pool fire elevated at the height of the tank. */
|
|
54
|
+
TANK_FIRE = 2,
|
|
55
|
+
|
|
56
|
+
/** Case type has not been set. */
|
|
57
|
+
UNSET = -1,
|
|
58
|
+
|
|
59
|
+
/** An instanaeous release of the entire inventory of an associated vessel, intended to model an incident in which the vessel is destroyed by an impact, a crack, or some other failure which propagates very quickly. */
|
|
60
|
+
VESSEL_CATASTROPHIC_RUPTURE = 1,
|
|
61
|
+
|
|
62
|
+
/** A release of material through a hole in a vessel or pipe. */
|
|
63
|
+
VESSEL_LEAK = 0,
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Type of contour plot or grid.
|
|
68
|
+
*/
|
|
69
|
+
export enum ContourType {
|
|
70
|
+
/** Crosswind (YZ plane). */
|
|
71
|
+
CROSSWIND = 5,
|
|
72
|
+
|
|
73
|
+
/** Flame shape crosswind (YZ plane). */
|
|
74
|
+
FLAME_CROSSWIND = 8,
|
|
75
|
+
|
|
76
|
+
/** Flame shape footprint (XY plane). */
|
|
77
|
+
FLAME_FOOTPRINT = 6,
|
|
78
|
+
|
|
79
|
+
/** Flame shape sideview (XZ plane). */
|
|
80
|
+
FLAME_SIDEVIEW = 7,
|
|
81
|
+
|
|
82
|
+
/** Footprint (XY plane). */
|
|
83
|
+
FOOTPRINT = 1,
|
|
84
|
+
|
|
85
|
+
/** Footprint (XY plane) at a given time. */
|
|
86
|
+
FOOTPRINT_AT_TIME = 2,
|
|
87
|
+
|
|
88
|
+
/** Footprint ellipse (XY plane). */
|
|
89
|
+
FOOTPRINT_ELLIPSE = 3,
|
|
90
|
+
|
|
91
|
+
/** Sideview (XZ plane). */
|
|
92
|
+
SIDEVIEW = 4,
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Whether day or night.
|
|
97
|
+
*/
|
|
98
|
+
export enum DayNight {
|
|
99
|
+
/** Day. */
|
|
100
|
+
DAY = 1,
|
|
101
|
+
|
|
102
|
+
/** Night. */
|
|
103
|
+
NIGHT = 2,
|
|
104
|
+
|
|
105
|
+
/** Day/night flag not set. */
|
|
106
|
+
UNSET = 0,
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Whether the release or cloud is instantaneous, continuous or time-varying.
|
|
111
|
+
*/
|
|
112
|
+
export enum DynamicType {
|
|
113
|
+
/** A release of mass at a rate which does not vary with time. */
|
|
114
|
+
CONTINUOUS = 2,
|
|
115
|
+
|
|
116
|
+
/** A release of the entire mass instantaneously. */
|
|
117
|
+
INSTANTANEOUS = 1,
|
|
118
|
+
|
|
119
|
+
/** A release of mass at a rate which varies with time. */
|
|
120
|
+
TIME_VARYING = 3,
|
|
121
|
+
|
|
122
|
+
/** Unset. */
|
|
123
|
+
UNSET = 0,
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* The type of fire that occurs or is modelled.
|
|
128
|
+
*/
|
|
129
|
+
export enum FireType {
|
|
130
|
+
/** A high-velocity burning jet, modelled using the API model, which treats the flame as a banana-shaped plume. */
|
|
131
|
+
APIJET = 3,
|
|
132
|
+
|
|
133
|
+
/** A high-velocity burning jet, modelled using the Cone model, which treats the flame as a tilted cone frustum. */
|
|
134
|
+
CONE_JET = 4,
|
|
135
|
+
|
|
136
|
+
/** A large, intense ball of fire that rises and expands before dissipating. */
|
|
137
|
+
FIREBALL = 1,
|
|
138
|
+
|
|
139
|
+
/** A high-velocity burning jet, modelled using the Miller model, which treats the flame as two straight-line segments, with the first segment projected in the direction of the release and the second segment angled according to the effects of buoyancy and wind. */
|
|
140
|
+
MULTI_POINT_SOURCE_JET = 10,
|
|
141
|
+
|
|
142
|
+
/** No fire occurs or modelled. */
|
|
143
|
+
NO_FIRE = 0,
|
|
144
|
+
|
|
145
|
+
/** An ignited pool of flammable liquid that has accumulated on a surface. */
|
|
146
|
+
POOL = 2,
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Whether a material is flammable, toxic, both or inert.
|
|
151
|
+
*/
|
|
152
|
+
export enum FlammableToxic {
|
|
153
|
+
/** Both. */
|
|
154
|
+
BOTH = 0,
|
|
155
|
+
|
|
156
|
+
/** Flammable. */
|
|
157
|
+
FLAMMABLE = 1,
|
|
158
|
+
|
|
159
|
+
/** Inert. */
|
|
160
|
+
INERT = -2,
|
|
161
|
+
|
|
162
|
+
/** Toxic. */
|
|
163
|
+
TOXIC = -1,
|
|
164
|
+
|
|
165
|
+
/** Option when this field is unset. */
|
|
166
|
+
UNSET = -99,
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* Method to describe how phase changes between storage and orifice conditions will be modelled.
|
|
171
|
+
*/
|
|
172
|
+
export enum FlashAtOrifice {
|
|
173
|
+
/** No flashing of liquid (metastable liquid) upstream of the orifice. */
|
|
174
|
+
DISALLOW_LIQUID_FLASH = 2,
|
|
175
|
+
|
|
176
|
+
/** Flashing allowed upstream of the orifice. */
|
|
177
|
+
FLASH_ALLOWED = 1,
|
|
178
|
+
|
|
179
|
+
/** No phase change upstream of the orifice. */
|
|
180
|
+
NO_FLASH_AT_ORIFICE = 0,
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Fluid state specification.
|
|
185
|
+
*/
|
|
186
|
+
export enum FluidSpec {
|
|
187
|
+
/** Specify bubble point at fixed pressure. */
|
|
188
|
+
PBUB = 3,
|
|
189
|
+
|
|
190
|
+
/** Specify dew point at fixed pressure. */
|
|
191
|
+
PDEW = 5,
|
|
192
|
+
|
|
193
|
+
/** Specify pressure and liquid fraction. */
|
|
194
|
+
PLF = 6,
|
|
195
|
+
|
|
196
|
+
/** Specify pressure, temperature and liquid fraction. */
|
|
197
|
+
PTLF = 0,
|
|
198
|
+
|
|
199
|
+
/** Specify bubble point at fixed temperature. */
|
|
200
|
+
TBUB = 2,
|
|
201
|
+
|
|
202
|
+
/** Specify dew point at fixed temperature. */
|
|
203
|
+
TDEW = 4,
|
|
204
|
+
|
|
205
|
+
/** Specify temperature and liquid fraction. */
|
|
206
|
+
TLF = 7,
|
|
207
|
+
|
|
208
|
+
/** Specify temperature and pressure. */
|
|
209
|
+
TP = 1,
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* The type of flame produced when a material burns.
|
|
214
|
+
*/
|
|
215
|
+
export enum LuminousSmokyFlame {
|
|
216
|
+
/** Used or compounds with unknown experimental profile for surface emissive power. */
|
|
217
|
+
GENERAL = 2,
|
|
218
|
+
|
|
219
|
+
/** Whether a material would produce luminous flames when burnt. */
|
|
220
|
+
LUMINOUS = 0,
|
|
221
|
+
|
|
222
|
+
/** Non flammable material, so no flames produced. */
|
|
223
|
+
NON_FLAMMABLE = -1,
|
|
224
|
+
|
|
225
|
+
/** Whether a material would produce smoky flames when burnt. */
|
|
226
|
+
SMOKY = 1,
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* The multi energy confined method for modelling the effects of explosions.
|
|
231
|
+
*/
|
|
232
|
+
export enum MEConfinedMethod {
|
|
233
|
+
/** A method where the explosion calculations model a single confined source that contains the entire mass of the cloud, with a strength of confinement defined by the ExplosionUniformStrength in the ExplosionParameters. */
|
|
234
|
+
UNIFORM_CONFINED = 3,
|
|
235
|
+
|
|
236
|
+
/** A method where the explosions calculations are based on user-defined confined sources, their explosion strengths and their volumes. */
|
|
237
|
+
USER_DEFINED = 1,
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Method for modelling a mixture.
|
|
242
|
+
*/
|
|
243
|
+
export enum MixtureModelling {
|
|
244
|
+
/** Multi-component multiple aerosol. */
|
|
245
|
+
MC_MULTIPLE_AEROSOL = 3,
|
|
246
|
+
|
|
247
|
+
/** Multi-component single aerosol. */
|
|
248
|
+
MC_SINGLE_AEROSOL = 1,
|
|
249
|
+
|
|
250
|
+
/** Pseudo-component: representing the mixture as a single, averaged component. */
|
|
251
|
+
PC = 0,
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* Fluid phase (vapour, liquid or two-phase).
|
|
256
|
+
*/
|
|
257
|
+
export enum Phase {
|
|
258
|
+
/** Liquid. */
|
|
259
|
+
LIQUID = 3,
|
|
260
|
+
|
|
261
|
+
/** Two-phase. */
|
|
262
|
+
TWO_PHASE = 2,
|
|
263
|
+
|
|
264
|
+
/** Unset. */
|
|
265
|
+
UNSET = 0,
|
|
266
|
+
|
|
267
|
+
/** Vapour. */
|
|
268
|
+
VAPOUR = 1,
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* Type of pool fire.
|
|
273
|
+
*/
|
|
274
|
+
export enum PoolFireType {
|
|
275
|
+
/** A type of pool fire assumed to take place at the time when the spill rate into the pool is equal to the burn rate of the pool fire. */
|
|
276
|
+
EARLY = 1,
|
|
277
|
+
|
|
278
|
+
/** Immediate pool fire. */
|
|
279
|
+
IMMEDIATE = 0,
|
|
280
|
+
|
|
281
|
+
/** A type of pool fire assumed to occur as a result of delayed ignition, at a time when the pool has reached its maximum radius. */
|
|
282
|
+
LATE = 2,
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Surface onto which the liquid which rains out will spread.
|
|
287
|
+
*/
|
|
288
|
+
export enum PoolSurfaceType {
|
|
289
|
+
/** Concrete. */
|
|
290
|
+
CONCRETE = 3,
|
|
291
|
+
|
|
292
|
+
/** Deep open water. */
|
|
293
|
+
DEEP_OPEN_WATER = 5,
|
|
294
|
+
|
|
295
|
+
/** Deep river. */
|
|
296
|
+
DEEP_RIVER = 7,
|
|
297
|
+
|
|
298
|
+
/** Dry soil. */
|
|
299
|
+
DRY_SOIL = 2,
|
|
300
|
+
|
|
301
|
+
/** Insulated concrete. */
|
|
302
|
+
INSULATED_CONCRETE = 4,
|
|
303
|
+
|
|
304
|
+
/** Shallow open water. */
|
|
305
|
+
SHALLOW_OPEN_WATER = 6,
|
|
306
|
+
|
|
307
|
+
/** Shallow river. */
|
|
308
|
+
SHALLOW_RIVER = 8,
|
|
309
|
+
|
|
310
|
+
/** Wet soil. */
|
|
311
|
+
WET_SOIL = 1,
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* The template to be used for the selection of calculation methods for material properties.
|
|
316
|
+
*/
|
|
317
|
+
export enum PropertyTemplate {
|
|
318
|
+
/** Acid association template for modelling reactive Hydrogen Fluoride. */
|
|
319
|
+
ACID_ASSOCIATION = 102,
|
|
320
|
+
|
|
321
|
+
/** Template using the Peng-Robinson cubic equation of state. */
|
|
322
|
+
PENG_ROBINSON = 104,
|
|
323
|
+
|
|
324
|
+
/** Old default Phast property template. */
|
|
325
|
+
PHAST64 = 101,
|
|
326
|
+
|
|
327
|
+
/** The PhastMC is the default Phast template. */
|
|
328
|
+
PHAST_MC = 100,
|
|
329
|
+
|
|
330
|
+
/** The Peng-Robinson template but with ideal fugacities for improved robustness. */
|
|
331
|
+
PRIDEAL_FUGACITY = 106,
|
|
332
|
+
|
|
333
|
+
/** Template using the Soave-Redlich-Kwong cubic equation of state. */
|
|
334
|
+
SOAVE_REDLICK_KWONG = 103,
|
|
335
|
+
|
|
336
|
+
/** The Soave-Redlich-Kwong template but with ideal fugacities for improved robustness. */
|
|
337
|
+
SRKIDEAL_FUGACITY = 107,
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* The type of radiation result of interest.
|
|
342
|
+
*/
|
|
343
|
+
export enum RadiationType {
|
|
344
|
+
/** The cumulative thermal energy produced from a flame and absorbed by a person or object, measured in W/m2.s. */
|
|
345
|
+
DOSE = 1,
|
|
346
|
+
|
|
347
|
+
/** The intensity of the heat produced from a flame, measured in W/m2. */
|
|
348
|
+
INTENSITY = 5,
|
|
349
|
+
|
|
350
|
+
/** The lethality of the heat produced from a flame, measured as percentage fatality. */
|
|
351
|
+
LETHALITY = 3,
|
|
352
|
+
|
|
353
|
+
/** The Probit produced from a flame, a statistical value which correlates dose with the likelihood of fatality on a probabilistic scale. */
|
|
354
|
+
PROBIT = 2,
|
|
355
|
+
|
|
356
|
+
/** Radiation type not set. */
|
|
357
|
+
UNSET = 0,
|
|
358
|
+
|
|
359
|
+
/** The calculated view factor. */
|
|
360
|
+
VIEW_FACTOR = 4,
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* Sets the model for droplet evaporation calculations.
|
|
365
|
+
*/
|
|
366
|
+
export enum RainoutThermoFlag {
|
|
367
|
+
/** Suppress rainout and force the liquid droplets to stay inside the cloud, which can have a significant effect on the properties of the cloud. */
|
|
368
|
+
NO_RAINOUT_EQUILIBRIUM = -1,
|
|
369
|
+
|
|
370
|
+
/** The liquid drops have the same temperature as the vapour cloud. */
|
|
371
|
+
RAINOUT_EQUILIBRIUM = 1,
|
|
372
|
+
|
|
373
|
+
/** Liquid drops have a different temperature from the vapour cloud, which surpresses their evaporation and produces a higher amount of rainout than other options. */
|
|
374
|
+
RAINOUT_NON_EQUILIBRIUM = 2,
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* The initial direction of the discharge from its source.
|
|
379
|
+
*/
|
|
380
|
+
export enum ReleaseDirection {
|
|
381
|
+
/** Horizontal. */
|
|
382
|
+
HORIZONTAL = 0,
|
|
383
|
+
|
|
384
|
+
/** Vertical. */
|
|
385
|
+
VERTICAL = 1,
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
/**
|
|
389
|
+
* Output resolution (and performance) controlling the spacing in the x, y, z and time dimensions.
|
|
390
|
+
*/
|
|
391
|
+
export enum Resolution {
|
|
392
|
+
/** Extremely high. */
|
|
393
|
+
EXTREME = 5,
|
|
394
|
+
|
|
395
|
+
/** High. */
|
|
396
|
+
HIGH = 1,
|
|
397
|
+
|
|
398
|
+
/** Low. */
|
|
399
|
+
LOW = 3,
|
|
400
|
+
|
|
401
|
+
/** Medium. */
|
|
402
|
+
MEDIUM = 2,
|
|
403
|
+
|
|
404
|
+
/** Very high. */
|
|
405
|
+
VERY_HIGH = 4,
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* Result codes returned from calls to the MDE.
|
|
410
|
+
*/
|
|
411
|
+
export enum ResultCode {
|
|
412
|
+
/** . */
|
|
413
|
+
CLIENT_ID_NOT_SPECIFIED_ERROR = 21110,
|
|
414
|
+
|
|
415
|
+
/** . */
|
|
416
|
+
DATA_STORAGE_ERROR = 21113,
|
|
417
|
+
|
|
418
|
+
/** . */
|
|
419
|
+
DISCHARGE_CALCULATION_INITIALIZATION_ERROR = 21107,
|
|
420
|
+
|
|
421
|
+
/** . */
|
|
422
|
+
DISPERSION_CALCULATION_INITIALIZATION_ERROR = 21108,
|
|
423
|
+
|
|
424
|
+
/** . */
|
|
425
|
+
ERROR_READING_INPUT_FILE_ERROR = 21011,
|
|
426
|
+
|
|
427
|
+
/** Execution fail. */
|
|
428
|
+
FAIL_EXECUTION = 1,
|
|
429
|
+
|
|
430
|
+
/** Validation fail. */
|
|
431
|
+
FAIL_VALIDATION = -1,
|
|
432
|
+
|
|
433
|
+
/** . */
|
|
434
|
+
FAILED_TO_INITIALISE_MDE_ERROR_REPORTING_ERROR = 21012,
|
|
435
|
+
|
|
436
|
+
/** . */
|
|
437
|
+
FAILED_TO_INITIALISE_PROPERTY_SYSTEM_ERROR = 21013,
|
|
438
|
+
|
|
439
|
+
/** . */
|
|
440
|
+
HTTP_AMBIGUOUS_ERROR = 30300,
|
|
441
|
+
|
|
442
|
+
/** . */
|
|
443
|
+
HTTP_BAD_GATEWAY_ERROR = 30502,
|
|
444
|
+
|
|
445
|
+
/** . */
|
|
446
|
+
HTTP_BAD_REQUEST_ERROR = 30400,
|
|
447
|
+
|
|
448
|
+
/** . */
|
|
449
|
+
HTTP_CONFLICT_ERROR = 30409,
|
|
450
|
+
|
|
451
|
+
/** . */
|
|
452
|
+
HTTP_EXPECTATION_FAILED_ERROR = 30417,
|
|
453
|
+
|
|
454
|
+
/** . */
|
|
455
|
+
HTTP_FORBIDDEN_ERROR = 30403,
|
|
456
|
+
|
|
457
|
+
/** . */
|
|
458
|
+
HTTP_FOUND_ERROR = 30302,
|
|
459
|
+
|
|
460
|
+
/** . */
|
|
461
|
+
HTTP_GATEWAY_TIMEOUT_ERROR = 30504,
|
|
462
|
+
|
|
463
|
+
/** . */
|
|
464
|
+
HTTP_GONE_ERROR = 30410,
|
|
465
|
+
|
|
466
|
+
/** . */
|
|
467
|
+
HTTP_HTTP_VERSION_NOT_SUPPORTED_ERROR = 30505,
|
|
468
|
+
|
|
469
|
+
/** . */
|
|
470
|
+
HTTP_INTERNAL_SERVER_ERROR_ERROR = 30500,
|
|
471
|
+
|
|
472
|
+
/** . */
|
|
473
|
+
HTTP_LENGTH_REQUIRED_ERROR = 30411,
|
|
474
|
+
|
|
475
|
+
/** . */
|
|
476
|
+
HTTP_METHOD_NOT_ALLOWED_ERROR = 30405,
|
|
477
|
+
|
|
478
|
+
/** . */
|
|
479
|
+
HTTP_MOVED_ERROR = 30301,
|
|
480
|
+
|
|
481
|
+
/** . */
|
|
482
|
+
HTTP_MOVED_PERMANENTLY_ERROR = 30301,
|
|
483
|
+
|
|
484
|
+
/** . */
|
|
485
|
+
HTTP_MULTIPLE_CHOICES_ERROR = 30300,
|
|
486
|
+
|
|
487
|
+
/** . */
|
|
488
|
+
HTTP_NOT_ACCEPTABLE_ERROR = 30406,
|
|
489
|
+
|
|
490
|
+
/** . */
|
|
491
|
+
HTTP_NOT_FOUND_ERROR = 30404,
|
|
492
|
+
|
|
493
|
+
/** . */
|
|
494
|
+
HTTP_NOT_IMPLEMENTED_ERROR = 30501,
|
|
495
|
+
|
|
496
|
+
/** . */
|
|
497
|
+
HTTP_NOT_MODIFIED_ERROR = 30304,
|
|
498
|
+
|
|
499
|
+
/** . */
|
|
500
|
+
HTTP_PAYMENT_REQUIRED_ERROR = 30402,
|
|
501
|
+
|
|
502
|
+
/** . */
|
|
503
|
+
HTTP_PRECONDITION_FAILED_ERROR = 30412,
|
|
504
|
+
|
|
505
|
+
/** . */
|
|
506
|
+
HTTP_PROXY_AUTHENTICATION_REQUIRED_ERROR = 30407,
|
|
507
|
+
|
|
508
|
+
/** . */
|
|
509
|
+
HTTP_REDIRECT_ERROR = 30302,
|
|
510
|
+
|
|
511
|
+
/** . */
|
|
512
|
+
HTTP_REDIRECT_KEEP_VERB_ERROR = 30307,
|
|
513
|
+
|
|
514
|
+
/** . */
|
|
515
|
+
HTTP_REDIRECT_METHOD_ERROR = 30303,
|
|
516
|
+
|
|
517
|
+
/** . */
|
|
518
|
+
HTTP_REQUESTED_RANGE_NOT_SATISFIABLE_ERROR = 30416,
|
|
519
|
+
|
|
520
|
+
/** . */
|
|
521
|
+
HTTP_REQUEST_ENTITY_TOO_LARGE_ERROR = 30413,
|
|
522
|
+
|
|
523
|
+
/** . */
|
|
524
|
+
HTTP_REQUEST_TIMEOUT_ERROR = 30408,
|
|
525
|
+
|
|
526
|
+
/** . */
|
|
527
|
+
HTTP_REQUEST_URI_TOO_LONG_ERROR = 30414,
|
|
528
|
+
|
|
529
|
+
/** . */
|
|
530
|
+
HTTP_SEE_OTHER_ERROR = 30303,
|
|
531
|
+
|
|
532
|
+
/** . */
|
|
533
|
+
HTTP_SERVICE_UNAVAILABLE_ERROR = 30503,
|
|
534
|
+
|
|
535
|
+
/** . */
|
|
536
|
+
HTTP_TEMPORARY_REDIRECT_ERROR = 30307,
|
|
537
|
+
|
|
538
|
+
/** . */
|
|
539
|
+
HTTP_UNAUTHORIZED_ERROR = 30401,
|
|
540
|
+
|
|
541
|
+
/** . */
|
|
542
|
+
HTTP_UNSUPPORTED_MEDIA_TYPE_ERROR = 30415,
|
|
543
|
+
|
|
544
|
+
/** . */
|
|
545
|
+
HTTP_UNUSED_ERROR = 30306,
|
|
546
|
+
|
|
547
|
+
/** . */
|
|
548
|
+
HTTP_UPGRADE_REQUIRED_ERROR = 30426,
|
|
549
|
+
|
|
550
|
+
/** . */
|
|
551
|
+
HTTP_USE_PROXY_ERROR = 30305,
|
|
552
|
+
|
|
553
|
+
/** . */
|
|
554
|
+
INDEX_OUT_OF_RANGE_ERROR = 21112,
|
|
555
|
+
|
|
556
|
+
/** . */
|
|
557
|
+
INPUT_FILE_NOT_FOUND_ERROR = 21009,
|
|
558
|
+
|
|
559
|
+
/** . */
|
|
560
|
+
INPUT_FILE_NOT_SPECIFIED_ERROR = 21008,
|
|
561
|
+
|
|
562
|
+
/** . */
|
|
563
|
+
INVALID_ACCESS_TOKEN_ERROR = 21014,
|
|
564
|
+
|
|
565
|
+
/** No or invalid application root directory specified. */
|
|
566
|
+
INVALID_APP_ROOT_DIRECTORY_ERROR = 21004,
|
|
567
|
+
|
|
568
|
+
/** No or invalid MDE models directory specified. */
|
|
569
|
+
INVALID_MDE_MODELS_DIRECTORY_ERROR = 21005,
|
|
570
|
+
|
|
571
|
+
/** No or invalid physical properties directory specified. */
|
|
572
|
+
INVALID_PROPERTY_SYSTEM_DIRECTORY_ERROR = 21007,
|
|
573
|
+
|
|
574
|
+
/** No or invalid working directory specified. */
|
|
575
|
+
INVALID_WORKING_DIRECTORY_ERROR = 21003,
|
|
576
|
+
|
|
577
|
+
/** . */
|
|
578
|
+
JSON_READER_ERROR = 21111,
|
|
579
|
+
|
|
580
|
+
/** . */
|
|
581
|
+
MDEERROR_REPORTING_INITIALIZATION_ERROR = 21105,
|
|
582
|
+
|
|
583
|
+
/** . */
|
|
584
|
+
MDEINITIALIZATION_ERROR = 21104,
|
|
585
|
+
|
|
586
|
+
/** MDE directory was correctly specified but the directory does not exist. */
|
|
587
|
+
MDE_MODEL_DIRECTORY_NOT_FOUND_ERROR = 21006,
|
|
588
|
+
|
|
589
|
+
/** Missing parameters. */
|
|
590
|
+
MISSING_PARAMETERS_ERROR = 21002,
|
|
591
|
+
|
|
592
|
+
/** . */
|
|
593
|
+
NO_DISCHARGE_RECORDS_ERROR = 21100,
|
|
594
|
+
|
|
595
|
+
/** . */
|
|
596
|
+
NO_DISCHARGE_RECORDS_GENERATED_WARNING = 63001,
|
|
597
|
+
|
|
598
|
+
/** . */
|
|
599
|
+
NO_DISPERSION_RECORDS_ERROR = 21102,
|
|
600
|
+
|
|
601
|
+
/** . */
|
|
602
|
+
NO_DISPERSION_RECORDS_GENERATED_WARNING = 63002,
|
|
603
|
+
|
|
604
|
+
/** . */
|
|
605
|
+
NO_FLAME_RECORDS_ERROR = 21103,
|
|
606
|
+
|
|
607
|
+
/** . */
|
|
608
|
+
OUTPUT_FILE_NOT_SPECIFIED_ERROR = 21010,
|
|
609
|
+
|
|
610
|
+
/** . */
|
|
611
|
+
PHYSICAL_PROPERTY_SYSTEM_INITIALIZATION_ERROR = 21106,
|
|
612
|
+
|
|
613
|
+
/** Success. */
|
|
614
|
+
SUCCESS = 0,
|
|
615
|
+
|
|
616
|
+
/** . */
|
|
617
|
+
UNABLE_TO_READ_DATA_ERROR = 21109,
|
|
618
|
+
|
|
619
|
+
/** Unexpected application error encountered. */
|
|
620
|
+
UNEXPECTED_APPLICATION_ERROR = 21001,
|
|
621
|
+
|
|
622
|
+
/** The calculation has not been run yet. */
|
|
623
|
+
NOT_RUN = -2,
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* Flag for whether we want to deploy or disable solid modelling. In addition to this flag, each component has its own allowSolids flag.
|
|
628
|
+
*/
|
|
629
|
+
export enum SolidModelling {
|
|
630
|
+
/** Solid modelling will be deployed if it is supported by the component in question. */
|
|
631
|
+
DEPLOY_SOLID_MODELLING = 1,
|
|
632
|
+
|
|
633
|
+
/** Solid modelling will not be used, even if it is allowed by the component in question. */
|
|
634
|
+
DISABLE_SOLID_MODELLING = 0,
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* The method used to determine the concentration of interest when post processing dispersion calculations.
|
|
639
|
+
*/
|
|
640
|
+
export enum SpecialConcentration {
|
|
641
|
+
/** The concentration of interest will be the LFL of the material. */
|
|
642
|
+
LFL = 2,
|
|
643
|
+
|
|
644
|
+
/** The concentration of interest will be the LFL fraction specified in the DispersionOutputConfig. */
|
|
645
|
+
LFL_FRACTION = 1,
|
|
646
|
+
|
|
647
|
+
/** The minimum concentration specified in the ScalarUDMOutputs. */
|
|
648
|
+
MIN = 4,
|
|
649
|
+
|
|
650
|
+
/** A method which allows you to use a specific concentration fraction for the concentration of interest. */
|
|
651
|
+
NOT_DEFINED = 0,
|
|
652
|
+
|
|
653
|
+
/** The concentration of interest will be the UFL of the material. */
|
|
654
|
+
UFL = 3,
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* Surface over which the dispersion occurs.
|
|
659
|
+
*/
|
|
660
|
+
export enum SurfaceType {
|
|
661
|
+
/** Dispersion over land. */
|
|
662
|
+
LAND = 1,
|
|
663
|
+
|
|
664
|
+
/** Dispersion over water. */
|
|
665
|
+
WATER = 2,
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
/**
|
|
669
|
+
* Whether the release is a time-varying release or a steady state release using the initial rate.
|
|
670
|
+
*/
|
|
671
|
+
export enum TimeVaryingOption {
|
|
672
|
+
/** Use initial rate modelling. */
|
|
673
|
+
INITIAL_RATE = 1,
|
|
674
|
+
|
|
675
|
+
/** Use time-varying rate modelling. */
|
|
676
|
+
TIME_VARYING_RATE = 2,
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
/**
|
|
680
|
+
* The type of toxic result.
|
|
681
|
+
*/
|
|
682
|
+
export enum ToxicResultType {
|
|
683
|
+
/** Toxic dose. */
|
|
684
|
+
TOXIC_DOSE = 3,
|
|
685
|
+
|
|
686
|
+
/** Probability of death. */
|
|
687
|
+
TOXIC_LETHALITY = 1,
|
|
688
|
+
|
|
689
|
+
/** Toxic probit number. */
|
|
690
|
+
TOXIC_PROBIT = 2,
|
|
691
|
+
|
|
692
|
+
/** Toxic result type not set. */
|
|
693
|
+
UNSET = 0,
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
/**
|
|
697
|
+
* The conditions of the material in a vessel.
|
|
698
|
+
*/
|
|
699
|
+
export enum VesselConditions {
|
|
700
|
+
/** Liquid stored at atmospheric pressure. */
|
|
701
|
+
ATMOSPHERIC_LIQUID_VESSEL = 5,
|
|
702
|
+
|
|
703
|
+
/** Homogenesously mixed two phase. */
|
|
704
|
+
HOMOGENEOUS_VESSEL_TYPE = 2,
|
|
705
|
+
|
|
706
|
+
/** Pressurised liquid vessel. */
|
|
707
|
+
PRESSURIZED_LIQUID_VESSEL = 4,
|
|
708
|
+
|
|
709
|
+
/** Pressurised gas vessel. */
|
|
710
|
+
PURE_GAS = 1,
|
|
711
|
+
|
|
712
|
+
/** Two phase vessel. */
|
|
713
|
+
STRATIFIED_TWO_PHASE_VESSEL = 3,
|
|
714
|
+
|
|
715
|
+
/** Unset. */
|
|
716
|
+
UNSET = 0,
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
/**
|
|
720
|
+
* The shape of a vessel.
|
|
721
|
+
*/
|
|
722
|
+
export enum VesselShape {
|
|
723
|
+
/** Horizontal cylinder shape for a vessel. */
|
|
724
|
+
HORIZONTAL_CYLINDER = 2,
|
|
725
|
+
|
|
726
|
+
/** Vertical cylinder shape for a vessel. */
|
|
727
|
+
VERTICAL_CYLINDER = 1,
|
|
728
|
+
|
|
729
|
+
/** Cuboid shape for a vessel. */
|
|
730
|
+
VESSEL_CUBOID = 4,
|
|
731
|
+
|
|
732
|
+
/** Sphere shape for a vessel. */
|
|
733
|
+
VESSEL_SPHERE = 3,
|
|
734
734
|
}
|