Skip to main content
JSON Manual Created Edited

Beam Section Properties at Last Stage - 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": "BeamSectionPropertiesatStage",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "ResponseTableTitle"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "SECT_PROP_LAST_STAGE"
                        ]
                    },
                    "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"
                        }
                    },
                    "PART": {
                        "type": "array",
                        "description": "ElementPartNumberforSectionPropertiesatlaststage",
                        "items": {
                            "type": "string",
                            "enum": [
                                "I",
                                "J"
                            ]
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Beam Section Properties at Last Stage

{
    "Argument": {
        "TABLE_NAME": "BeamSectionPropertiesatLastStage",
        "TABLE_TYPE": "SECT_PROP_LAST_STAGE",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "Elem",
            "Part",
            "Area",
            "Ixx",
            "Iyy",
            "Izz",
            "Cyp",
            "Cym",
            "Czp",
            "Czm",
            "WArea",
            "TranslationalDistance/Local-y",
            "TranslationalDistance/Local-z"
        ],
        "NODE_ELEMS": {
            "KEYS": [
                1
            ]
        },
        "PART": [
            "I",
            "J"
        ]
    }
}


Response Examples

Beam Section Properties at Last Stage

{
    "BeamSectionPropertiesatLastStage": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "Elem",
            "Part",
            "Area",
            "Ixx",
            "Iyy",
            "Izz",
            "Cyp",
            "Cym",
            "Czp",
            "Czm",
            "WArea",
            "TranslationalDistance/Local-y",
            "TranslationalDistance/Local-z"
        ],
        "DATA": [
            [
                "1",
                "1",
                "I",
                "8.727994548810",
                "20.682435509704",
                "9.223590468456",
                "89.978467537933",
                "6.350000000000",
                "6.350000000000",
                "1.052513157089",
                "1.647486842911",
                "8.640750000000",
                "0.000000000000",
                "-0.009566653602"
            ],
            [
                "2",
                "1",
                "J",
                "8.727994548810",
                "20.682435509704",
                "9.291774354805",
                "90.033273016173",
                "6.350000000000",
                "6.350000000000",
                "1.055989001303",
                "1.644010998697",
                "8.640750000000",
                "0.000000000000",
                "-0.013042497817"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Beam Section Properties at Stage: "SECT_PROP_LAST_STAGE"

"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

Element Part Number for Section Properties at last stage

 • "I"

 • "J"

"PART"

Array [String]

All

Optional



0
Was this article helpful?