Skip to main content
JSON Manual Created Edited

Small Displacement - Initial Element Force

Input URI

{base url} + db/INMF



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "INMF": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "ELEM_TYPE": {
                "description": "ElementType",
                "type": "string"
            },
            "ELEM_KEY": {
                "description": "ElementID",
                "type": "integer"
            },
            "ELEMENT_FORCES": {
                "description": "ElementForces",
                "type": "array",
                "items": {
                    "type": "number"
                }
            }
        }
    }
}


Examples

Small Displacement/Initial Element Force

{
    "Assign": {
        "1": {
            "ELEM_TYPE": "BEAM",
            "ELEM_KEY": 15,
            "ELEMENT_FORCES": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
            ]
        },
        "2": {
            "ELEM_TYPE": "TRUSS",
            "ELEM_KEY": 112,
            "ELEMENT_FORCES": [
                1,
                2
            ]
        },
        "3": {
            "ELEM_TYPE": "E-LINK",
            "ELEM_KEY": 1,
            "ELEMENT_FORCES": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
            ]
        },
        "4": {
            "ELEM_TYPE": "G-LINK",
            "ELEM_KEY": 1,
            "ELEMENT_FORCES": [
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Element Type

 • Beam: "BEAM"

 • Truss: "TRUSS"

 • Elastic Link: "E-LINK"

 • General Link: "G-LINK"

"ELEM_TYPE"

String

-

Required

2

Element ID

"ELEM_KEY"

Integer

-

Required

3

Element Forces

 • [Axial-i, Shear(y)-i, Shear(z)-i, Torsion-i, Moment(y)-i, Moment(z)-i, Axial-j, Shear(y)-j, Shear(z)-j, Torsion-j, Moment(y)-j, Moment(z)-j]

"ELEM_FORCES"

Array
[Number, 12]

-

Required



0
Was this article helpful?