Skip to main content
JSON Manual Created Edited

Nodal Results of RS - Analysis Result Table

Input URI

{base url} + post/TABLE



Active Methods

POST



JSON Schema

Details

{
    "TABLE": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "NodalResultsofRS",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "ResponseTableTitle"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "RS_NODAL_INERTIA",
                            "RS_NODAL_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": [
                                    "Default",
                                    "Fixed",
                                    "Scientific",
                                    "General"
                                ]
                            },
                            "PLACE": {
                                "type": "integer",
                                "description": "Digitplace",
                                "minimum": 0,
                                "maximum": 15
                            }
                        }
                    },
                    "COMPONENTS": {
                        "type": "array",
                        "description": "ComponentsofResultTable",
                        "items": {
                            "type": "string"
                        }
                    },
                    "NODE_ELEMS": {
                        "type": "object",
                        "description": "Node/ElementNo.Input",
                        "properties": {
                            "KEYS": {
                                "type": "array",
                                "description": "SpecifyEachID",
                                "items": {
                                    "type": "integer"
                                }
                            },
                            "TO": {
                                "type": "string",
                                "description": "SpecifyIDRange"
                            },
                            "STRUCTURE_GROUP_NAME": {
                                "type": "string",
                                "description": "SpecifyStructureGroupName"
                            }
                        }
                    },
                    "LOAD_CASE_NAMES": {
                        "type": "array",
                        "description": "StaticLoad/LoadCombinationName&Type",
                        "items": {
                            "type": "string"
                        }
                    },
                    "MODES": {
                        "type": "array",
                        "description": "ModeNumber",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Nodal Inertia force

{
    "Argument": {
        "TABLE_NAME": "NodalInertiaforce",
        "TABLE_TYPE": "RS_NODAL_INERTIA",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "LoadCase",
            "Mode",
            "Node",
            "FX",
            "FY",
            "FZ",
            "MX",
            "MY",
            "MZ"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                30
            ]
        },
        "LOAD_CASE_NAMES": [
            "X-dir(RS)",
            "Y-dir(RS)"
        ],
        "MODES": [
            "Mode1",
            "Mode2"
        ]
    }
}

Nodal Acceleration

{
    "Argument": {
        "TABLE_NAME": "NodalAcceleration",
        "TABLE_TYPE": "RS_NODAL_ACCEL",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "LoadCase",
            "Mode",
            "Node",
            "DX",
            "DY",
            "DZ",
            "RX",
            "RY",
            "RZ"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                30
            ]
        },
        "LOAD_CASE_NAMES": [
            "X-dir(RS)",
            "Y-dir(RS)"
        ],
        "MODES": [
            "Mode1",
            "Mode2"
        ]
    }
}


Response Examples

Nodal Inertia force

{
    "NodalInertiaforce": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "LoadCase",
            "Mode",
            "Node",
            "FX",
            "FY",
            "FZ",
            "MX",
            "MY",
            "MZ"
        ],
        "DATA": [
            [
                "1",
                "X-dir",
                "1",
                "30",
                "25.943058430198",
                "-0.003640586497",
                "-1.472398533814",
                "0.000000000000",
                "0.000000000000",
                "0.000000000000"
            ],
            [
                "2",
                "X-dir",
                "2",
                "30",
                "0.000019431928",
                "0.006628306916",
                "-0.002590681069",
                "0.000000000000",
                "0.000000000000",
                "0.000000000000"
            ],
            [
                "3",
                "Y-dir",
                "1",
                "30",
                "-0.002095291305",
                "0.000000294032",
                "0.000118918278",
                "0.000000000000",
                "0.000000000000",
                "0.000000000000"
            ],
            [
                "4",
                "Y-dir",
                "2",
                "30",
                "0.115858734863",
                "39.519869125563",
                "-15.446384437339",
                "0.000000000000",
                "0.000000000000",
                "0.000000000000"
            ]
        ]
    }
}

Nodal Acceleration

{
    "NodalAcceleration": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "LoadCase",
            "Mode",
            "Node",
            "DX",
            "DY",
            "DZ",
            "RX",
            "RY",
            "RZ"
        ],
        "DATA": [
            [
                "1",
                "X-dir",
                "1",
                "30",
                "2.349857717681",
                "-0.000329755272",
                "-0.133366197648",
                "0.000013094089",
                "-0.002231134732",
                "-0.000009241792"
            ],
            [
                "2",
                "X-dir",
                "2",
                "30",
                "0.000001760096",
                "0.000600375557",
                "-0.000234657449",
                "-0.000061111265",
                "0.000000000660",
                "-0.000000000295"
            ],
            [
                "3",
                "Y-dir",
                "1",
                "30",
                "-0.000189786276",
                "0.000000026633",
                "0.000010771322",
                "-0.000000001058",
                "0.000000180198",
                "0.000000000746"
            ],
            [
                "4",
                "Y-dir",
                "2",
                "30",
                "0.010494196088",
                "3.579611467796",
                "-1.399095090427",
                "-0.364362907273",
                "0.000003932477",
                "-0.000001758164"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Nodal Inertia Force: "RS_NODAL_INERTIA"

 • Nodal Acceleration: "RS_NODAL_ACCEL"

"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

 • Response Spectrum

   ◦ NAME + "(RS)"

"LOAD_CASE_NAMES"

Array [String]

All

Optional

9

Mode Number

 • "Mode " + "#"

"MODES"

Array [string]

All

Optional



0
Was this article helpful?