Skip to main content
JSON Manual Created Edited

Displacements - 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": "Displacements",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "ResponseTableTitle"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "DISPLACEMENTG",
                            "DISPLACEMENTL"
                        ]
                    },
                    "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"
                        }
                    },
                    "DISP_OPT": {
                        "type": "string",
                        "description": "DisplacementOption",
                        "enum": [
                            "Accumulative",
                            "Current",
                            "Real"
                        ]
                    }
                }
            }
        }
    }
}


Request Examples

Displacements(Global) - General/Post CS

{
    "Argument": {
        "TABLE_NAME": "Displacements(Global)",
        "TABLE_TYPE": "DISPLACEMENTG",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "N",
            "DIST": "mm"
        },
        "STYLES": {
            "FORMAT": "Scientific",
            "PLACE": 3
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "DX",
            "DY",
            "DZ",
            "RX",
            "RY",
            "RZ",
            "RW"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                43
            ]
        },
        "LOAD_CASE_NAMES": [
            "Self(ST)"
        ]
    }
}

Displacements(Global) - Construction Stage

{
    "Argument": {
        "TABLE_NAME": "Displacements(Global)",
        "TABLE_TYPE": "DISPLACEMENTG",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "N",
            "DIST": "mm"
        },
        "STYLES": {
            "FORMAT": "Scientific",
            "PLACE": 6
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "Stage",
            "Step",
            "DX",
            "DY",
            "DZ",
            "RX",
            "RY",
            "RZ"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                43
            ]
        },
        "LOAD_CASE_NAMES": [
            "Summation(CS)"
        ],
        "OPT_CS": true,
        "STAGE_STEP": [
            "CS16:001(first)",
            "CS16:002(last)"
        ],
        "DISP_OPT": "Accumulative"
    }
}

Displacements(Local) - General/Post CS

{
    "Argument": {
        "TABLE_NAME": "Displacements(Local)",
        "TABLE_TYPE": "DISPLACEMENTL",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "N",
            "DIST": "mm"
        },
        "STYLES": {
            "FORMAT": "Scientific",
            "PLACE": 3
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "Dx",
            "Dy",
            "Dz",
            "Rx",
            "Ry",
            "Rz",
            "Rw"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                43
            ]
        },
        "LOAD_CASE_NAMES": [
            "Self(ST)"
        ]
    }
}

Displacements(Local) - Construction Stage

{
    "Argument": {
        "TABLE_NAME": "Displacements(Local)",
        "TABLE_TYPE": "DISPLACEMENTL",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "N",
            "DIST": "mm"
        },
        "STYLES": {
            "FORMAT": "Scientific",
            "PLACE": 3
        },
        "COMPONENTS": [
            "Node",
            "Load",
            "Stage",
            "Step",
            "DX",
            "DY",
            "DZ",
            "RX",
            "RY",
            "RZ",
            "RW"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                43
            ]
        },
        "LOAD_CASE_NAMES": [
            "Summation(CS)"
        ],
        "OPT_CS": true,
        "STAGE_STEP": [
            "CS16:001(first)",
            "CS16:002(last)"
        ],
        "DISP_OPT": "Accumulative"
    }
}


Response Examples

Displacements(Global) - General/Post CS

{
    "Displacements(Global)": {
        "FORCE": "N",
        "DIST": "mm",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "DX",
            "DY",
            "DZ",
            "RX",
            "RY",
            "RZ"
        ],
        "DATA": [
            [
                "1",
                "43",
                "Self",
                "5.047e+00",
                "5.234e-10",
                "-6.718e-07",
                "0.000e+00",
                "-5.108e-03",
                "1.903e-07"
            ]
        ]
    }
}

Displacements(Global) - Construction Stage

{
    "Displacements(Global)": {
        "FORCE": "N",
        "DIST": "mm",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "Stage",
            "Step",
            "DX",
            "DY",
            "DZ",
            "RX",
            "RY",
            "RZ"
        ],
        "DATA": [
            [
                "1",
                "43",
                "Summation",
                "CS16",
                "001(first)",
                "-1.950282e+01",
                "-5.770649e-09",
                "-5.955365e-07",
                "0.000000e+00",
                "1.629373e-03",
                "2.975638e-06"
            ],
            [
                "2",
                "43",
                "Summation",
                "CS16",
                "002(last)",
                "-7.132734e+01",
                "2.112468e-08",
                "-6.235268e-07",
                "0.000000e+00",
                "1.215839e-03",
                "8.756069e-06"
            ]
        ]
    }
}

Displacements(Local) - General/Post CS

{
    "Displacements(Local)": {
        "FORCE": "N",
        "DIST": "mm",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "Dx",
            "Dy",
            "Dz",
            "Rx",
            "Ry",
            "Rz"
        ],
        "DATA": [
            [
                "1",
                "43",
                "Self",
                "5.047e+00",
                "5.234e-10",
                "-6.718e-07",
                "0.000e+00",
                "-5.108e-03",
                "1.903e-07"
            ]
        ]
    }
}

Displacements(Local) - Construction Stage

{
    "Displacements(Local)": {
        "FORCE": "N",
        "DIST": "mm",
        "HEAD": [
            "Index",
            "Node",
            "Load",
            "Stage",
            "Step",
            "Dx",
            "Dy",
            "Dz",
            "Rx",
            "Ry",
            "Rz"
        ],
        "DATA": [
            [
                "1",
                "43",
                "Summation",
                "CS16",
                "001(first)",
                "-1.950e+01",
                "-5.771e-09",
                "-5.955e-07",
                "0.000e+00",
                "1.629e-03",
                "2.976e-06"
            ],
            [
                "2",
                "43",
                "Summation",
                "CS16",
                "002(last)",
                "-7.133e+01",
                "2.112e-08",
                "-6.235e-07",
                "0.000e+00",
                "1.216e-03",
                "8.756e-06"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Global: "DISPLACEMENTG"

 • Local: "DISPLACEMENTL"

"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

9

Activation - Construction Stage Step

"OPT_CS"

Boolean

false

Optional

10

Stage Step Name

"STAGE_STEP"

Array [String]

All

Optional

11

Displacement Option

 • "Accumulative"

 • "Current"

 • "Real"

"DISP_OPT"

String

"Accumulative"

Optional



0
Was this article helpful?