Skip to content

Commit

Permalink
Merge pull request #86 from asam-ev/67-emissivity
Browse files Browse the repository at this point in the history
67 emissivity
  • Loading branch information
ClemensLinnhoff authored Sep 24, 2024
2 parents a676650 + 395d969 commit 7cfa4ed
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
5 changes: 5 additions & 0 deletions examples/example_material.xomp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
"surfaceHeightRms": 0.8,
"surfaceCorrelationLength": 1.0
},
"emissivityData": {
"emissivityCoefficient": 0.07,
"temperature": 300.0,
"source": "internet: https://www.engineeringtoolbox.com/emissivity-coefficients-d_447.html"
},
"elasticityData": {
"youngsModulus": 70e9,
"poissonsRatio": 0.35,
Expand Down
26 changes: 25 additions & 1 deletion schemas/material_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,29 @@
"surfaceCorrelationLength"
]
},
"emissivityData": {
"type": "object",
"description": "Emissivity data of the material",
"properties": {
"emissivityCoefficient": {
"type": "number",
"description": "Emissivity describes the ability to emit energy as thermal radiation. Given as the fraction of thermal radiation emitted by a surface relative to the radiation emitted by an ideal black body at the same temperature. Here the hemispherical total emissivity is used which considers full emission over all wavelengths, directions and polarization for a given particular temperature: ε(T)"
},
"temperature": {
"type": "number",
"description": "Temperature in Kelvin [K] at which the emissivity is measured"
},
"source": {
"type": "string",
"description": "Source of the emissivity data."
}
},
"required": [
"emissivityCoefficient",
"temperature",
"source"
]
},
"elasticityData": {
"type": "object",
"description": "Information about the elasticity of the material.",
Expand Down Expand Up @@ -148,6 +171,7 @@
},
"required": [
"surfaceRoughness",
"emissivityData",
"elasticityData",
"densityData",
"electromagneticPropertiesUri"
Expand All @@ -158,4 +182,4 @@
"metadata",
"materialProperties"
]
}
}

0 comments on commit 7cfa4ed

Please sign in to comment.