Skip to main content
JSON Manual Created Edited

Reaction - 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": "Reaction",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "ResponseTableTitle",
                        "default": ""
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "REACTIONG",
                            "REACTIONL",
                            "REACTIONSURFACESPRING"
                        ]
                    },
                    "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"
                        }
                    },
                    "OPT_CS": {
                        "type": "boolean",
                        "description": "Activation-ConstructionStageStep"
                    },
                    "STAGE_STEP": {
                        "type": "array",
                        "description": "StageStepName",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Reaction(Global) - General/Post CS

{
    "Argument": {
        "TABLE_NAME": "Reaction(Global)",
        "TABLE_TYPE": "REACTIONG",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "FX",
            "FY",
            "FZ",
            "MX",
            "MY",
            "MZ",
            "Mb"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "LOAD_CASE_NAMES": [
            "DL(ST)"
        ]
    }
}

Reaction(Global) - Construction Stage

{
    "Argument": {
        "TABLE_NAME": "Reaction(Global)",
        "TABLE_TYPE": "REACTIONG",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "Stage",
            "Step",
            "FX",
            "FY",
            "FZ",
            "MX",
            "MY",
            "MZ",
            "Mb"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "LOAD_CASE_NAMES": [
            "Summation(CS)"
        ],
        "OPT_CS": true,
        "STAGE_STEP": [
            "CS1:001(first)",
            "CS1:002(last)"
        ]
    }
}

Reaction(Local) - General/Post CS

{
    "Argument": {
        "TABLE_NAME": "Reaction(Local)",
        "TABLE_TYPE": "REACTIONL",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "Fx",
            "Fy",
            "Fz",
            "Mx",
            "My",
            "Mz",
            "Mb"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                9
            ]
        },
        "LOAD_CASE_NAMES": [
            "DL(ST)"
        ]
    }
}

Reaction(Local) - Construction Stage

{
    "Argument": {
        "TABLE_NAME": "Reaction(Local)",
        "TABLE_TYPE": "REACTIONL",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "Stage",
            "Step",
            "Fx",
            "Fy",
            "Fz",
            "Mx",
            "My",
            "Mz",
            "Mb"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                9
            ]
        },
        "LOAD_CASE_NAMES": [
            "Summation(CS)"
        ],
        "OPT_CS": true,
        "STAGE_STEP": [
            "CS1:001(first)",
            "CS1:002(last)"
        ]
    }
}

Reaction(Local-Surface Spring) - General/Post CS

{
    "Argument": {
        "TABLE_NAME": "Reaction(Local-SurfaceSpring)",
        "TABLE_TYPE": "REACTIONLSURFACESPRING",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "ElementType",
            "SurfaceSpringType",
            "Element",
            "Load",
            "Node&Part",
            "Reaction/Area",
            "Reaction/Length",
            "Displacement"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                9
            ]
        },
        "LOAD_CASE_NAMES": [
            "UL(ST)"
        ]
    }
}


Response Examples

Reaction(Global) - General/Post CS

{
    "Reaction(Global)": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "FX",
            "FY",
            "FZ",
            "MX",
            "MY",
            "MZ",
            "Mb"
        ],
        "DATA": [
            [
                "1",
                "1",
                "DL",
                "3.082169679668",
                "0.536339553582",
                "160.905188552207",
                "-0.531870057302",
                "3.112177384191",
                "0.000000000000",
                "0.000000000000"
            ]
        ],
        "SUB_TABLES": [
            {
                "SUMMATIONOFREACTIONFORCESPRINTOUT": {
                    "HEAD": [
                        "Load",
                        "FX(kN)",
                        "FY(kN)",
                        "FZ(kN)"
                    ],
                    "DATA": [
                        [
                            "DL",
                            "0.000000000000",
                            "0.000000000000",
                            "686.683352297500"
                        ]
                    ]
                }
            }
        ]
    }
}

Reaction(Global) - Construction Stage

{
    "Reaction(Global)": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "Stage",
            "Step",
            "FX",
            "FY",
            "FZ",
            "MX",
            "MY",
            "MZ",
            "Mb"
        ],
        "DATA": [
            [
                "1",
                "1",
                "Summation",
                "CS1",
                "001(first)",
                "3.577180581688",
                "0.835159795031",
                "176.588091686593",
                "-0.828200121464",
                "3.668860801634",
                "0.000000000000",
                "0.000000000000"
            ],
            [
                "2",
                "1",
                "Summation",
                "CS1",
                "002(last)",
                "3.577180581688",
                "0.835159795031",
                "176.588091686593",
                "-0.828200121464",
                "3.668860801634",
                "0.000000000000",
                "0.000000000000"
            ]
        ],
        "SUB_TABLES": [
            {
                "SUMMATIONOFREACTIONFORCESPRINTOUT": {
                    "HEAD": [
                        "Load",
                        "Stage",
                        "Step",
                        "FX(kN)",
                        "FY(kN)",
                        "FZ(kN)"
                    ],
                    "DATA": [
                        [
                            "Summation",
                            "CS1",
                            "001(first)",
                            "0.000000000000",
                            "0.000000000000",
                            "836.683352312800"
                        ],
                        [
                            "Summation",
                            "CS1",
                            "002(last)",
                            "0.000000000000",
                            "0.000000000000",
                            "836.683352312800"
                        ]
                    ]
                }
            }
        ]
    }
}

Reaction(Local) - General/Post CS

{
    "Reaction(Local)": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "Fx",
            "Fy",
            "Fz",
            "Mx",
            "My",
            "Mz",
            "Mb"
        ],
        "DATA": [
            [
                "1",
                "9",
                "DL",
                "-9.528467668945",
                "108.534577627514",
                "105.577135693819",
                "-2.014716071930",
                "-6.655711206332",
                "6.655708849960",
                "0.000000000000"
            ]
        ]
    }
}

Reaction(Local) - Construction Stage

{
    "Reaction(Local)": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "Stage",
            "Step",
            "Fx",
            "Fy",
            "Fz",
            "Mx",
            "My",
            "Mz",
            "Mb"
        ],
        "DATA": [
            [
                "1",
                "9",
                "Summation",
                "CS1",
                "001(first)",
                "-14.039980876503",
                "139.127776277308",
                "136.635355695582",
                "-1.622294209968",
                "-9.807038913251",
                "9.807035524047",
                "0.000000000000"
            ],
            [
                "2",
                "9",
                "Summation",
                "CS1",
                "002(last)",
                "-14.039980876503",
                "139.127776277308",
                "136.635355695582",
                "-1.622294209968",
                "-9.807038913251",
                "9.807035524047",
                "0.000000000000"
            ]
        ]
    }
}

Reaction(Local-Surface Spring) - General/Post CS

{
    "Reaction(Local-SurfaceSpring)": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "ElementType",
            "SurfaceSpringType",
            "Element",
            "Load",
            "Node&Part",
            "Reaction/Area",
            "Reaction/Length",
            "Displacement"
        ],
        "DATA": [
            [
                "1",
                "PLATE",
                "Planar(Face)",
                "9",
                "UL",
                "5",
                "1.768850000000",
                "-",
                "-0.000901864"
            ],
            [
                "2",
                "PLATE",
                "Planar(Face)",
                "9",
                "UL",
                "11",
                "1.712710000000",
                "-",
                "-0.000873238"
            ],
            [
                "3",
                "PLATE",
                "Planar(Face)",
                "9",
                "UL",
                "10",
                "3.913360000000",
                "-",
                "-0.00199526"
            ],
            [
                "4",
                "PLATE",
                "Planar(Face)",
                "9",
                "UL",
                "4",
                "4.112030000000",
                "-",
                "-0.00209655"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Global: "REACTIONG"

 • Local: "REACTIONL"

 • Local-Surface Spring: "REACTIONSURFACESPRING"

"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

Construction Stage (Except for Reaction-Local Surface Spring)

9

Activation - Construction Stage Step

"OPT_CS"

Boolean

false

Optional

10

Stage Step Name

"STAGE_STEP"

Array [String]

All

Optional



0
Was this article helpful?