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": [
"TH_DISP",
"TH_VELOCITY",
"TH_ACCEL"
]
},
"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"
}
}
},
"TH_CASE_NAME": {
"type": "array",
"description": "TimeHistoryLoadCases",
"items": {
"type": "string"
}
},
"STEP": {
"type": "object",
"description": "OutputTimeStep",
"properties": {
"FROM": {
"type": "number",
"description": "StartTime"
},
"TO": {
"type": "number",
"description": "EndTime"
},
"STEPS": {
"type": "integer",
"description": "TimeInterval"
}
}
},
"REF_PT": {
"type": "string",
"description": "ReferencePoint-Method1",
"enum": [
"Ground",
"AddGroundMotion"
]
},
"ANR_NODE": {
"type": "integer",
"description": "ReferencePoint-Method2"
}
}
}
}
}
}
Request Examples
Displacement
"Argument": {
"TEXT_TYPE": "TH_DISP",
"EXPORT_PATH": "C:\\MIDAS\\Result\\TH_Displacement_Out.JSON",
"UNIT": {
"FORCE": "N",
"DIST": "MM"
},
"STYLES": {
"FORMAT": "Fixed",
"PLACE": 6
},
"COMPONENTS": [
"Node",
"Load",
"Time/Step",
"Dx",
"Dy",
"Dz",
"Rx",
"Ry",
"Rz"
],
"NODE_ELEMS": {
"KEYS": [
10
]
},
"TH_CASE_NAME": [
"Elcent"
],
"STEP": {
"FROM": 0.1,
"TO": 0.5,
"STEPS": 1
},
"REF_PT": "Ground"
}
}
Velocity
"Argument": {
"TEXT_TYPE": "TH_VELOCITY",
"EXPORT_PATH": "C:\\MIDAS\\Result\\TH_Velocity_Out.JSON",
"UNIT": {
"FORCE": "kN",
"DIST": "M"
},
"STYLES": {
"FORMAT": "Fixed",
"PLACE": 6
},
"COMPONENTS": [
"Node",
"Load",
"Time/Step",
"Dx",
"Dy",
"Dz",
"Rx",
"Ry",
"Rz"
],
"NODE_ELEMS": {
"KEYS": [
10
]
},
"TH_CASE_NAME": [
"Elcent"
],
"STEP": {
"FROM": 0.1,
"TO": 0.5,
"STEPS": 1
},
"REF_PT": "Ground"
}
}
Acceleration
"Argument": {
"TEXT_TYPE": "TH_ACCEL",
"EXPORT_PATH": "C:\\MIDAS\\Result\\TH_Acceleration_Out.JSON",
"UNIT": {
"FORCE": "kN",
"DIST": "M"
},
"STYLES": {
"FORMAT": "Fixed",
"PLACE": 6
},
"COMPONENTS": [
"Node",
"Load",
"Time/Step",
"Dx",
"Dy",
"Dz",
"Rx",
"Ry",
"Rz"
],
"NODE_ELEMS": {
"KEYS": [
10
]
},
"TH_CASE_NAME": [
"Elcent"
],
"STEP": {
"FROM": 0.1,
"TO": 0.5,
"STEPS": 1
},
"REF_PT": "Ground"
}
}
Response Examples
Displacement
"TH_DISP": {
"FORCE": "N",
"DIST": "mm",
"HEAD": [
"Index",
"Node",
"Load",
"Time/Step",
"Dx",
"Dy",
"Dz",
"Rx",
"Ry",
"Rz"
],
"DATA": [
[
"1",
"10",
"Elcent",
"0.100",
"-0.212573",
"-0.367424",
"-0.374784",
"0.000018",
"-0.000011",
"0.000022"
],
[
"2",
"10",
"Elcent",
"0.200",
"-0.748871",
"-1.793398",
"-1.889303",
"0.000136",
"-0.000116",
"0.000139"
],
[
"3",
"10",
"Elcent",
"0.300",
"-2.190583",
"-6.156868",
"-6.706040",
"0.000636",
"-0.000576",
"0.000505"
],
[
"4",
"10",
"Elcent",
"0.400",
"-2.740721",
"-12.268332",
"-14.108861",
"0.001874",
"-0.001677",
"0.001110"
]
]
}
}
Velocity
"TH_VELOCITY": {
"FORCE": "kN",
"DIST": "m",
"HEAD": [
"Index",
"Node",
"Load",
"Time/Step",
"Dx",
"Dy",
"Dz",
"Rx",
"Ry",
"Rz"
],
"DATA": [
[
"1",
"10",
"Elcent",
"0.100",
"-0.004251",
"-0.007348",
"-0.007496",
"0.000353",
"-0.000210",
"0.000438"
],
[
"2",
"10",
"Elcent",
"0.200",
"-0.006475",
"-0.021171",
"-0.022795",
"0.002015",
"-0.001898",
"0.001906"
],
[
"3",
"10",
"Elcent",
"0.300",
"-0.022360",
"-0.066098",
"-0.073540",
"0.007989",
"-0.007304",
"0.005403"
],
[
"4",
"10",
"Elcent",
"0.400",
"0.011357",
"-0.056131",
"-0.074516",
"0.016769",
"-0.014718",
"0.006712"
]
]
}
}
Acceleration
"TH_ACCEL": {
"FORCE": "kN",
"DIST": "m",
"HEAD": [
"Index",
"Node",
"Load",
"Time/Step",
"Dx",
"Dy",
"Dz",
"Rx",
"Ry",
"Rz"
],
"DATA": [
[
"1",
"10",
"Elcent",
"0.100",
"-0.085029",
"-0.146970",
"-0.149913",
"0.007052",
"-0.004200",
"0.008759"
],
[
"2",
"10",
"Elcent",
"0.200",
"0.040568",
"-0.129481",
"-0.156067",
"0.026187",
"-0.029557",
"0.020606"
],
[
"3",
"10",
"Elcent",
"0.300",
"-0.358272",
"-0.769067",
"-0.858839",
"0.093293",
"-0.078564",
"0.049322"
],
[
"4",
"10",
"Elcent",
"0.400",
"1.032606",
"0.968417",
"0.839312",
"0.082311",
"-0.069727",
"-0.023142"
]
]
}
}
Specifications
No. | Description | Key | Value Type | Default | Required | |
---|---|---|---|---|---|---|
1 |
Result Text Type • Displacement: "TH_DISP" • Velocity: "TH_VELOCITY" • Acceleration: "TH_ACCEL" |
"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 |
Time History Load Case |
"TH_CASE_NAME" |
Array [String] |
All |
Optional |
|
8 |
Output Time Step |
"STEP" |
Object |
- |
Required |
|
(1) |
Start Time |
"FROM" |
Number |
- |
Required |
|
(2) |
End Time |
"TO" |
Number |
- |
Required |
|
(3) |
Time Interval |
"STEPS" |
Integer |
- |
Required |
|
Reference Point: Method 1 |
||||||
9 |
Reference Point • "Ground" • "Add Ground Motion" |
"REF_PT" |
String |
"Ground" |
Optional |
|
Reference Point: Method 2 |
||||||
9 |
Reference Point • Another Node |
"ANR_NODE" |
Integer |
- |
Required |