Skip to main content
JSON Manual Created Edited

Buckling Mode Shape - 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": "BucklingModeShape",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "ResponseTableTitle"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "BUCKLINGMODE"
                        ]
                    },
                    "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"
                            }
                        }
                    },
                    "MODES": {
                        "type": "array",
                        "description": "ModeNumber",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Buckling Mode

{
    "Argument": {
        "TABLE_NAME": "BucklingMode",
        "TABLE_TYPE": "BUCKLINGMODE",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Scientific",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Node",
            "Mode",
            "UX",
            "UY",
            "UZ",
            "RX",
            "RY",
            "RZ"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "MODES": [
            "Mode1",
            "Mode2"
        ]
    }
}


Response Examples

Buckling Mode

{
    "BucklingMode": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Node",
            "Mode",
            "UX",
            "UY",
            "UZ",
            "RX",
            "RY",
            "RZ"
        ],
        "DATA": [
            [
                "1",
                "1",
                "1",
                "-3.068406433733e-05",
                "1.071752325513e-10",
                "-2.756625224655e-08",
                "0.000000000000e+00",
                "2.040060468720e-08",
                "1.430189905494e-10"
            ],
            [
                "2",
                "1",
                "2",
                "8.776101828229e-08",
                "0.000000000000e+00",
                "-1.232408164286e-08",
                "0.000000000000e+00",
                "4.962889338148e-08",
                "0.000000000000e+00"
            ]
        ],
        "SUB_TABLES": [
            {
                "BUCKLINGANALYSIS": {
                    "HEAD": [
                        "Mode",
                        "Eigenvalue",
                        "Tolerance"
                    ],
                    "DATA": [
                        [
                            "1",
                            "2.909991059676e+03",
                            "0.0000e+00"
                        ],
                        [
                            "2",
                            "3.056712238985e+03",
                            "0.0000e+00"
                        ],
                        [
                            "3",
                            "4.211180789704e+03",
                            "3.0711e-20"
                        ],
                        [
                            "4",
                            "4.779084421594e+03",
                            "3.1757e-09"
                        ],
                        [
                            "5",
                            "4.779170765789e+03",
                            "1.1347e-08"
                        ]
                    ]
                }
            }
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Buckling Mode Shape: "BUCKLINGMODE"

"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

Mode Number

 • "Mode " + "#"

"MODES"

Array [string]

All

Optional



0
Was this article helpful?