Skip to main content
JSON Manual Created Edited

Displacement/Velocity/Acceleration - TH Result Table

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": "TableName"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "THISDISPLACEMENT",
                            "THISVELOCITY",
                            "THISABSOLUTEACCEL",
                            "THISRELATIVEACCEL"
                        ]
                    },
                    "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": [
                                    "Default",
                                    "Fixed",
                                    "Scientific",
                                    "General"
                                ]
                            },
                            "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"
                            },
                            "STRUCTURE_GROUP_NAME": {
                                "type": "string",
                                "description": "Method3:SpecifyStructureGroupName"
                            }
                        }
                    },
                    "LOAD_CASE_NAMES": {
                        "type": "array",
                        "description": "StaticLoad/LoadCombinationName&Type",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Displacement

{
    "Argument": {
        "TABLE_NAME": "Displacement",
        "TABLE_TYPE": "THISDISPLACEMENT",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "N",
            "DIST": "mm"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "DX/DX",
            "DX/Time/Step",
            "DY/DY",
            "DY/Time/Step",
            "DZ/DZ",
            "DZ/Time/Step",
            "RX/RX",
            "RX/Time/Step",
            "RY/RY",
            "RY/Time/Step",
            "RZ/RZ",
            "RZ/Time/Step"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                10
            ]
        },
        "LOAD_CASE_NAMES": [
            "Elcent(TH:max)",
            "Elcent(TH:min)"
        ]
    }
}

Velocity

{
    "Argument": {
        "TABLE_NAME": "Velocity",
        "TABLE_TYPE": "THISVELOCITY",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "DX/DX",
            "DX/Time/Step",
            "DY/DY",
            "DY/Time/Step",
            "DZ/DZ",
            "DZ/Time/Step",
            "RX/RX",
            "RX/Time/Step",
            "RY/RY",
            "RY/Time/Step",
            "RZ/RZ",
            "RZ/Time/Step"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                10
            ]
        },
        "LOAD_CASE_NAMES": [
            "Elcent(TH:max)",
            "Elcent(TH:min)"
        ]
    }
}

Absolute Acceleration

{
    "Argument": {
        "TABLE_NAME": "AbsoluteAcceleration",
        "TABLE_TYPE": "THISABSOLUTEACCEL",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "DX/DX",
            "DX/Time/Step",
            "DY/DY",
            "DY/Time/Step",
            "DZ/DZ",
            "DZ/Time/Step",
            "RX/RX",
            "RX/Time/Step",
            "RY/RY",
            "RY/Time/Step",
            "RZ/RZ",
            "RZ/Time/Step"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                10
            ]
        },
        "LOAD_CASE_NAMES": [
            "Elcent(TH:max)",
            "Elcent(TH:min)"
        ]
    }
}

Relative Acceleration

{
    "Argument": {
        "TABLE_NAME": "RelativeAcceleration",
        "TABLE_TYPE": "THISRELATIVEACCEL",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "DX/DX",
            "DX/Time/Step",
            "DY/DY",
            "DY/Time/Step",
            "DZ/DZ",
            "DZ/Time/Step",
            "RX/RX",
            "RX/Time/Step",
            "RY/RY",
            "RY/Time/Step",
            "RZ/RZ",
            "RZ/Time/Step"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                10
            ]
        },
        "LOAD_CASE_NAMES": [
            "Elcent(TH:max)",
            "Elcent(TH:min)"
        ]
    }
}


Response Examples

Displacement

{
    "Example": {
        "FORCE": "N",
        "DIST": "mm",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "DX/DX",
            "DX/Time/Step",
            "DY/DY",
            "DY/Time/Step",
            "DZ/DZ",
            "DZ/Time/Step",
            "RX/RX",
            "RX/Time/Step",
            "RY/RY",
            "RY/Time/Step",
            "RZ/RZ",
            "RZ/Time/Step"
        ],
        "DATA": [
            [
                "1",
                "10",
                "Elcent(max)",
                "596.416378612533",
                "2.600000000000",
                "653.432783248434",
                "2.600000000000",
                "500.789364547815",
                "2.400000000000",
                "0.246347948089",
                "2.100000000000",
                "0.203149986317",
                "2.400000000000",
                "0.081485738031",
                "4.600000000000"
            ],
            [
                "2",
                "10",
                "Elcent(min)",
                "-793.410551124026",
                "2.100000000000",
                "-763.692215616999",
                "2.100000000000",
                "-669.752215933897",
                "2.000000000000",
                "-0.203251540673",
                "2.400000000000",
                "-0.244702299160",
                "2.100000000000",
                "-0.085078675200",
                "5.000000000000"
            ]
        ]
    }
}

Velocity

{
    "Velocity": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "DX/DX",
            "DX/Time/Step",
            "DY/DY",
            "DY/Time/Step",
            "DZ/DZ",
            "DZ/Time/Step",
            "RX/RX",
            "RX/Time/Step",
            "RY/RY",
            "RY/Time/Step",
            "RZ/RZ",
            "RZ/Time/Step"
        ],
        "DATA": [
            [
                "1",
                "10",
                "Elcent(max)",
                "4.195017337799",
                "2.400000000000",
                "4.122277736664",
                "2.400000000000",
                "6.590407848358",
                "2.200000000000",
                "2.059892416000",
                "2.500000000000",
                "2.164476156235",
                "2.200000000000",
                "0.510402321815",
                "4.400000000000"
            ],
            [
                "2",
                "10",
                "Elcent(min)",
                "-4.455899715424",
                "1.900000000000",
                "-4.244371891022",
                "1.900000000000",
                "-4.951992511749",
                "1.900000000000",
                "-2.163064241409",
                "2.200000000000",
                "-2.091286659241",
                "2.500000000000",
                "-0.613315522671",
                "4.900000000000"
            ]
        ]
    }
}

Absolute Acceleration

{
    "AbsoluteAcceleration": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "DX/DX",
            "DX/Time/Step",
            "DY/DY",
            "DY/Time/Step",
            "DZ/DZ",
            "DZ/Time/Step",
            "RX/RX",
            "RX/Time/Step",
            "RY/RY",
            "RY/Time/Step",
            "RZ/RZ",
            "RZ/Time/Step"
        ],
        "DATA": [
            [
                "1",
                "10",
                "Elcent(max)",
                "16.357984730419",
                "5.000000000000",
                "12.261610814314",
                "3.100000000000",
                "51.913863260315",
                "2.700000000000",
                "27.889919281006",
                "2.400000000000",
                "24.016025543213",
                "2.100000000000",
                "3.462173938751",
                "4.200000000000"
            ],
            [
                "2",
                "10",
                "Elcent(min)",
                "-15.169878465651",
                "2.600000000000",
                "-17.553484422682",
                "2.600000000000",
                "-48.886538532521",
                "2.300000000000",
                "-24.006631851196",
                "2.100000000000",
                "-28.005668640137",
                "2.400000000000",
                "-3.807588338852",
                "4.700000000000"
            ]
        ]
    }
}

Relative Acceleration

{
    "RelativeAcceleration": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "DX/DX",
            "DX/Time/Step",
            "DY/DY",
            "DY/Time/Step",
            "DZ/DZ",
            "DZ/Time/Step",
            "RX/RX",
            "RX/Time/Step",
            "RY/RY",
            "RY/Time/Step",
            "RZ/RZ",
            "RZ/Time/Step"
        ],
        "DATA": [
            [
                "1",
                "10",
                "Elcent(max)",
                "40.562923431396",
                "2.100000000000",
                "41.699108123779",
                "2.100000000000",
                "66.987838745117",
                "2.100000000000",
                "27.889919281006",
                "2.400000000000",
                "24.016025543213",
                "2.100000000000",
                "3.462173938751",
                "4.200000000000"
            ],
            [
                "2",
                "10",
                "Elcent(min)",
                "-33.107425689697",
                "4.500000000000",
                "-34.653484344482",
                "2.600000000000",
                "-55.846538543701",
                "2.300000000000",
                "-24.006631851196",
                "2.100000000000",
                "-28.005668640137",
                "2.400000000000",
                "-3.807588338852",
                "4.700000000000"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Displacement: "THISDISPLACEMENT"

 • Velocity: "THISVELOCITY"

 • Absolute Acceleration: "THISABSOLUTEACCEL"

 • Relative Acceleration: "THISRELATIVEACCEL"

"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
[Integer]

-

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

Load Name & Type

 • Static Load Cases

   ◦ NAME + "(ST)"

 • Load Combinations

   ◦ NAME + "(CB)"

   ◦ NAME + "(CB:all)"

   ◦ NAME + "(CB:max)"

   ◦ NAME + "(CB:min)"

 • Construction Stage

   ◦ NAME + "(CS)"

 • Response Spectrum

   ◦ NAME + "(RS)"

 • Moving Load

   ◦ NAME + "(MV:all)"

   ◦ NAME + "(MV:max)"

   ◦ NAME + "(MV:min)"

 • Settlement Load

   ◦ NAME + "(SM:all)"

   ◦ NAME + "(SM:max)"

   ◦ NAME + "(SM:min)"

"LOAD_CASE_NAMES"

Array [String]

All

Optional



0
Was this article helpful?