@dnv-plant/typescriptpws 1.0.95 → 1.0.96-alpha.2289077
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/index.ts +2 -2
- package/package.json +1 -1
- package/src/calculations/applicationTools.ts +36 -47
- package/src/calculations/calculationBase.ts +27 -61
- package/src/calculations/discharge.ts +274 -364
- package/src/calculations/dispersion.ts +80 -88
- package/src/calculations/dispersionView.ts +360 -439
- package/src/calculations/fireball.ts +64 -70
- package/src/calculations/jetFire.ts +104 -118
- package/src/calculations/lateExplosion.ts +150 -154
- package/src/calculations/linkedRunners.ts +1025 -1095
- package/src/calculations/poolFire.ts +64 -70
- package/src/calculations/properties.ts +37 -50
- package/src/calculations/radiation.ts +467 -575
- package/src/calculations/standalones.ts +55 -66
- package/src/calculations/toxics.ts +65 -77
- package/src/calculations/utilities.ts +322 -479
- package/src/constants.ts +14 -14
- package/src/entities.ts +752 -1000
- package/src/entity-schemas.ts +1279 -1286
- package/src/enums.ts +11 -11
- package/src/materials.ts +86 -256
- package/src/utilities.ts +41 -50
package/src/constants.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/***********************************************************************
|
|
2
|
-
* This file has been auto-generated by a code generation tool.
|
|
3
|
-
*
|
|
4
|
-
* DO NOT MODIFY THIS FILE
|
|
5
|
-
* This file is maintained by DNV.
|
|
6
|
-
* Editing it may lead to inconsistent results and limit DNV's ability to provide support.
|
|
7
|
-
* Please contact DNV if you believe changes are required.
|
|
8
|
-
*
|
|
9
|
-
* Version: 1.0.
|
|
10
|
-
* Date/time:
|
|
11
|
-
* Template: templates/typescriptpws/constants.razor.
|
|
12
|
-
***********************************************************************/
|
|
2
|
+
* This file has been auto-generated by a code generation tool.
|
|
3
|
+
*
|
|
4
|
+
* DO NOT MODIFY THIS FILE
|
|
5
|
+
* This file is maintained by DNV.
|
|
6
|
+
* Editing it may lead to inconsistent results and limit DNV's ability to provide support.
|
|
7
|
+
* Please contact DNV if you believe changes are required.
|
|
8
|
+
*
|
|
9
|
+
* Version: 1.0.96
|
|
10
|
+
* Date/time: 4 Apr 2026 08:17:52
|
|
11
|
+
* Template: templates/typescriptpws/constants.razor.
|
|
12
|
+
***********************************************************************/
|
|
13
13
|
|
|
14
14
|
export const ABS_TOL_RAD = 0.0000000001;
|
|
15
15
|
// Absolute tolerance for radiation calculations.
|
|
@@ -335,11 +335,11 @@ export const USER_INPUT_POST_EXPANSION_VELOCITY = 0;
|
|
|
335
335
|
export const WIND_CUTOFF_HEIGHT = 1.0;
|
|
336
336
|
// Cut-off height for wind speed calculations.
|
|
337
337
|
|
|
338
|
-
export const PWS_CLIENT_ID =
|
|
338
|
+
export const PWS_CLIENT_ID = 'eeca6885-127e-4405-aa1f-3a8e69acc451';
|
|
339
339
|
// Application constants.
|
|
340
340
|
|
|
341
|
-
export const REST_API_URI =
|
|
341
|
+
export const REST_API_URI = 'https://plantwebservices.dnv.com/api/';
|
|
342
342
|
// REST API URIs root.
|
|
343
343
|
|
|
344
|
-
export const REST_API_VERSION =
|
|
344
|
+
export const REST_API_VERSION = '1';
|
|
345
345
|
// REST API version number.
|