Input URI
{base url} + db/HPCE |
---|
Active Methods
POST, GET, PUT, DELETE |
---|
JSON Schema
Details
{
"HPCE": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"NAME": {
"description": "Name",
"type": "string"
},
"DIAMETER": {
"description": "PipeDiameter",
"type": "number"
},
"COEF": {
"description": "ConvectionCoefficient",
"type": "number"
},
"HEAT": {
"description": "SpecificHeat",
"type": "number"
},
"DENSITY": {
"description": "WeightDensity",
"type": "number"
},
"TEMPER": {
"description": "InletTemp",
"type": "number"
},
"FLOW_RATE": {
"description": "FlowRate",
"type": "number"
},
"START_TIME": {
"description": "StartTime",
"type": "integer"
},
"END_TIME": {
"description": "EndTime",
"type": "integer"
},
"ITEMS": {
"description": "NodeList",
"type": "array",
"items": {
"type": "integer"
}
}
}
}
}
"HPCE": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"NAME": {
"description": "Name",
"type": "string"
},
"DIAMETER": {
"description": "PipeDiameter",
"type": "number"
},
"COEF": {
"description": "ConvectionCoefficient",
"type": "number"
},
"HEAT": {
"description": "SpecificHeat",
"type": "number"
},
"DENSITY": {
"description": "WeightDensity",
"type": "number"
},
"TEMPER": {
"description": "InletTemp",
"type": "number"
},
"FLOW_RATE": {
"description": "FlowRate",
"type": "number"
},
"START_TIME": {
"description": "StartTime",
"type": "integer"
},
"END_TIME": {
"description": "EndTime",
"type": "integer"
},
"ITEMS": {
"description": "NodeList",
"type": "array",
"items": {
"type": "integer"
}
}
}
}
}
Examples
Pipe Cooling
{
"Assign": {
"1": {
"NAME": "PC1",
"DIAMETER": 0,
"COEF": 0,
"HEAT": 0.1,
"DENSITY": 10,
"TEMPER": 20,
"FLOW_RATE": 20,
"START_TIME": 0,
"END_TIME": 0,
"ITEMS": [
1,
2
]
}
}
}
"Assign": {
"1": {
"NAME": "PC1",
"DIAMETER": 0,
"COEF": 0,
"HEAT": 0.1,
"DENSITY": 10,
"TEMPER": 20,
"FLOW_RATE": 20,
"START_TIME": 0,
"END_TIME": 0,
"ITEMS": [
1,
2
]
}
}
}
Specifications
No. | Description | Key | Value Type | Default | Required |
---|---|---|---|---|---|
1 |
Pipe Cooling Name |
"NAME" |
String |
- |
Required |
2 |
Cooling Pipe Diameter |
"DIAMETER" |
Number |
0 |
Optional |
3 |
Convection Coefficient |
"COEF" |
Number |
0 |
Optional |
4 |
Specific Heat |
"HEAT" |
Number |
0 |
Optional |
5 |
Weight Density |
"DENSITY" |
Number |
0 |
Optional |
6 |
Inlet Temperature |
"TEMPER" |
Number |
0 |
Optional |
7 |
Flow Rate |
"FLOW_RATE" |
Number |
0 |
Optional |
8 |
Inflow Start Time |
"START_TIME" |
Integer |
0 |
Optional |
9 |
Inflow End Time |
"END_TIME" |
Integer |
0 |
Optional |
10 |
Node List |
"ITEMS" |
Array |
- |
Required |