-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata
54 lines (54 loc) · 979 Bytes
/
data
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
{
"information": {
"summary": "This file contains a series of validation tables for a_pmv() in pythermalcomfort, jsthermalcomfort, calcaPMV() in R",
"version": "1.0.0",
"license": "MIT"
},
"tolerance": {
"pmv": 0.01
},
"data": [
{
"inputs": {
"tdb": 24,
"tr": 30,
"vr": 0.22,
"rh": 50,
"met": 1.4,
"clo": 0.5,
"a_coefficient": 0.293
},
"outputs": {
"a_pmv": 0.48
}
},
{
"inputs": {
"tdb": 30,
"tr": 30,
"vr": 0.22,
"rh": 50,
"met": 1.4,
"clo": 0.5,
"a_coefficient": 0.293
},
"outputs": {
"a_pmv": 1.09
}
},
{
"inputs": {
"tdb": [24, 30],
"tr": 30,
"vr": 0.22,
"rh": 50,
"met": 1.4,
"clo": 0.5,
"a_coefficient": 0.293
},
"outputs": {
"a_pmv": [0.48, 1.09]
}
}
]
}