Skip to main content
JSON Manual Created Edited

Resultant Forces - 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": "ResultantForces",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "ResponseTableTitle"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "RESULTANT_FORCES",
                            "RESULTANT_FORCESVBM"
                        ]
                    },
                    "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"
                        }
                    },
                    "PARTS": {
                        "type": "array",
                        "description": "ElementPartNumber",
                        "items": {
                            "type": "string",
                            "enum": [
                                "PartI",
                                "PartJ"
                            ]
                        }
                    },
                    "OPT_CS": {
                        "type": "boolean",
                        "description": "Activation-ConstructionStageStep"
                    },
                    "STAGE_STEP": {
                        "type": "array",
                        "description": "StageStepName",
                        "items": {
                            "type": "string"
                        }
                    },
                    "ITEM_TO_DISPLAY": {
                        "type": "array",
                        "description": "SelectComponent",
                        "items": {
                            "type": "string",
                            "enum": [
                                "Axial",
                                "Shear-y",
                                "Shear-z",
                                "Torsion",
                                "Moment-y",
                                "Moment-z"
                            ]
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Resultant Forces - General/Post CS

{
    "Argument": {
        "TABLE_NAME": "ResultantForces",
        "TABLE_TYPE": "RESULTANT_FORCES",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "VirtualBeam",
            "Load",
            "Part",
            "Axial",
            "Shear-Y",
            "Shear-Z",
            "Torsion",
            "Moment-Y",
            "Moment-Z"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "LOAD_CASE_NAMES": [
            "SWofGirders(ST)"
        ],
        "PARTS": [
            "PartI",
            "PartJ"
        ]
    }
}

Resultant Forces - Construction Stage

{
    "Argument": {
        "TABLE_NAME": "ResultantForces",
        "TABLE_TYPE": "RESULTANT_FORCES",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "VirtualBeam",
            "Load",
            "Stage",
            "Step",
            "Part",
            "Axial",
            "Shear-Y",
            "Shear-Z",
            "Torsion",
            "Moment-Y",
            "Moment-Z"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "LOAD_CASE_NAMES": [
            "Summation(CS)"
        ],
        "PARTS": [
            "PartI",
            "PartJ"
        ],
        "OPT_CS": true,
        "STAGE_STEP": [
            "CS1:001(first)",
            "CS1:002(last)"
        ]
    }
}

Resultant Forces - View By Max Value Items

{
    "Argument": {
        "TABLE_NAME": "ResultantForcesViewByMaxValueItems",
        "TABLE_TYPE": "RESULTANT_FORCESVBM",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "VirtualBeam",
            "Load",
            "Part",
            "Component",
            "Axial",
            "Shear-Y",
            "Shear-Z",
            "Torsion",
            "Moment-Y",
            "Moment-Z"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "LOAD_CASE_NAMES": [
            "STLENV_STR(CB:max)",
            "STLENV_STR(CB:min)"
        ],
        "PARTS": [
            "PartI",
            "PartJ"
        ],
        "ITEM_TO_DISPLAY": [
            "Axial",
            "Shear-y",
            "Shear-z",
            "Torsion",
            "Moment-y",
            "Moment-z"
        ]
    }
}


Response Examples

Resultant Forces - General/Post CS

{
    "ResultantForces": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "VirtualBeam",
            "Load",
            "Part",
            "Axial",
            "Shear-Y",
            "Shear-Z",
            "Torsion",
            "Moment-Y",
            "Moment-Z"
        ],
        "DATA": [
            [
                "1",
                "1",
                "SWofGirders",
                "I",
                "0.238908000000",
                "-2.412530000000",
                "-24.814800000000",
                "3.963010000000",
                "-0.080275500000",
                "-0.297629000000"
            ],
            [
                "2",
                "1",
                "SWofGirders",
                "J",
                "-0.977785000000",
                "3.309780000000",
                "21.382900000000",
                "-3.866080000000",
                "-27.834000000000",
                "-1.721530000000"
            ]
        ]
    }
}

Resultant Forces - Construction Stage

{
    "ResultantForces": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "VirtualBeam",
            "Load",
            "Stage",
            "Step",
            "Part",
            "Axial",
            "Shear-Y",
            "Shear-Z",
            "Torsion",
            "Moment-Y",
            "Moment-Z"
        ],
        "DATA": [
            [
                "1",
                "1",
                "Summation",
                "CS1",
                "001(first)",
                "I",
                "0.238908000000",
                "-2.412530000000",
                "-24.814800000000",
                "3.963010000000",
                "-0.080275500000",
                "-0.297629000000"
            ],
            [
                "2",
                "1",
                "Summation",
                "CS1",
                "001(first)",
                "J",
                "-0.977785000000",
                "3.309780000000",
                "21.382900000000",
                "-3.866080000000",
                "-27.834000000000",
                "-1.721530000000"
            ],
            [
                "3",
                "1",
                "Summation",
                "CS1",
                "002(last)",
                "I",
                "0.238908000000",
                "-2.412530000000",
                "-24.814800000000",
                "3.963010000000",
                "-0.080275500000",
                "-0.297629000000"
            ],
            [
                "4",
                "1",
                "Summation",
                "CS1",
                "002(last)",
                "J",
                "-0.977785000000",
                "3.309780000000",
                "21.382900000000",
                "-3.866080000000",
                "-27.834000000000",
                "-1.721530000000"
            ]
        ]
    }
}

Resultant Forces - View By Max Value Items

{
    "ResultantForcesViewByMaxValueItems": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "VirtualBeam",
            "Load",
            "Part",
            "Component",
            "Axial",
            "Shear-Y",
            "Shear-Z",
            "Torsion",
            "Moment-Y",
            "Moment-Z"
        ],
        "DATA": [
            [
                "1",
                "1",
                "STLENV_STR(max)",
                "I",
                "Axial",
                "5.367480000000",
                "10.895500000000",
                "45.612500000000",
                "18.700800000000",
                "3.595340000000",
                "12.620600000000"
            ],
            [
                "2",
                "1",
                "STLENV_STR(max)",
                "I",
                "Shear-y",
                "5.367480000000",
                "10.895500000000",
                "45.612500000000",
                "18.700800000000",
                "3.595340000000",
                "12.620600000000"
            ],
            [
                "3",
                "1",
                "STLENV_STR(max)",
                "I",
                "Shear-z",
                "5.320110000000",
                "10.883100000000",
                "45.941600000000",
                "18.548000000000",
                "3.563550000000",
                "12.509000000000"
            ],
            [
                "4",
                "1",
                "STLENV_STR(max)",
                "I",
                "Torsion",
                "5.367480000000",
                "10.895500000000",
                "45.612500000000",
                "18.700800000000",
                "3.595340000000",
                "12.620600000000"
            ],
            [
                "5",
                "1",
                "STLENV_STR(max)",
                "I",
                "Moment-y",
                "5.367480000000",
                "10.895500000000",
                "45.612500000000",
                "18.700800000000",
                "3.595340000000",
                "12.620600000000"
            ],
            [
                "6",
                "1",
                "STLENV_STR(max)",
                "I",
                "Moment-z",
                "5.367480000000",
                "10.895500000000",
                "45.612500000000",
                "18.700800000000",
                "3.595340000000",
                "12.620600000000"
            ],
            [
                "7",
                "1",
                "STLENV_STR(max)",
                "J",
                "Axial",
                "33.513200000000",
                "26.177300000000",
                "145.656000000000",
                "17.941400000000",
                "51.159200000000",
                "10.819200000000"
            ],
            [
                "8",
                "1",
                "STLENV_STR(max)",
                "J",
                "Shear-y",
                "33.513200000000",
                "26.177300000000",
                "145.656000000000",
                "17.941400000000",
                "51.159200000000",
                "10.819200000000"
            ],
            [
                "9",
                "1",
                "STLENV_STR(max)",
                "J",
                "Shear-z",
                "33.513200000000",
                "26.177300000000",
                "145.656000000000",
                "17.941400000000",
                "51.159200000000",
                "10.819200000000"
            ],
            [
                "10",
                "1",
                "STLENV_STR(max)",
                "J",
                "Torsion",
                "33.513200000000",
                "26.177300000000",
                "145.656000000000",
                "17.941400000000",
                "51.159200000000",
                "10.819200000000"
            ],
            [
                "11",
                "1",
                "STLENV_STR(max)",
                "J",
                "Moment-y",
                "33.216800000000",
                "25.945800000000",
                "144.368000000000",
                "17.900600000000",
                "51.619700000000",
                "10.723500000000"
            ],
            [
                "12",
                "1",
                "STLENV_STR(max)",
                "J",
                "Moment-z",
                "33.513200000000",
                "26.177300000000",
                "145.656000000000",
                "17.941400000000",
                "51.159200000000",
                "10.819200000000"
            ],
            [
                "13",
                "1",
                "STLENV_STR(min)",
                "I",
                "Axial",
                "-10.088100000000",
                "-23.097900000000",
                "-146.096000000000",
                "-16.463200000000",
                "-1.940780000000",
                "-6.680650000000"
            ],
            [
                "14",
                "1",
                "STLENV_STR(min)",
                "I",
                "Shear-y",
                "-10.088100000000",
                "-23.097900000000",
                "-146.096000000000",
                "-16.463200000000",
                "-1.940780000000",
                "-6.680650000000"
            ],
            [
                "15",
                "1",
                "STLENV_STR(min)",
                "I",
                "Shear-z",
                "-10.088100000000",
                "-23.097900000000",
                "-146.096000000000",
                "-16.463200000000",
                "-1.940780000000",
                "-6.680650000000"
            ],
            [
                "16",
                "1",
                "STLENV_STR(min)",
                "I",
                "Torsion",
                "-10.088100000000",
                "-23.097900000000",
                "-146.096000000000",
                "-16.463200000000",
                "-1.940780000000",
                "-6.680650000000"
            ],
            [
                "17",
                "1",
                "STLENV_STR(min)",
                "I",
                "Moment-y",
                "-10.088100000000",
                "-23.097900000000",
                "-146.096000000000",
                "-16.463200000000",
                "-1.940780000000",
                "-6.680650000000"
            ],
            [
                "18",
                "1",
                "STLENV_STR(min)",
                "I",
                "Moment-z",
                "-10.088100000000",
                "-23.097900000000",
                "-146.096000000000",
                "-16.463200000000",
                "-1.940780000000",
                "-6.680650000000"
            ],
            [
                "19",
                "1",
                "STLENV_STR(min)",
                "J",
                "Axial",
                "-18.112300000000",
                "-14.442000000000",
                "-45.349600000000",
                "-18.324100000000",
                "-183.454000000000",
                "-53.649900000000"
            ],
            [
                "20",
                "1",
                "STLENV_STR(min)",
                "J",
                "Shear-y",
                "-17.952200000000",
                "-14.446000000000",
                "-45.680700000000",
                "-18.176100000000",
                "-181.832000000000",
                "-53.175500000000"
            ],
            [
                "21",
                "1",
                "STLENV_STR(min)",
                "J",
                "Shear-z",
                "-17.952200000000",
                "-14.446000000000",
                "-45.680700000000",
                "-18.176100000000",
                "-181.832000000000",
                "-53.175500000000"
            ],
            [
                "22",
                "1",
                "STLENV_STR(min)",
                "J",
                "Torsion",
                "-18.112300000000",
                "-14.442000000000",
                "-45.349600000000",
                "-18.324100000000",
                "-183.454000000000",
                "-53.649900000000"
            ],
            [
                "23",
                "1",
                "STLENV_STR(min)",
                "J",
                "Moment-y",
                "-18.112300000000",
                "-14.442000000000",
                "-45.349600000000",
                "-18.324100000000",
                "-183.454000000000",
                "-53.649900000000"
            ],
            [
                "24",
                "1",
                "STLENV_STR(min)",
                "J",
                "Moment-z",
                "-18.112300000000",
                "-14.442000000000",
                "-45.349600000000",
                "-18.324100000000",
                "-183.454000000000",
                "-53.649900000000"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Force: "RESULTANT_FORCES"

 • Force - View by Max Value Items: "RESULTANT_FORCESVBM"

"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

9

Element Part Number

 • "Part I"

 • "Part J"

"PARTS"

Array [String]

ALL

Optional

Construction Stage

10

Activation - Construction Stage Step

"OPT_CS"

Boolean

false

Optional

11

Stage Step Name

"STAGE_STEP"

Array [String]

All

Optional

View By Max Value Items

12

Select Component

 • Resultant Force

   ◦ "Axial"

   ◦ "Shear-y"

   ◦ "Shear-z"

   ◦ "Torsion"

   ◦ "Moment-y"

   ◦ "Moment-z"

"ITEM_TO_DISPLAY"

Array [String]

All

Optional



0
Was this article helpful?