Skip to main content
JSON Manual Created Edited

Fiber Section Elastic Modulus Retention Rate - TH Result Table

Input URI

{base url} + post/TABLE



Active Methods

POST



JSON Schema

Details

{
    "RESULTGRAPHIC": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "Table Name"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "Result Table Type",
                        "enum": [
                            "THISBEAMFORCE"
                        ]
                    },
                    "EXPORT_PATH": {
                        "type": "string",
                        "description": "Result Table Save Path"
                    },
                    "UNIT": {
                        "type": "object",
                        "description": "Response Unit Setting",
                        "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": "Response Number Format",
                        "properties": {
                            "FORMAT": {
                                "type": "string",
                                "description": "Number format",
                                "enum": [
                                    "Default",
                                    "Fixed",
                                    "Scientific",
                                    "General"
                                ]
                            },
                            "PLACE": {
                                "type": "integer",
                                "description": "Digit place"
                            }
                        }
                    },
                    "COMPONENTS": {
                        "type": "array",
                        "description": "Components of Result Table",
                        "items": {
                            "type": "string"
                        }
                    },
                    "LOAD_CASE_NAMES": {
                        "type": "array",
                        "description": "Time History Load Name",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Elastic Modulus Retention Rate

{
    "Argument": {
        "TABLE_NAME": "ElasticModulus",
        "TABLE_TYPE": "FIBR_ELASTREMAIN",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "番号/要素",
            "番号/断面",
            "番号/セルNo.",
            "番号/荷重",
            "セル位置/y",
            "セル位置/z",
            "弾性剛性残存率/K",
            "セル面積/△A"
        ],
        "TH_LOAD_CASE_NAMES": [
            "kh"
        ]
    }
}


Response Examples

Elastic Modulus Retention Rate

{
    "ElasticModulus": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "番号/要素",
            "番号/断面",
            "番号/セルNo.",
            "番号/荷重",
            "セル位置/y",
            "セル位置/z",
            "弾性剛性残存率/K",
            "セル面積/△A"
        ],
        "DATA": [
            [
                "1",
                "1203",
                "1-pos",
                "22",
                "kh",
                "-0.617750000000",
                "0.867600000000",
                "0.994194030762",
                "0.034029200000"
            ],
            [
                "2",
                "1203",
                "1-pos",
                "23",
                "kh",
                "-0.441250000000",
                "0.867600000000",
                "0.996670603752",
                "0.034029200000"
            ],
            [
                "1008",
                "1240",
                "3-pos",
                "183",
                "kh",
                "0.624750000000",
                "-0.874800000000",
                "0.797961592674",
                "0.034700400000"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Beam Force: "FIBR_ELASTREMAIN"

"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

Time History Load Name

"LOAD_CASE_NAMES"

Array [String]

All

Optional



0
Was this article helpful?