Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

67 emissivity #86

Merged
merged 11 commits into from
Sep 24, 2024
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"
]
}
}