Skip to main content
JSON Manual Created Edited

Axisymmetric Stresses - 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": [
                            "AxisymmetricStresses"
                        ]
                    },
                    "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"
                            }
                        }
                    },
                    "OPTIONS": {
                        "type": "object",
                        "description": "PlateForceOptions",
                        "properties": {
                            "LOCAL_UCS": {
                                "type": "object",
                                "description": "CoordinationSystemOptions",
                                "properties": {
                                    "TYPE": {
                                        "type": "string",
                                        "description": "CoordinateSystem",
                                        "enum": [
                                            "UCS",
                                            "Local"
                                        ]
                                    },
                                    "UCS_NAME": {
                                        "type": "string",
                                        "description": "UserCoordinateSystemName",
                                        "enum": [
                                            "CurrentUCS"
                                        ]
                                    },
                                    "OPT_PRINT_UCS_AXIS": {
                                        "type": "boolean",
                                        "description": "PrintUCSAxis"
                                    }
                                }
                            },
                            "AVERAGE_NODAL": {
                                "type": "object",
                                "description": "ResultTypeOptions",
                                "properties": {
                                    "TYPE": {
                                        "type": "string",
                                        "description": "AverageCalculationMethod",
                                        "enum": [
                                            "Element",
                                            "Avg.Nodal"
                                        ]
                                    },
                                    "OPT_ACTIVE_ONLY": {
                                        "type": "boolean",
                                        "description": "AverageNodalActiveOnly"
                                    }
                                }
                            }
                        }
                    },
                    "COMPONENTS": {
                        "type": "object",
                        "description": "Components",
                        "properties": {
                            "COMP": {
                                "type": "string",
                                "description": "ComponentsName",
                                "enum": [
                                    "Sig-xx",
                                    "Sig-yy",
                                    "Sig-zz",
                                    "Sig-xy",
                                    "Sig-yz",
                                    "Sig-xz",
                                    "Sig-p1",
                                    "Sig-p2",
                                    "Sig-p3",
                                    "Max-Shear",
                                    "Sig-eff",
                                    "Sig-pmax"
                                ]
                            },
                            "VECTOR_OPTION": {
                                "type": "object",
                                "description": "VectorOptions",
                                "properties": {
                                    "OPT_POSITIVE": {
                                        "type": "boolean",
                                        "description": "DisplayPositiveValueofthePrincipalForcesinVectors"
                                    },
                                    "OPT_NEGATIVE": {
                                        "type": "boolean",
                                        "description": "DisplayNegativeValueofthePrincipalForcesinVectors"
                                    },
                                    "SCALE_FACTOR_LENGTH": {
                                        "type": "number",
                                        "description": "VectorDiagramScaleFactorLength"
                                    },
                                    "SCALE_FACTOR_THICKNESS": {
                                        "type": "integer",
                                        "description": "VectorDiagramScaleFactorThickness"
                                    }
                                }
                            }
                        }
                    },
                    "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"
                            },
                            "DISP_OPT": {
                                "type": "object",
                                "description": "DisplayOptionDetails"
                            },
                            "YIELD_POINT": {
                                "type": "boolean",
                                "description": "YieldPoint"
                            }
                        }
                    }
                }
            }
        }
    }
}


Examples

Stress Options (Local)

{
    "Argument": {
        "CURRENT_MODE": "AxisymmetricStresses",
        "LOAD_CASE_COMB": {
            "TYPE": "ST",
            "NAME": "DeadLoad",
            "STEP_INDEX": 1
        },
        "OPTIONS": {
            "LOCAL_UCS": {
                "TYPE": "Local"
            },
            "AVERAGE_NODAL": {
                "TYPE": "Avg.Nodal"
            },
            "SURFACE": "Top"
        },
        "COMPONENTS": {
            "COMP": "Sig-xx"
        },
        "TYPE_OF_DISPLAY": {
            "CONTOUR": {
                "OPT_CHECK": true,
                "NUM_OF_COLOR": 6,
                "COLOR_TYPE": "rgb",
                "GRADIENT_FILL": false,
                "CONTOUR_FILL": false
            }
        }
    }
}

Stress Options (Local - Vector)

{
    "Argument": {
        "CURRENT_MODE": "AxisymmetricStresses",
        "LOAD_CASE_COMB": {
            "TYPE": "ST",
            "NAME": "DeadLoad",
            "STEP_INDEX": 10
        },
        "OPTIONS": {
            "LOCAL_UCS": {
                "TYPE": "Local"
            },
            "AVERAGE_NODAL": {
                "TYPE": "Element"
            }
        },
        "COMPONENTS": {
            "COMP": "Vector",
            "VECTOR_OPTION": {
                "OPT_POSITIVE": true,
                "OPT_NEGATIVE": true,
                "SCALE_FACTOR_LENGTH": 1.0,
                "SCALE_FACTOR_THICKNESS": 2
            }
        },
        "TYPE_OF_DISPLAY": {
            "CONTOUR": {
                "OPT_CHECK": true,
                "NUM_OF_COLOR": 12,
                "COLOR_TYPE": "rgb",
                "GRADIENT_FILL": false,
                "CONTOUR_FILL": false
            }
        }
    }
}

Stress Options (UCS)

{
    "Argument": {
        "CURRENT_MODE": "AxisymmetricStresses",
        "LOAD_CASE_COMB": {
            "TYPE": "ST",
            "NAME": "DeadLoad",
            "STEP_INDEX": 10
        },
        "OPTIONS": {
            "LOCAL_UCS": {
                "TYPE": "UCS",
                "UCS_NAME": "CurrentUCS"
            },
            "AVERAGE_NODAL": {
                "TYPE": "Avg.Nodal"
            }
        },
        "COMPONENTS": {
            "COMP": "Sig-eff"
        },
        "TYPE_OF_DISPLAY": {
            "CONTOUR": {
                "OPT_CHECK": true,
                "NUM_OF_COLOR": 12,
                "COLOR_TYPE": "rgb",
                "GRADIENT_FILL": false,
                "CONTOUR_FILL": false
            }
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Result Graphic Mode

 • "Axisymmetric Stresses"

"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

Plate Force Options

"OPTIONS"

Object

 -

Optional

(1)

Coordinate System Options

"LOCAL_UCS"

Object

 -

Optional

i. Coordinate System

 • User Coord System: "UCS"

 • Local Coord System: "Local"

"TYPE"

String

"UCS"

Optional

ii. User Coordinate System Name

 <strong>• </strong>When "TYPE" is UCS

   ◦ "Current UCS"

"UCS_NAME"

String

"Current UCS" 

Optional

iii. Print UCS Axis

 <strong>• </strong>When "TYPE" is UCS

   ◦ Show the UCS axis: true

   ◦ Hide the UCS axis: false

"OPT_PRINT_UCS_AXIS"

Boolean

true

Optional

(2)

Result Type Options

"AVERAGE_NODAL"

Object

 -

Optional

i. Average Calculation Method

 • Element Forces: "Element"

 • Average Nodal Forces: "Avg.Nodal"

"TYPE"

String

"Element" 

Optional

ii. Average Nodal Active Only

 • When "TYPE" is Avg.Nodal

"OPT_ACTIVE_ONLY"

Boolean

false 

Optional

4

Components

"COMPONENTS"

Object

-

Optional

(1)

Components Name

 <strong>• </strong>UCS

   ◦ "Sig-xx", "Sig-yy", "Sig-zz"

   ◦ "Sig-xy", "Sig-yz", "Sig-xz"

   ◦ "Sig-p1"

   ◦ "Sig-p2"

   ◦ "Sig-p3"

   ◦ "Max-Shear"

   ◦ "Sig-eff"

   ◦ "Sig-pmax"

"COMP"

String

"Fxx"

Optional

(2)

Vector Options

"VECTOR_OPTION"

Object

-

Optional

i. Display Positive Value of the Principal Forces in Vectors

"OPT_POSITIVE"

Boolean

true

Optional

ii. Display Negative Value of the Principal Forces in Vectors

"OPT_NEGATIVE"

Boolean

false

Optional

iii. Vector Diagram Scale Factor Length

"SCALE_FACTOR_LENGTH"

Number

1

Optional

iv. Vector Diagram Scale Factor Thickness

"SCALE_FACTOR_THICKNESS"

Integer

1

Optional

5

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)

Display Option Details

"DISP_OPT"

Object

-

Optional

(8)

Yield Point

"YIELD_POINT"

Boolean

false

Optional



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

0
Was this article helpful?