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 @@
"surface_height_rms": 0.8,
"surface_correlation_length": 1.0
},
"emissivity_data": {
"emissivity": 0.07,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"emissivity": 0.07,
"emissivity_coefficient": 0.07,

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was discussed in the material group, that emissivity_coefficient would be a bit more accurate.

"temperature": 300.0,
"source": "internet: https://www.engineeringtoolbox.com/emissivity-coefficients-d_447.html"
},
"elasticity_data": {
"youngs_modulus": 70e9,
"poissons_ratio": 0.35,
Expand Down
25 changes: 24 additions & 1 deletion schemas/material_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,29 @@
"surface_correlation_length"
]
},
"emissivity_data": {
"type": "object",
"description": "Emissivity data of the material",
"properties": {
"emissivity": {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"emissivity": {
"emissivity_coefficient": {

"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": [
"emissivity",
"temperature",
"source"
]
},
"elasticity_data": {
"type": "object",
"description": "Information about the elasticity of the material.",
Expand Down Expand Up @@ -141,4 +164,4 @@
"metadata",
"materials_properties"
]
}
}
Loading