Skip to main content
JSON Manual Created Edited

Truss Forces - Result Display

Input URI

{base url} + view/RESULTGRAPHIC



Active Methods

POST



JSON Schema

Details

{
    "RESULTGRAPHIC": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "CURRENT_MODE": {
                        "type": "string",
                        "description": "ResultGraphicMode",
                        "enum": [
                            "TrussForces"
                        ]
                    },
                    "LOAD_CASE_COMB": {
                        "type": "object",
                        "description": "LoadCaseandCombinations",
                        "properties": {
                            "TYPE": {
                                "type": "string",
                                "description": "LoadCase",
                                "enum": [
                                    "ST",
                                    "CS",
                                    "RS",
                                    "TH",
                                    "MV",
                                    "SM",
                                    "CB"
                                ]
                            },
                            "MINMAX": {
                                "type": "string",
                                "description": "LoadType",
                                "enum": [
                                    "Max",
                                    "Min",
                                    "All"
                                ]
                            },
                            "NAME": {
                                "type": "string",
                                "description": "LoadName"
                            },
                            "STEP_INDEX": {
                                "type": "integer",
                                "description": "StepofLoadCase"
                            }
                        }
                    },
                    "COMPONENTS": {
                        "type": "object",
                        "description": "Components",
                        "properties": {
                            "COMP": {
                                "type": "string",
                                "description": "ComponentsName",
                                "enum": [
                                    "All",
                                    "Tens.",
                                    "Comp."
                                ]
                            }
                        }
                    },
                    "TYPE_OF_DISPLAY": {
                        "type": "object",
                        "description": "TypeofDisplay",
                        "properties": {
                            "CONTOUR": {
                                "type": "object",
                                "description": "ContourDetails"
                            },
                            "DEFORM": {
                                "type": "object",
                                "description": "DeformationDetails"
                            },
                            "VALUES": {
                                "type": "object",
                                "description": "ValuesOutputDetails"
                            },
                            "LEGEND": {
                                "type": "object",
                                "description": "LegendDetails"
                            },
                            "UNDEFORMED": {
                                "type": "boolean",
                                "description": "DisplayUndeformedShape"
                            },
                            "MIRRORED": {
                                "type": "object",
                                "description": "SymmetricModelMirrorDetail"
                            },
                            "OPT_CUR_STEP_FORCE": {
                                "type": "boolean",
                                "description": "CurrentStepForce"
                            }
                        }
                    },
                    "OUTPUT_SECT_LOCATION": {
                        "type": "object",
                        "description": "OutputSectionLocation",
                        "properties": {
                            "OPT_IJ_MAX_ALL": {
                                "type": "string",
                                "description": "AvailableOptions",
                                "enum": [
                                    "I",
                                    "J",
                                    "Max",
                                    "All"
                                ]
                            }
                        }
                    }
                }
            }
        }
    }
}


Examples

Truss Forces

{
    "Argument": {
        "CURRENT_MODE": "TrussForces",
        "LOAD_CASE_COMB": {
            "TYPE": "st",
            "MINMAX": "max",
            "NAME": "dl",
            "STEP_INDEX": 1
        },
        "COMPONENTS": {
            "COMP": "All"
        },
        "TYPE_OF_DISPLAY": {
            "CONTOUR": {
                "OPT_CHECK": true
            },
            "DEFORM": {
                "OPT_CHECK": true
            },
            "VALUES": {
                "OPT_CHECK": true
            },
            "LEGEND": {
                "OPT_CHECK": true
            },
            "MIRRORED": {
                "OPT_CHECK": true
            },
            "UNDEFORMED": {
                "OPT_CHECK": true
            },
            "OPT_CUR_STEP_FORCE": false
        },
        "OUTPUT_SECT_LOCATION": {
            "OPT_I_J_MAX_ALL": "i"
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Result Graphic Mode

 • "Truss Forces"

"CURRENT_MODE"

String

-

Required

2

Load Case and Combinations

"LOAD_CASE_COMB"

Object

-

Required

(1)

Load Case

 • Static Load: "ST"

 • Construction Stage: "CS"

 • Response Spectrum: "RS"

 • Time History: "TH"

 • Moving Load: "MV"

 • Settlement: "SM"

 • Load Combinations: "CB"

"TYPE"

String

-

Required

(2)

Load Type

 • Envelop Max: "Max"

 • Envelop Min: "Min"

 • Envelop Abs Max: "All"

"MINMAX"

String

"Max"

Optional

(3)

Load Name

"NAME"

String

 -

Required

(4)

Step of Load Case

"STEP_INDEX"

Integer

 -

Required

3

Components

"COMPONENTS"

Object

-

Optional

(1)

Components Name

 • Abs Max: "All"

 • Tension Forces: "Tens."

 • Compression Forces: "Comp."

"COMP"

String

"All"

Optional

4

Type of Display ¹⁾

"TYPE_OF_DISPLAY"

Object

-

Optional

(1)

Contour Details

"CONTOUR"

Object

-

Optional

(2)

Deformation Details

"DEFORM"

Object

-

Optional

(3)

Values Output Details

"VALUES"

Object

-

Optional

(4)

Legend Details

"LEGEND"

Object

-

Optional

(5)

Display Undeformed Shape

"UNDEFORMED"

Boolean

false

Optional

(6)

Symmetric Model Mirror Detail

"MIRRORED"

Object

-

Optional

(7)

Current Step Force

"OPT_CUR_STEP_FORCE"

Boolean

false

Optional

5

Output Section Location

 • When "VALUES" is True

"OUTPUT_SECT_LOCATION"

Object

-

Optional

(1)

Available Options

 • Interior: "I"

 • Exterior: "J"

 • ABS Max: "Max"

 • Both: "All"

"OPT_I_J_MAX_ALL"

String

"I"

Optional



¹⁾ For more details, refer to the Type of Display ↗

0
Was this article helpful?