Skip to main content
JSON Manual Created Edited

Dynamic Nodal Loads

Input URI

{base url} + db/THNL



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "THNL": {
        "$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"
                        },
                        "THLCNAME": {
                            "description": "TimeHistoryLoadcasename",
                            "type": "string"
                        },
                        "FUNC_NAME": {
                            "description": "ThisfunctionName",
                            "type": "string"
                        },
                        "DIR": {
                            "description": "Direction",
                            "type": "string"
                        },
                        "ARRIVAL_TIME": {
                            "description": "ArrivalTime",
                            "type": "number"
                        },
                        "SCALE_FACTOR": {
                            "description": "ScaleFactor",
                            "type": "number"
                        }
                    }
                }
            }
        }
    }
}


Examples

Dynamic Nodal Loads

{
    "Assign": {
        "1": {
            "ITEMS": [
                {
                    "ID": 1,
                    "THLCNAME": "TH1",
                    "FUNC_NAME": "TH1",
                    "DIR": "Y",
                    "ARRIVAL_TIME": 10,
                    "SCALE_FACTOR": 1.1
                }
            ]
        },
        "2": {
            "ITEMS": [
                {
                    "ID": 1,
                    "THLCNAME": "TH1",
                    "FUNC_NAME": "TH1",
                    "DIR": "Z",
                    "ARRIVAL_TIME": 5,
                    "SCALE_FACTOR": 1.2
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Dynamic Nodal Loads

 • Insert the data as an object

"ITEMS"

Array
[Object]

-

Required

(1)

Serial Number

"ID"

Integer

0

Optional

(2)

Time History Load Case Name

"THLCNAME"

String

-

Required

(3)

Time History Function Name ¹⁾

"FUNC_NAME"

String

-

Required

(4)

Direction

 • X: "X"

 • Y: "Y"

 • Z: "Z"

"DIR"

String

-

Required

(5)

Arrival Time

"ARRIVAL_TIME"

Number

-

Required

(6)

Scale Factor

"SCALE_FACTOR"

Number

-

Required



¹⁾ Available Time Function Data Type: Force, Moment

0
Was this article helpful?