Skip to main content
JSON Manual Created Edited

P-Delta Analysis Control

Input URI

{base url} + db/PDEL



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "PDEL": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "ITER": {
                "description": "IterationInteger",
                "type": "integer"
            },
            "TOL": {
                "description": "ToleranceDouble",
                "type": "number"
            },
            "PDEL_CASES": {
                "description": "LoadCases",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "LCNAME": {
                            "description": "LoadCaseName(Const)",
                            "type": "string"
                        },
                        "FACTOR": {
                            "description": "Factor",
                            "type": "number"
                        }
                    }
                }
            }
        }
    }
}


Examples

P-Delta Analysis Control

{
    "Assign": {
        "1": {
            "ITER": 5,
            "TOL": 1e-05,
            "PDEL_CASES": [
                {
                    "LCNAME": "A",
                    "FACTOR": 1
                },
                {
                    "LCNAME": "B",
                    "FACTOR": 1
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Number of Iterations

"ITER"

Number

-

Required

2

Convergence Tolerance

"TOL"

Number

0

Optional

3

Load Cases

 • Insert the data as an object

"PDEL_CASES"

Array
[Object]

-

Required

(1)

Load Case Name

"LCNAME"

String

-

Required

(2)

Scale Factor

"FACTOR"

Number

-

Required



0
Was this article helpful?