Skip to main content
JSON Manual Created Edited

Moving Load Analysis Control - Transverse

Input URI

{base url} + db/MVCTTR



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "MVCTTR": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "LOAD_POINT_SEL": {
                "description": "LoadPointSelection",
                "type": "integer"
            },
            "INFL_GEN_POINT": {
                "description": "InfluenceGenerationMethod",
                "type": "integer"
            },
            "NUM_UNIT_LOAD": {
                "description": "Number/LineElements",
                "type": "integer"
            },
            "DISTANCE": {
                "description": "DistancebetweenPoints",
                "type": "number"
            },
            "ANALYSIS_RESULT": {
                "description": "AnalysisResults",
                "type": "integer"
            },
            "OPT_COMBINED_STR": {
                "description": "UseCombinedStress",
                "type": "boolean"
            },
            "OPT_REACTIONS": {
                "description": "UseReactions",
                "type": "boolean"
            },
            "OPT_DISPLACEMENTS": {
                "description": "UseDisplacements",
                "type": "boolean"
            },
            "OPT_FORCE": {
                "description": "UseForces/Moments",
                "type": "boolean"
            }
        }
    }
}


Examples

Moving Load Analysis Control

{
    "Assign": {
        "1": {
            "LOAD_POINT_SEL": 1,
            "INFL_GEN_POINT": 0,
            "NUM_UNIT_LOAD": 3,
            "ANALYSIS_RESULT": 2,
            "OPT_COMBINED_STR": true,
            "OPT_REACTIONS": true,
            "OPT_DISPLACEMENTS": true,
            "OPT_FORCE": false
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Load Point Selection

 • Influence Line Dependent Point: 1

 • All Point: 2

"LOAD_POINT_SEL"

Integer

-

Required

2

 Influence Generation Method

 • Number/Line Element: 0

 • Distance between Points: 1

"INFL_GEN_POINT"

Integer

0

Optional 

3

Number/Line Element

"NUM_UNIT_LOAD"

Integer

-

Required

4

Distance between Points

"DISTANCE"

Number

-

Required

5

Analysis Results Type

 • Normal: 1

 • Normal + Concurrent Force/Stress: 2

"ANALYSIS_RESULT"

Integer

-

Required

6

Combined Stress

 • Active/Inactive

"OPT_COMBINED_STR"

Boolean

false

Optional

7

Reactions

 • Active/Inactive

"OPT_REACTIONS"

Boolean

false

Optional

8

Displacement

 • Active/Inactive

"OPT_DISPLACEMENTS"

Boolean

false

Optional

9

Forces/Moments

 • Active/Inactive

"OPT_FORCE"

Boolean

false

Optional



0
Was this article helpful?