Skip to main content
JSON Manual Created Edited

Elastic Link - 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": "ElasticLink",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "ResponseTableTitle"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "ELASTICLINK",
                            "ELASTICLINKVBM"
                        ]
                    },
                    "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"
                        }
                    },
                    "ITEM_TO_DISPLAY": {
                        "type": "array",
                        "description": "SelectComponent",
                        "items": {
                            "type": "string",
                            "enum": [
                                "Axial",
                                "Shear-y",
                                "Shear-z",
                                "Torsion",
                                "Moment-y",
                                "Moment-z"
                            ]
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Elastic Link - General/Post CS

{
    "Argument": {
        "TABLE_NAME": "ElasticLink",
        "TABLE_TYPE": "ELASTICLINK",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "No.",
            "Load",
            "Node",
            "Axial",
            "Shear-y",
            "Shear-z",
            "Torsion",
            "Moment-y",
            "Moment-z"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "LOAD_CASE_NAMES": [
            "SWofGirders(ST)"
        ]
    }
}

Elastic Link - Construction Stage

{
    "Argument": {
        "TABLE_NAME": "ElasticLink",
        "TABLE_TYPE": "ELASTICLINK",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "No.",
            "Load",
            "Node",
            "Axial",
            "Shear-y",
            "Shear-z",
            "Torsion",
            "Moment-y",
            "Moment-z"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "LOAD_CASE_NAMES": [
            "Summation(CS)"
        ],
        "OPT_CS": true,
        "STAGE_STEP": [
            "CS1:001(first)",
            "CS1:002(last)"
        ]
    }
}

Elastic Link - View By Max Value Items

{
    "Argument": {
        "TABLE_NAME": "ElasticLinkViewByMaxValueItems",
        "TABLE_TYPE": "ELASTICLINKVBM",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "LOAD_CASE_NAMES": [
            "STLENV_STR(CB:max)",
            "STLENV_STR(CB:min)"
        ],
        "ITEM_TO_DISPLAY": [
            "Axial",
            "Shear-y",
            "Shear-z",
            "Torsion",
            "Moment-y",
            "Moment-z"
        ]
    }
}


Response Examples

Elastic Link - General/Post CS

{
    "ElasticLink": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "No.",
            "Load",
            "Node",
            "Axial",
            "Shear-y",
            "Shear-z",
            "Torsion",
            "Moment-y",
            "Moment-z"
        ],
        "DATA": [
            [
                "1",
                "1",
                "SWofGirders",
                "1",
                "-2.163226913452",
                "0.262795234546",
                "7.112188879013",
                "-0.000000245586",
                "1.306126533508",
                "0.030306393385"
            ],
            [
                "2",
                "1",
                "SWofGirders",
                "934",
                "-2.163226913452",
                "0.262795234546",
                "7.112188879013",
                "-0.000000245586",
                "-0.003583057404",
                "-0.018087348878"
            ]
        ]
    }
}

Elastic Link - Construction Stage

{
    "ElasticLink": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "No.",
            "Load",
            "Node",
            "Axial",
            "Shear-y",
            "Shear-z",
            "Torsion",
            "Moment-y",
            "Moment-z"
        ],
        "DATA": [
            [
                "1",
                "1",
                "Summation",
                "1",
                "-2.163226898193",
                "0.262795234412",
                "7.112188881874",
                "-0.000000245601",
                "1.306126529694",
                "0.030306393296"
            ],
            [
                "2",
                "1",
                "Summation",
                "934",
                "-2.163226898193",
                "0.262795234412",
                "7.112188881874",
                "-0.000000245601",
                "-0.003583061218",
                "-0.018087349057"
            ],
            [
                "3",
                "1",
                "Summation",
                "1",
                "-2.163226898193",
                "0.262795234412",
                "7.112188881874",
                "-0.000000245601",
                "1.306126529694",
                "0.030306393296"
            ],
            [
                "4",
                "1",
                "Summation",
                "934",
                "-2.163226898193",
                "0.262795234412",
                "7.112188881874",
                "-0.000000245601",
                "-0.003583061218",
                "-0.018087349057"
            ]
        ]
    }
}

Elastic Link - View By Max Value Items

{
    "ElasticLinkViewByMaxValueItems": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "No.",
            "Load",
            "Node",
            "Component",
            "Axial",
            "Shear-y",
            "Shear-z",
            "Torsion",
            "Moment-y",
            "Moment-z"
        ],
        "DATA": [
            [
                "1",
                "1",
                "STLENV_STR(max)",
                "1",
                "Axial",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "8.390747558594",
                "6.234448486328"
            ],
            [
                "2",
                "1",
                "STLENV_STR(max)",
                "1",
                "Shear-y",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "8.390747558594",
                "6.234448486328"
            ],
            [
                "3",
                "1",
                "STLENV_STR(max)",
                "1",
                "Shear-z",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "8.390747558594",
                "6.234448486328"
            ],
            [
                "4",
                "1",
                "STLENV_STR(max)",
                "1",
                "Torsion",
                "8.739473510742",
                "16.152344482422",
                "45.287217773437",
                "0.000036050167",
                "8.316552856445",
                "6.182241577148"
            ],
            [
                "5",
                "1",
                "STLENV_STR(max)",
                "1",
                "Moment-y",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "8.390747558594",
                "6.234448486328"
            ],
            [
                "6",
                "1",
                "STLENV_STR(max)",
                "1",
                "Moment-z",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "8.390747558594",
                "6.234448486328"
            ],
            [
                "7",
                "1",
                "STLENV_STR(max)",
                "934",
                "Axial",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "0.006470550716",
                "3.827291442871"
            ],
            [
                "8",
                "1",
                "STLENV_STR(max)",
                "934",
                "Shear-y",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "0.006470550716",
                "3.827291442871"
            ],
            [
                "9",
                "1",
                "STLENV_STR(max)",
                "934",
                "Shear-z",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "0.006470550716",
                "3.827291442871"
            ],
            [
                "10",
                "1",
                "STLENV_STR(max)",
                "934",
                "Torsion",
                "8.739473510742",
                "16.152344482422",
                "45.287217773437",
                "0.000036050167",
                "0.006462644994",
                "3.795200134277"
            ],
            [
                "11",
                "1",
                "STLENV_STR(max)",
                "934",
                "Moment-y",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "0.006470550716",
                "3.827291442871"
            ],
            [
                "12",
                "1",
                "STLENV_STR(max)",
                "934",
                "Moment-z",
                "8.761203247070",
                "16.289886962891",
                "45.691238769531",
                "0.000035891681",
                "0.006470550716",
                "3.827291442871"
            ],
            [
                "13",
                "1",
                "STLENV_STR(min)",
                "1",
                "Axial",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-2.720105834961",
                "-2.850937133789"
            ],
            [
                "14",
                "1",
                "STLENV_STR(min)",
                "1",
                "Shear-y",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-2.720105834961",
                "-2.850937133789"
            ],
            [
                "15",
                "1",
                "STLENV_STR(min)",
                "1",
                "Shear-z",
                "-12.518142211914",
                "-12.395805419922",
                "-14.896085449219",
                "-0.000036808800",
                "-2.740131072998",
                "-2.833851348877"
            ],
            [
                "16",
                "1",
                "STLENV_STR(min)",
                "1",
                "Torsion",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-2.720105834961",
                "-2.850937133789"
            ],
            [
                "17",
                "1",
                "STLENV_STR(min)",
                "1",
                "Moment-y",
                "-12.518142211914",
                "-12.395805419922",
                "-14.896085449219",
                "-0.000036808800",
                "-2.740131072998",
                "-2.833851348877"
            ],
            [
                "18",
                "1",
                "STLENV_STR(min)",
                "1",
                "Moment-z",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-2.720105834961",
                "-2.850937133789"
            ],
            [
                "19",
                "1",
                "STLENV_STR(min)",
                "934",
                "Axial",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-0.027149106026",
                "-1.640699447632"
            ],
            [
                "20",
                "1",
                "STLENV_STR(min)",
                "934",
                "Shear-y",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-0.027149106026",
                "-1.640699447632"
            ],
            [
                "21",
                "1",
                "STLENV_STR(min)",
                "934",
                "Shear-z",
                "-12.518142211914",
                "-12.395805419922",
                "-14.896085449219",
                "-0.000036808800",
                "-0.026909042120",
                "-1.632021972656"
            ],
            [
                "22",
                "1",
                "STLENV_STR(min)",
                "934",
                "Torsion",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-0.027149106026",
                "-1.640699447632"
            ],
            [
                "23",
                "1",
                "STLENV_STR(min)",
                "934",
                "Moment-y",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-0.027149106026",
                "-1.640699447632"
            ],
            [
                "24",
                "1",
                "STLENV_STR(min)",
                "934",
                "Moment-z",
                "-12.628945922852",
                "-12.480967529297",
                "-14.787094970703",
                "-0.000036943423",
                "-0.027149106026",
                "-1.640699447632"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Elastic Link: "ELASTICLINK"

 • Elastic Link - View by Max Value Items: "ELASTICLINKVBM"

"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

View By Max Value Items

11

Select Component

 • Elastic Link

   ◦ "Axial"

   ◦ "Shear-y"

   ◦ "Shear-z"

   ◦ "Torsion"

   ◦ "Moment-y"

   ◦ "Moment-z"

"ITEM_TO_DISPLAY"

Array [String]

All

Optional



0
Was this article helpful?