Skip to main content
JSON Manual Created Edited

Thickness - Value

Input URI

{base url} + db/THIK



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "THIK": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "NAME": {
                "description": "Name",
                "type": "string"
            },
            "TYPE": {
                "description": "Type",
                "type": "string"
            },
            "bINOUT": {
                "description": "ThickType",
                "type": "boolean"
            },
            "T_IN": {
                "description": "Thick_In",
                "type": "number"
            },
            "T_OUT": {
                "description": "Thick_Out",
                "type": "number"
            },
            "OFFSET": {
                "description": "OFFSET:NONE,RATIO,VALUE",
                "type": "integer"
            },
            "O_VALUE": {
                "description": "Value",
                "type": "number"
            }
        }
    }
}


Examples

In-plane & Out-of-plane has same value

{
    "Assign": {
        "1": {
            "NAME": "1",
            "TYPE": "VALUE",
            "bINOUT": false,
            "T_IN": 0.1,
            "T_OUT": 0,
            "O_VALUE": 0
        }
    }
}

In-plane & Out-of plane has each value

{
    "Assign": {
        "2": {
            "NAME": "2",
            "TYPE": "VALUE",
            "bINOUT": true,
            "T_IN": 0.1,
            "T_OUT": 0.1,
            "O_VALUE": 0
        }
    }
}

Plate Offset with Thickness Ratio

{
    "Assign": {
        "3": {
            "NAME": "3",
            "TYPE": "VALUE",
            "bINOUT": true,
            "T_IN": 0.1,
            "T_OUT": 0.1,
            "OFFSET": 1,
            "O_VALUE": 0.05
        }
    }
}

Plate Offset with Value

{
    "Assign": {
        "4": {
            "NAME": "4",
            "TYPE": "VALUE",
            "bINOUT": true,
            "T_IN": 0.1,
            "T_OUT": 0.1,
            "OFFSET": 2,
            "O_VALUE": 0.05
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Thickness Name

"NAME"

String

-

Required

2

Thickness Type

 • Value: "VALUE"

 • Stiffened: "STIFFENED"

"TYPE"

String

-

Required

3

Plane

 • In-plane & Out-of-plane: false

 • In-plane / Out-of-plane: true

"bINOUT"

Boolean

false

Optional

4

In-plane Thickness

"T_IN"

Number

-

Required

5

Out-of-plane Thickness

 • When "bINOUT" is True

"T_OUT"

Number

-

Required

6

Plate Offset Option

 • None: 0

 • Thickness Ratio: 1

 • Value: 2

"OFFSET"

Integer

0

Optional

7

Local z Direction Offset Value

 • When "OFFSET" is 1 or 2

"O_VALUE"

Number

0

Optional



0
Was this article helpful?