Input URI
{base url} + db/HSTG |
---|
Active Methods
POST, GET, PUT, DELETE |
---|
JSON Schema
Details
"HSTG": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"NAME": {
"description": "HydrationStageName",
"type": "string"
},
"bINITAL_TEMP": {
"description": "UsedInitialTemperature",
"type": "boolean"
},
"INITIAL_TEMP": {
"description": "InitialTemperature",
"type": "number"
},
"ADD_STEP": {
"description": "AdditionalStep",
"type": "array",
"items": {
"type": "number"
}
},
"ACT_ELEM": {
"description": "ActivationElementGroupList",
"type": "array",
"items": {
"type": "string"
}
},
"ACT_BNGR": {
"description": "ActivationBoundaryGroupList",
"type": "array",
"items": {
"type": "string"
}
},
"DACT_BNGR": {
"description": "DeactivationBoundaryGroupList",
"type": "array",
"items": {
"type": "string"
}
},
"ACT_LOAD": {
"description": "ActivationLoadGroupList",
"type": "array",
"items": {
"type": "object",
"properties": {
"LOAD_NAME": {
"description": "LoadCaseName",
"type": "string"
},
"DAY": {
"description": "ACTORDACTday",
"type": "string"
}
}
}
},
"DACT_LOAD": {
"description": "DeactivationLoadGroupList",
"type": "array",
"items": {
"type": "object",
"properties": {
"LOAD_NAME": {
"description": "LoadCaseName",
"type": "string"
},
"DAY": {
"description": "ACTORDACTday",
"type": "string"
}
}
}
}
}
}
}
Examples
Define Construction Stage for Hydration
"Assign": {
"1": {
"NAME": "CS01",
"bINITAL_TEMP": true,
"INITIAL_TEMP": 25,
"ADD_STEP": [
10,
20,
30,
45,
60,
80,
100,
130,
170,
250,
350,
500,
700,
1000
],
"ACT_ELEM": [
"GR2",
"GR1"
],
"ACT_BNGR": [
"BNGR3",
"BNGR2",
"BNGR1"
],
"DACT_BNGR": [
"BNGR4"
],
"ACT_LOAD": [
{
"LOAD_NAME": "LG01",
"DAY": "10.000000"
}
],
"DACT_LOAD": [
{
"LOAD_NAME": "LG02",
"DAY": "80.000000"
}
]
}
}
}
Specifications
No. | Description | Key | Value Type | Default | Required | |
---|---|---|---|---|---|---|
1 |
Hydration Stage Name |
"NAME" |
String |
- |
Required |
|
2 |
Used Initial Temperature |
"bINITAL_TEMP" |
Boolean |
False |
Optional |
|
3 |
Initial Temperature |
"INITIAL_TEMP" |
Number |
- |
Optional |
|
4 |
Additional Step |
"ADD_STEP" |
Array |
- |
Required |
|
5 |
Activation Structure Group List |
"ACT_ELEM" |
Array |
- |
Required |
|
6 |
Activation Boundary Group List |
"ACT_BNGR" |
Array |
- |
Required |
|
7 |
Deactivation Boundary Group List |
"DACT_BNGR" |
Array |
- |
Required |
|
8 |
Activation Load Group List • Insert the data as an object |
"ACT_LOAD" |
Array |
Empty |
Optional |
|
(1) |
Load Case Name |
"LOAD_NAME" |
String |
- |
Optional |
|
(2) |
Activation Day |
"DAY" |
String |
- |
Optional |
|
9 |
Deactivation Load Group List • Insert the data as an object |
"DACT_LOAD" |
Array |
Empty |
Optional |
|
(1) |
Load Case Name |
"LOAD_NAME" |
String |
- |
Optional |
|
(2) |
Deactivation Day |
"DAY" |
String |
- |
Optional |