Skip to main content
JSON Manual Created Edited

Pipe Cooling Nodal Temperature - HY 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": "TableName"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "HEAT_HYDR_PIPE_NODE_TEMP"
                        ]
                    },
                    "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"
                            }
                        }
                    },
                    "COMPONENTS": {
                        "type": "array",
                        "description": "ComponentsofResultTable",
                        "items": {
                            "type": "string"
                        }
                    },
                    "STAGE_STEP": {
                        "type": "array",
                        "description": "StageStepName",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Pipe Cooling Nodal Temperature

{
    "Argument": {
        "TABLE_NAME": "PipeCoolingNodalTemperature",
        "TABLE_TYPE": "HEAT_HYDR_PIPE_NODE_TEMP",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "N",
            "DIST": "mm"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "PipeCooling",
            "Stage",
            "Step",
            "Time",
            "Node",
            "Temperature"
        ],
        "STAGE_STEP": [
            "CS1:001"
        ]
    }
}


Response Examples

Pipe Cooling Nodal Temperature

{
    "PipeCoolingNodalTemperature": {
        "FORCE": "N",
        "DIST": "mm",
        "HEAD": [
            "Index",
            "PipeCooling",
            "Stage",
            "Step",
            "Time",
            "Node",
            "Temperature"
        ],
        "DATA": [
            [
                "1",
                "PipeCooling",
                "CS1",
                "001",
                "10.000000000000",
                "296",
                "13.000000000000"
            ],
            [
                "2",
                "PipeCooling",
                "CS1",
                "001",
                "10.000000000000",
                "283",
                "13.000000000000"
            ],
            [
                "3",
                "PipeCooling",
                "CS1",
                "001",
                "10.000000000000",
                "270",
                "13.000000000000"
            ],
            [
                "4",
                "PipeCooling",
                "CS1",
                "001",
                "10.000000000000",
                "257",
                "13.000000000000"
            ],
            [
                "5",
                "PipeCooling",
                "CS1",
                "001",
                "10.000000000000",
                "244",
                "13.000000000000"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Pipe Cooling Nodal Temperature: "HEAT_HYDR_PIPE_NODE_TEMP"

"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

Stage Step Name

"STAGE_STEP"

Array [String]

All

Optional



0
Was this article helpful?