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

解析モデルのき本設定

入力 URI

{base url} + db/STYP



メソッド

GET, PUT



JSON スキーマ

詳細

{
    "STYP": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "STYP": {
                "description": "StructureType",
                "type": "integer"
            },
            "MASS": {
                "description": "MassType",
                "type": "integer"
            },
            "bMASSOFFSET": {
                "description": "ConsiderOffset",
                "type": "boolean"
            },
            "bSELFWEIGHT": {
                "description": "ConvertSelfWeigth",
                "type": "boolean"
            },
            "SMASS": {
                "description": "StructureMassType",
                "type": "integer"
            },
            "GRAV": {
                "description": "Gravity",
                "type": "number"
            },
            "TEMP": {
                "description": "InitialTemperature",
                "type": "number"
            },
            "bALIGNBEAM": {
                "description": "AlignTopofBeamSection",
                "type": "boolean"
            },
            "bALIGNSLAB": {
                "description": "AlignTopofSlab(Plate)",
                "type": "boolean"
            },
            "bROTRIGID": {
                "description": "ConsideringRotationalRigid",
                "type": "boolean"
            }
        }
    }
}


解析モデルの基本設定

{
    "Assign": {
        "1": {
            "STYP": 0,
            "MASS": 1,
            "bMASSOFFSET": false,
            "bSELFWEIGHT": false,
            "GRAV": 9.806,
            "TEMP": 0,
            "bALIGNBEAM": false,
            "bALIGNSLAB": false,
            "bROTRIGID": false
        }
    }
}

分布質量 + 自重を質量に変換(X, Y方向に変換)

{
    "Assign": {
        "1": {
            "STYP": 0,
            "MASS": 2,
            "bMASSOFFSET": false,
            "bSELFWEIGHT": true,
            "SMASS": 2,
            "GRAV": 9.806,
            "TEMP": 0,
            "bALIGNBEAM": false,
            "bALIGNSLAB": false,
            "bROTRIGID": true
        }
    }
}


仕様

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

1

Structure Type

 • 3-D: 0

 • X-Z Plane: 1

 • Y-Z Plane: 2

 • X-Y Plane: 3

 • Constraint RZ: 4

"STYP"

Integer

System

オプション

2

Mass Type

 • Lumped Mass: 1

 • Consistent Mass: 2

"MASS"

Integer

-

オプション

3

Gravity Acceleration

"GRAV"

Number

System

オプション

4

Initial Temperature

"TEMP"

Number

0

オプション

5

Align Top of Beam Section

"bALIGNBEAM"

Boolean

false

オプション

6

Align the Top of the Slab (Plate)

"bALIGNSLAB"

Boolean

false

オプション

When Lumped Mass, "MASS" is 1

7

Consider Off-diagonal Masses

"bMASSOFFSET"

Boolean

false

オプション

8

Considering Rotational Rigid Body Mode for Modal Participation Factor

"bROTRIGID"

Boolean

false

オプション

9

Convert Self-weight into Masses

"bSELFWEIGHT"

Boolean

false

オプション

When Convert Self-weight into Masses, "bSELFWEIGHT" is True

10

Structure Mass Type

 • Convert to X, Y, Z: 1

 • Convert to X, Y: 2

 • Convert to Z: 3

"SMASS"

Integer

1

オプション



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