Skip to main content
JSON Manual Created Edited

Element Convection Boundary

Input URI

{base url} + db/HECB



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "HECB": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "ITEMS": {
                "description": "Items",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "ID": {
                            "description": "ID",
                            "type": "integer"
                        },
                        "GROUP_NAME": {
                            "description": "BoundaryGroupName",
                            "type": "string"
                        },
                        "FACE_NO": {
                            "description": "FACE#",
                            "type": "integer"
                        },
                        "CCFC_NAME": {
                            "description": "ConvectionCoefficientFunction",
                            "type": "string"
                        },
                        "ETFC_NAME": {
                            "description": "AmbientTemperatureFunction",
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}


Examples

Element Convection Boundary

{
    "Assign": {
        "10": {
            "ITEMS": [
                {
                    "ID": 1,
                    "GROUP_NAME": "",
                    "FACE_NO": 1,
                    "CCFC_NAME": "ConvectionCoeff",
                    "ETFC_NAME": "22"
                }
            ]
        },
        "11": {
            "ITEMS": [
                {
                    "ID": 1,
                    "GROUP_NAME": "",
                    "FACE_NO": 2,
                    "CCFC_NAME": "ConvectionCoeff",
                    "ETFC_NAME": "AmbientTemperature"
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Element Convection Boundary

 • Insert the data as an object

"ITEMS"

Array
[Object]

-

Required

(1)

Serial Number

"ID"

Integer

0

Optional

(2)

Boundary Group Name

"GROUP_NAME"

String

Blank

Optional

(3)

Face#1 ~ Face#6

"FACE_NO"

Integer

-

Required

(4)

Convection Coefficient Function

"CCFC_NAME"

String

-

Required

(5)

Ambient Temperature Function

"ETFC_NAME"

String

-

Required



0
Was this article helpful?