File ManagerAccount SettingsAccessing The SoftwareSupportTeam ManagementFull Demos
Certification
Individual materials are stored in the materials object. Each section inside the sections object should be identified by a unique positive integer.
| Input | Type | Description |
|---|---|---|
| materials | Object | Each material is defined as an object with properties. |
| Material Properties | Type | Value | Description |
|---|---|---|---|
| name | String | - | The name of the material. |
| density | Number | Mass/Length3 | The density of the material. |
| elasticity_modulus | Number | Pressure | Modulus of elasticity of the material. Also known as Young's Modulus. |
| poissons_ratio | Number | - | Poisson's Ratio, also known as coefficient of expansion. |
{
"materials": {
"1": {
"name": "Structural Steel",
"density": 7850,
"elasticity_modulus": 200000,
"poissons_ratio": 0.27
},
"2": {
"name": "Aluminium",
"density": 2700,
"elasticity_modulus": 69000,
"poissons_ratio": 0.32
}
}
}