Skip to main content
JSON Manual Created Edited

Stress - Heat of Hydration 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": [
                            "HY_STRESS"
                        ]
                    },
                    "LOAD_CASE_COMB": {
                        "type": "object",
                        "description": "LoadCaseandCombinations",
                        "properties": {
                            "STEP_INDEX": {
                                "type": "integer",
                                "description": "IndexofHYSteps"
                            }
                        }
                    },
                    "OPTIONS": {
                        "type": "object",
                        "description": "Options",
                        "properties": {
                            "LOCAL_UCS": {
                                "type": "object",
                                "description": "CoordinateSystemSetting",
                                "properties": {
                                    "TYPE": {
                                        "type": "string",
                                        "description": "CoordinateSystem",
                                        "enum": [
                                            "UCS",
                                            "Local"
                                        ]
                                    }
                                }
                            },
                            "AVERAGE_NODAL": {
                                "type": "object",
                                "description": "AverageNode",
                                "properties": {
                                    "TYPE": {
                                        "type": "string",
                                        "description": "StressCalculationMethod",
                                        "enum": [
                                            "Element",
                                            "Avg.Nodal"
                                        ]
                                    },
                                    "OPT_ACTIVE_ONLY": {
                                        "type": "boolean",
                                        "description": "Avg.NodalActiveOnly"
                                    }
                                }
                            }
                        }
                    },
                    "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",
                                    "Tresca",
                                    "Sig-EFF",
                                    "Sig-Pmax",
                                    "Sig-xx",
                                    "Sig-yy",
                                    "Sig-zz",
                                    "Sig-xy",
                                    "Sig-yz",
                                    "Sig-xz",
                                    "Vector"
                                ]
                            }
                        }
                    },
                    "VECTOR_OPTION": {
                        "type": "object",
                        "description": "VectorOptions",
                        "properties": {
                            "SCALE_FACTOR_LENGTH": {
                                "type": "number",
                                "description": "VectorDiagramScale"
                            }
                        }
                    },
                    "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"
                            },
                            "CUTTING_PLANE": {
                                "type": "object",
                                "description": "CuttingPlaneDetailDialog"
                            },
                            "ISO_SURFACE": {
                                "type": "object",
                                "description": "IsoSurfaceDetailDialog"
                            }
                        }
                    }
                }
            }
        }
    }
}


Examples

Heat of Hydration Stress - Global

{
    "Argument": {
        "CURRENT_MODE": "HY_STRESS",
        "LOAD_CASE_COMB": {
            "STEP_INDEX": 1
        },
        "OPTIONS": {
            "LOCAL_UCS": {
                "TYPE": "UCS"
            },
            "AVERAGE_NODAL": {
                "TYPE": "Element"
            }
        },
        "COMPONENTS": {
            "COMP": "Sig-XX"
        },
        "TYPE_OF_DISPLAY": {
            "CONTOUR": {
                "OPT_CHECK": true,
                "NUM_OF_COLOR": 12,
                "COLOR_TYPE": "rgb",
                "GRADIENT_FILL": false,
                "CONTOUR_FILL": false
            }
        }
    }
}

Heat of Hydration Stress - Local

{
    "Argument": {
        "CURRENT_MODE": "HY_STRESS",
        "LOAD_CASE_COMB": {
            "STEP_INDEX": 3
        },
        "OPTIONS": {
            "LOCAL_UCS": {
                "TYPE": "Local"
            },
            "AVERAGE_NODAL": {
                "TYPE": "Element"
            }
        },
        "COMPONENTS": {
            "COMP": "Vector",
            "VECTOR_OPTION": {
                "SCALE_FACTOR_LENGTH": 1.0
            }
        },
        "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

 • "HY_STRESS"

"CURRENT_MODE"

String

-

Required

2

Load Case and Combinations

"LOAD_CASE_COMB"

Object

-

Required

(1)

Index of HY Steps

"STEP_INDEX"

Integer

-

Required

3

Options

"OPTIONS"

Object

-

Required

(1)

Coordinate System Setting

"LOCAL_UCS"

Object

-

Required

i. Coordinate System

 • User Coord. System: "UCS"

 • Local Coord. System: "Local"

"TYPE"

Object

-

Required

(2)

Average Node

"AVERAGE_NODAL"

Object

-

Required

i. Stress Calculation Method

 • Element Stresses : "Element"

 • Average Nodal Stresses: "Avg.Nodal"

"TYPE"

Object

-

Required

ii. Avg.Nodal Active Only

 • When "TYPE" is Avg.Nodal

"OPT_ACTIVE_ONLY"

Object

-

Required

4

Components

"COMPONENTS"

Object

-

Optional

(1)

Components Name

 • UCS

   ◦ "Sig-XX", "Sig-YY", "Sig-ZZ"

   ◦ "Sig-XY", "Sig-YZ", "Sig-XZ"

   ◦ "Sig-P1", "Sig-P2", "Sig-P3"

   ◦ "Tresca", "Sig-EFF", "Sig-Pmax"

"COMP"

String

"Sig-XX"

Optional

(2)

Vector Options

 • When Components is Vector

"VECTOR_OPTION"

Obejct

-

Optional

i. Vector Diagram Scale

"SCALE_FACTOR_LENGTH"

Number

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)

Cutting Plane Detail Dialog

"CUTTING_PLANE"

Object

-

Optional

(8)

IsoSurface Detail Dialog

"ISO_SURFACE"

Object

-

Optional



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

0
Was this article helpful?