forked from LudwigFriedmann/OpenMATERIAL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenMaterial_permeability_data.schema.json
54 lines (54 loc) · 2.24 KB
/
OpenMaterial_permeability_data.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Proposed OpenMaterial_permeability_data glTF extension",
"description": "Measured relative permeability at given temperature, humidity and incident angle.",
"type": "object",
"patternProperties": {
"data": {
"type": "array",
"description": "Measured relative permeability at specific temperature, humidity and incident angle.",
"items": {
"type": "object",
"description": "Array of permeability at given wavelength, specific temperature, humidity and incident angle.",
"properties": {
"temperature": {
"description": "Temperature [K] (T(°C) = T(K) - 273.15).",
"type": "number"
},
"humidity": {
"description": "Relative humidity [%].",
"type": "number"
},
"incident_angle": {
"description": "Incident angle of the measurement relative to the local normal vector at the material surface in [rad].",
"type": "number"
},
"permeability": {
"type": "array",
"items": {
"type": "array",
"description": "Pairs of wavelength and permeability.",
"items": [
{
"type": "number",
"description": "Wavelength [m]."
},
{
"type": "number",
"description": "Relative permeability [H/m]."
}
]
}
}
},
"required": [
"temperature",
"humidity",
"incident_angle",
"permeability"
]
}
},
"additionalProperties": false
}
}