入力 URI
{base url} + db/HPCE |
---|
メソッド
POST, GET, PUT, DELETE |
---|
JSON スキーマ
詳細
{
"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"
}
}
}
}
}
例
パイプクーリング
{
"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
]
}
}
}
仕様
No. | 説明 | Key | データ型 | Default | 必須 |
---|---|---|---|---|---|
1 |
Pipe Cooling Name |
"NAME" |
String |
- |
必須 |
2 |
Cooling Pipe Diameter |
"DIAMETER" |
Number |
0 |
オプション |
3 |
Convection Coefficient |
"COEF" |
Number |
0 |
オプション |
4 |
Specific Heat |
"HEAT" |
Number |
0 |
オプション |
5 |
Weight Density |
"DENSITY" |
Number |
0 |
オプション |
6 |
Inlet Temperature |
"TEMPER" |
Number |
0 |
オプション |
7 |
Flow Rate |
"FLOW_RATE" |
Number |
0 |
オプション |
8 |
Inflow Start Time |
"START_TIME" |
Integer |
0 |
オプション |
9 |
Inflow End Time |
"END_TIME" |
Integer |
0 |
オプション |
10 |
Node List |
"ITEMS" |
Array |
- |
必須 |