メインコンテンツへスキップ
JSON Manual 作成 編集

P-デルタ解析制御

入力 URI

{base url} + db/PDEL



メソッド

POST, GET, PUT, DELETE



JSON スキーマ

詳細

{
    "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"
                        }
                    }
                }
            }
        }
    }
}


P-デルタ解析制御

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


仕様

No. 説明 Key データ型 Default 必須

1

Number of Iterations

"ITER"

Number

-

必須

2

Convergence Tolerance

"TOL"

Number

0

オプション

3

Load Cases

 • Insert the data as an object

"PDEL_CASES"

Array
[Object]

-

必須

(1)

Load Case Name

"LCNAME"

String

-

必須

(2)

Scale Factor

"FACTOR"

Number

-

必須



0
コンテンツが役に立ちましたか?