Input URI
{base url} + post/TABLE |
---|
Active Methods
POST |
---|
JSON Schema
Details
"RESULTGRAPHIC": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"Argument": {
"type": "object",
"properties": {
"TABLE_NAME": {
"type": "string",
"description": "Table Name"
},
"TABLE_TYPE": {
"type": "string",
"description": "Result Table Type",
"enum": [
"THISBEAMFORCE"
]
},
"EXPORT_PATH": {
"type": "string",
"description": "Result Table Save Path"
},
"UNIT": {
"type": "object",
"description": "Response Unit Setting",
"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": "Response Number Format",
"properties": {
"FORMAT": {
"type": "string",
"description": "Number format",
"enum": [
"Default",
"Fixed",
"Scientific",
"General"
]
},
"PLACE": {
"type": "integer",
"description": "Digit place"
}
}
},
"COMPONENTS": {
"type": "array",
"description": "Components of Result Table",
"items": {
"type": "string"
}
},
"NODE_ELEMS": {
"type": "object",
"description": "Node / Element No. Input",
"properties": {
"KEYS": {
"type": "array",
"description": "Method 1: Specify Each ID",
"items": {
"type": "integer"
}
},
"TO": {
"type": "string",
"description": "Method 2: Specify ID Range"
},
"STRUCTURE_GROUP_NAME": {
"type": "string",
"description": "Method 3: Specify Structure Group Name"
}
}
},
"LOAD_CASE_NAMES": {
"type": "array",
"description": "Time History Load Name",
"items": {
"type": "string"
}
}
}
}
}
}
}
Request Examples
Yield Strength
"Argument": {
"TABLE_NAME": "YieldStrength",
"TABLE_TYPE": "FIBR_YILEDSTRENGTH",
"EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
"UNIT": {
"FORCE": "kN",
"DIST": "m"
},
"STYLES": {
"FORMAT": "Fixed",
"PLACE": 12
},
"COMPONENTS": [
"Type",
"Definition",
"Elem",
"Hinge Location",
"Inelastic Hinge Prop.",
"Load Case",
"Crack/Rc'",
"Crack/Mc'",
"Crack/Step",
"Yield/Ry'",
"Yield/My'",
"Yield/Step",
"Ultimate/Ru",
"Ultimate/Mu",
"Ultimate/Step",
"Estimate Yield/Ry",
"Estimate Yield/My",
"Estimate Yield/Step",
"Mmax",
"Ieff",
"Ieff/I"
],
"NODE_ELEMS": {
"KEYS": [
1240
]
},
"TH_LOAD_CASE_NAMES": [
"kh"
]
}
}
Response Examples
Yield Strength
"YieldStrength": {
"FORCE": "kN",
"DIST": "m",
"HEAD": [
"Index",
"Type",
"Definition",
"Elem",
"Hinge Location",
"Inelastic Hinge Prop.",
"Load Case",
"Crack/Rc'",
"Crack/Mc'",
"Crack/Step",
"Yield/Ry'",
"Yield/My'",
"Yield/Step",
"Ultimate/Ru",
"Ultimate/Mu",
"Ultimate/Step",
"Estimate Yield/Ry",
"Estimate Yield/My",
"Estimate Yield/Step",
"Mmax",
"Ieff",
"Ieff/I"
],
"DATA": [
[
"1",
"Distributed",
"Fiber",
"1240",
"1-Pos",
"P2(2) (CONC)",
"kh(all)",
"0.000000000000",
"0.000000000000",
"-1",
"0.002047820000",
"0.000000000000",
"75",
"0.002142960000",
"49560.500000000000",
"78",
"0.002088760000",
"48668.300000000003",
"78",
"48947.599999999999",
"0.116501000000",
"1.135970000000"
],
[
"2",
"Distributed",
"Fiber",
"1240",
"2-Pos",
"P2(2) (CONC)",
"kh(all)",
"0.000000000000",
"0.000000000000",
"-1",
"0.002071200000",
"0.000000000000",
"79",
"0.002132520000",
"49410.199999999997",
"81",
"0.002076460000",
"48357.500000000000",
"81",
"48824.900000000001",
"0.116442000000",
"1.135400000000"
],
[
"3",
"Distributed",
"Fiber",
"1240",
"3-Pos",
"P2(2) (CONC)",
"kh(all)",
"0.000000000000",
"0.000000000000",
"-1",
"0.002058940000",
"0.000000000000",
"82",
"0.002148490000",
"49642.699999999997",
"85",
"0.002096510000",
"48837.599999999999",
"85",
"49087.199999999997",
"0.116474000000",
"1.135710000000"
]
]
}
}
Specifications
No. | Description | Key | Value Type | Default | Required | |
---|---|---|---|---|---|---|
1 |
Table Name • Response Table Title |
"TABLE_NAME" |
String |
Empty |
Optional |
|
2 |
Result Table Type • Beam Force: "FIBR_YILEDSTRENGTH" |
"TABLE_TYPE" |
String |
- |
Required |
|
3 |
Result Table Save Path |
"EXPORT_PATH" |
String |
- |
Optional |
|
4 |
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 |
|
5 |
Response Number Format |
"STYLES" |
Object |
System |
Optional |
|
(1) |
Number Format • "Default" • "Fixed" • "Scientific" • "General" |
"FORMAT" |
String |
- |
Optional |
|
(2) |
Digit Place • 0 to 15 |
"PLACE" |
Integer |
- |
Optional |
|
6 |
Components of Result Table |
"COMPONENTS" |
Array [String] |
All |
Optional |
|
7 |
Node / Element No. Input • Use Only One of the Three 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 |
|
Method 3: Specify Structure Group Name |
||||||
(1) |
• "STRUCTURE_GROUP_NAME": "SG1" |
"STRUCTURE_GROUP_NAME" |
String |
- |
Optional |
|
8 |
Time History Load Name |
"LOAD_CASE_NAMES" |
Array [String] |
All |
Optional |