Input URI
{base url} + post/TEXT |
---|
Active Methods
POST |
---|
JSON Schema
Details
"TEXT": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"Argument": {
"type": "object",
"properties": {
"TABLE_TYPE": {
"type": "string",
"description": "ResultTableType",
"enum": [
"PO_DISP"
]
},
"EXPORT_PATH": {
"type": "string",
"description": "ResultTableSavePath"
},
"UNIT": {
"type": "object",
"description": "ResponseUnitSetting",
"properties": {
"FORCE": {
"type": "string",
"description": "Force"
},
"DIST": {
"type": "string",
"description": "Length"
},
"HEAT": {
"type": "string",
"description": "Heat"
},
"TEMP": {
"type": "string",
"description": "Temperature"
}
}
},
"STYLES": {
"type": "object",
"description": "ResponseNumberFormat",
"properties": {
"FORMAT": {
"type": "string",
"description": "Numberformat",
"enum": [
"Fixed",
"Exponential"
]
},
"PLACE": {
"type": "integer",
"description": "Digitplace"
}
}
},
"COMPONENTS": {
"type": "array",
"description": "ComponentsofResultTable",
"items": {
"type": "string"
}
},
"NODE_ELEMS": {
"type": "object",
"description": "Node/ElementNo.Input",
"properties": {
"KEYS": {
"type": "array",
"description": "Method1:SpecifyEachID",
"items": {
"type": "integer"
}
},
"TO": {
"type": "string",
"description": "Method2:SpecifyIDRange"
}
}
},
"PO_CASE_NAME": {
"type": "array",
"description": "PushoverLoadCases",
"items": {
"type": "string"
}
},
"STEP": {
"type": "object",
"description": "OutputStep",
"properties": {
"FROM": {
"type": "number",
"description": "StartStep"
},
"TO": {
"type": "number",
"description": "EndStep"
},
"STEPS": {
"type": "integer",
"description": "StepInterval"
}
}
},
"REF_PT": {
"type": "string",
"description": "ReferencePoint-Method1",
"enum": [
"Ground"
]
},
"ANR_NODE": {
"type": "integer",
"description": "ReferencePoint-Method2"
}
}
}
}
}
}
Request Examples
Displacement
"Argument": {
"TEXT_TYPE": "PO_DISP",
"EXPORT_PATH": "C:\\MIDAS\\Result\\PO_Displacement_Out.JSON",
"UNIT": {
"FORCE": "N",
"DIST": "MM"
},
"STYLES": {
"FORMAT": "Fixed",
"PLACE": 6
},
"COMPONENTS": [
"Node",
"Load",
"Step",
"Dx",
"Dy",
"Dz",
"Rx",
"Ry",
"Rz"
],
"NODE_ELEMS": {
"KEYS": [
22
]
},
"PO_CASE_NAME": [
"PX"
],
"STEP": {
"FROM": 1,
"TO": 10,
"STEPS": 1
},
"REF_PT": "Ground"
}
}
Response Examples
Displacement
"PO_DISP": {
"FORCE": "N",
"DIST": "mm",
"HEAD": [
"Index",
"Node",
"Load",
"Step",
"Dx",
"Dy",
"Dz",
"Rx",
"Ry",
"Rz"
],
"DATA": [
[
"1",
"22",
"PX",
"1",
"-4.986447",
"0.000000",
"-0.017857",
"0.000000",
"0.000403",
"0.000000"
],
[
"2",
"22",
"PX",
"2",
"-9.972893",
"0.000000",
"-0.035714",
"0.000000",
"0.000806",
"0.000000"
],
[
"3",
"22",
"PX",
"3",
"-14.959340",
"0.000000",
"-0.053572",
"0.000000",
"0.001210",
"0.000000"
],
[
"4",
"22",
"PX",
"4",
"-19.945786",
"0.000000",
"-0.071429",
"0.000000",
"0.001613",
"0.000000"
],
[
"5",
"22",
"PX",
"5",
"-24.932233",
"0.000000",
"-0.089286",
"0.000000",
"0.002016",
"0.000000"
],
[
"6",
"22",
"PX",
"6",
"-29.918679",
"0.000000",
"-0.107143",
"0.000000",
"0.002419",
"0.000000"
],
[
"7",
"22",
"PX",
"7",
"-34.905126",
"0.000000",
"-0.125000",
"0.000000",
"0.002822",
"0.000000"
],
[
"8",
"22",
"PX",
"8",
"-39.891573",
"0.000000",
"-0.142857",
"0.000000",
"0.003226",
"0.000000"
],
[
"9",
"22",
"PX",
"9",
"-44.878019",
"0.000000",
"-0.160715",
"0.000000",
"0.003629",
"0.000000"
]
]
}
}
Specifications
No. | Description | Key | Value Type | Default | Required | |
---|---|---|---|---|---|---|
1 |
Result Text Type • Displacement: "PO_DISP" |
"TEXT_TYPE" |
String |
- |
Required |
|
2 |
Result Table Save Path |
"EXPORT_PATH" |
String |
- |
Optional |
|
3 |
Response Unit Setting |
"UNIT" |
Object |
System |
Optional |
|
(1) |
Force |
"FORCE" |
String |
- |
Optional |
|
(2) |
Length |
"DIST" |
String |
- |
Optional |
|
(3) |
Heat |
"HEAT" |
String |
- |
Optional |
|
(4) |
Temperature |
"TEMP" |
String |
- |
Optional |
|
4 |
Response Number Format |
"STYLES" |
Object |
System |
Optional |
|
(1) |
Number Format • "Fixed" • "Exponential" |
"FORMAT" |
String |
- |
Optional |
|
(2) |
Digit Place • 0 to 15 |
"PLACE" |
Integer |
- |
Optional |
|
5 |
Components of Result Table |
"COMPONENTS" |
Array [String] |
All |
Optional |
|
6 |
Node / Element No. Input • Use Only One of the Two Methods |
"NODE_ELEMS" |
Object |
All |
Optional |
|
Method 1: Specify Each ID |
||||||
(1) |
• "KEYS": [101, 102, 103] |
"KEYS" |
Array |
- |
Optional |
|
Method 2: Specify ID Range |
||||||
(1) |
• "TO": "101 to 105" |
"TO" |
String |
- |
Optional |
|
7 |
Pushover Load Case |
"PO_CASE_NAME" |
Array [String] |
All |
Optional |
|
8 |
Output Step |
"STEP" |
Object |
- |
Required |
|
(1) |
Start Step |
"FROM" |
Number |
- |
Required |
|
(2) |
End Step |
"TO" |
Number |
- |
Required |
|
(3) |
Step Interval |
"STEPS" |
Integer |
- |
Required |
|
Reference Point: Method 1 |
||||||
9 |
Reference Point • "Ground" |
"REF_PT" |
String |
"Ground" |
Optional |
|
Reference Point: Method 2 |
||||||
9 |
Reference Point • Another Node |
"ANR_NODE" |
Integer |
- |
Required |