-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIDDMaterial.txt
More file actions
715 lines (708 loc) · 20.8 KB
/
IDDMaterial.txt
File metadata and controls
715 lines (708 loc) · 20.8 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
Material,
\memo Regular materials described with full set of thermal properties
\min-fields 6
A1 , \field Name
\required-field
\type alpha
\reference MaterialName
A2 , \field Roughness
\required-field
\type choice
\key VeryRough
\key Rough
\key MediumRough
\key MediumSmooth
\key Smooth
\key VerySmooth
N1 , \field Thickness
\required-field
\units m
\type real
\minimum> 0
\ip-units in
N2 , \field Conductivity
\required-field
\units W/m-K
\type real
\minimum> 0
N3 , \field Density
\required-field
\units kg/m3
\type real
\minimum> 0
N4 , \field Specific Heat
\required-field
\units J/kg-K
\type real
\minimum 100
N5 , \field Thermal Absorptance
\type real
\minimum> 0
\default .9
\maximum 0.99999
N6 , \field Solar Absorptance
\type real
\default .7
\minimum 0
\maximum 1
N7 ; \field Visible Absorptance
\type real
\minimum 0
\default .7
\maximum 1
Material:NoMass,
\memo Regular materials properties described whose principal description is R (Thermal Resistance)
\min-fields 3
A1 , \field Name
\required-field
\type alpha
\reference MaterialName
A2 , \field Roughness
\required-field
\type choice
\key VeryRough
\key Rough
\key MediumRough
\key MediumSmooth
\key Smooth
\key VerySmooth
N1 , \field Thermal Resistance
\required-field
\units m2-K/W
\type real
\minimum .001
N2 , \field Thermal Absorptance
\type real
\minimum> 0
\default .9
\maximum 0.99999
N3 , \field Solar Absorptance
\type real
\minimum 0
\default .7
\maximum 1
N4 ; \field Visible Absorptance
\type real
\minimum 0
\default .7
\maximum 1
Material:InfraredTransparent,
\memo Special infrared transparent material. Similar to a Material:Nomass with low thermal resistance.
\memo High absorptance in both wavelengths.
\memo Area will be doubled internally to make internal radiant exchange accurate.
\memo Should be only material in single layer surface construction.
\memo All thermal properties are set internally. User needs only to supply name.
\memo Cannot be used with ConductionFiniteDifference solution algorithms
\min-fields 1
A1 ; \field Name
\required-field
\type alpha
\reference MaterialName
Material:AirGap,
\min-fields 2
\memo Air Space in Opaque Construction
A1 , \field Name
\required-field
\type alpha
\reference MaterialName
N1 ; \field Thermal Resistance
\required-field
\units m2-K/W
\type real
\minimum> 0
Material:RoofVegetation,
\memo EcoRoof model, plant layer plus soil layer
\memo Implemented by Portland State University
\memo (Sailor et al., January, 2007)
\memo only one material must be referenced per simulation though the same EcoRoof material could be
\memo used in multiple constructions. New moisture redistribution scheme (2010) requires higher
\memo number of timesteps per hour (minimum 12 recommended).
\min-fields 19
A1 ,\field Name
\required-field
\type alpha
\reference MaterialName
N1 ,\field Height of Plants
\type real
\note The ecoroof module is designed for short plants and shrubs.
\minimum> 0.005
\maximum 1.0
\units m
\default .2
N2 ,\field Leaf Area Index
\units dimensionless
\note Entire surface is assumed covered, so decrease LAI accordingly.
\minimum> 0.001
\maximum 5.0
\default 1.0
\type real
N3 ,\field Leaf Reflectivity
\type real
\units dimensionless
\note Leaf reflectivity (albedo) is typically 0.18-0.25
\maximum 0.5
\minimum 0.05
\default 0.22
N4 ,\field Leaf Emissivity
\type real
\minimum 0.8
\maximum 1.0
\default 0.95
N5 ,\field Minimum Stomatal Resistance
\units s/m
\default 180.0
\note This depends upon plant type
\minimum 50.0
\maximum 300.
\type real
A2 ,\field Soil Layer Name
\type alpha
\default Green Roof Soil
A3 ,\field Roughness
\type choice
\key VeryRough
\key MediumRough
\key Rough
\key Smooth
\key MediumSmooth
\key VerySmooth
\default MediumRough
N6 ,\field Thickness
\note thickness of the soil layer of the EcoRoof
\units m
\type real
\note Soil depths of 0.15m (6in) and 0.30m (12in) are common.
\default 0.1
\minimum> 0.05
\maximum 0.7
\ip-units in
N7 ,\field Conductivity of Dry Soil
\units W/m-K
\type real
\note Thermal conductivity of dry soil.
\note Typical ecoroof soils range from 0.3 to 0.5
\default 0.35
\minimum 0.2
\maximum 1.5
N8 ,\field Density of Dry Soil
\units kg/m3
\note Density of dry soil (the code modifies this as the soil becomes moist)
\note Typical ecoroof soils range from 400 to 1000 (dry to wet)
\type real
\minimum 300
\maximum 2000
\default 1100
N9 ,\field Specific Heat of Dry Soil
\units J/kg-K
\type real
\note Specific heat of dry soil
\minimum> 500
\maximum 2000
\default 1200
N10,\field Thermal Absorptance
\type real
\note Soil emissivity is typically in range of 0.90 to 0.98
\minimum> 0.8
\default .9
\maximum 1.0
N11,\field Solar Absorptance
\type real
\note Solar absorptance of dry soil (1-albedo) is typically 0.60 to 0.85
\note corresponding to a dry albedo of 0.15 to 0.40
\default .70
\minimum 0.40
\maximum 0.9
N12,\field Visible Absorptance
\type real
\minimum> 0.5
\default .75
\maximum 1.0
N13,\field Saturation Volumetric Moisture Content of the Soil Layer
\type real
\note Maximum moisture content is typically less than 0.5
\minimum> 0.1
\maximum 0.5
\default 0.3
N14,\field Residual Volumetric Moisture Content of the Soil Layer
\type real
\minimum 0.01
\maximum 0.1
\default 0.01
N15,\field Initial Volumetric Moisture Content of the Soil Layer
\type real
\minimum> 0.05
\maximum 0.5
\default 0.1
A4; \field Moisture Diffusion Calculation Method
\note Advanced calculation requires increased number of timesteps (recommended >20).
\type choice
\key Simple
\key Advanced
\default Advanced
WindowMaterial:SimpleGlazingSystem,
\min-fields 3
\memo Alternate method of describing windows
\memo This window material object is used to define an entire glazing system
\memo using simple performance parameters.
A1 , \field Name
\required-field
\type alpha
\reference MaterialName
\reference GlazingMaterialName
N1 , \field U-Factor
\required-field
\note Enter U-Factor including film coefficients
\units W/m2-K
\minimum> 0
N2 , \field Solar Heat Gain Coefficient
\required-field
\note SHGC at Normal Incidence
\minimum> 0
\maximum< 1
N3 ; \field Visible Transmittance
\note VT at Normal Incidence
\note optional
\minimum> 0
\maximum< 1
WindowMaterial:Glazing,
\min-fields 14
\memo Glass material properties for Windows or Glass Doors
\memo Transmittance/Reflectance input method.
A1 , \field Name
\required-field
\type alpha
\reference MaterialName
\reference GlazingMaterialName
\reference CFSGlazingName
A2 , \field Optical Data Type
\required-field
\type choice
\key SpectralAverage
\key Spectral
\key BSDF
\key SpectralAndAngle
A3 , \field Window Glass Spectral Data Set Name
\note Used only when Optical Data Type = Spectral
\type object-list
\object-list SpectralDataSets
N1 , \field Thickness
\required-field
\units m
\type real
\minimum> 0.0
\ip-units in
N2 , \field Solar Transmittance at Normal Incidence
\note Used only when Optical Data Type = SpectralAverage
\type real
\minimum 0.0
\maximum 1.0
N3 , \field Front Side Solar Reflectance at Normal Incidence
\note Used only when Optical Data Type = SpectralAverage
\note Front Side is side closest to outdoor air
\type real
\minimum 0.0
\maximum 1.0
N4 , \field Back Side Solar Reflectance at Normal Incidence
\note Used only when Optical Data Type = SpectralAverage
\note Back Side is side closest to zone air
\type real
\minimum 0.0
\maximum 1.0
N5 , \field Visible Transmittance at Normal Incidence
\note Used only when Optical Data Type = SpectralAverage
\type real
\minimum 0.0
\maximum 1.0
N6 , \field Front Side Visible Reflectance at Normal Incidence
\note Used only when Optical Data Type = SpectralAverage
\type real
\minimum 0.0
\maximum 1.0
N7 , \field Back Side Visible Reflectance at Normal Incidence
\note Used only when Optical Data Type = SpectralAverage
\type real
\minimum 0.0
\maximum 1.0
N8 , \field Infrared Transmittance at Normal Incidence
\type real
\minimum 0.0
\maximum 1.0
\default 0.0
N9 , \field Front Side Infrared Hemispherical Emissivity
\type real
\minimum> 0.0
\maximum< 1.0
\default 0.84
N10, \field Back Side Infrared Hemispherical Emissivity
\type real
\minimum> 0.0
\maximum< 1.0
\default 0.84
N11, \field Conductivity
\units W/m-K
\type real
\minimum> 0.0
\default 0.9
N12, \field Dirt Correction Factor for Solar and Visible Transmittance
\type real
\minimum> 0.0
\maximum 1.0
\default 1.0
A4, \field Solar Diffusing
\type choice
\key No
\key Yes
\default No
N13, \field Young's modulus
\note coefficient used for deflection calculations. Used only with complex
\note fenestration when deflection model is set to TemperatureAndPressureInput
\units Pa
\type real
\minimum> 0.0
\default 7.2e10
N14, \field Poisson's ratio
\note coefficient used for deflection calculations. Used only with complex
\note fenestration when deflection model is set to TemperatureAndPressureInput
\type real
\minimum> 0.0
\maximum< 1.0
\default 0.22
A5 , \field Window Glass Spectral and Incident Angle Transmittance Data Set Table Name
\note Used only when Optical Data Type = SpectralAndAngle
\type object-list
\object-list BivariateFunctions
A6 , \field Window Glass Spectral and Incident Angle Front Reflectance Data Set Table Name
\note Used only when Optical Data Type = SpectralAndAngle
\type object-list
\object-list BivariateFunctions
A7 ; \field Window Glass Spectral and Incident Angle Back Reflectance Data Set Table Name
\note Used only when Optical Data Type = SpectralAndAngle
\type object-list
\object-list BivariateFunctions
WindowMaterial:GlazingGroup:Thermochromic,
\min-fields 3
\extensible:2 - repeat last two fields remembering to remove ; from "inner" fields.
\memo thermochromic glass at different temperatures
A1 , \field Name
\required-field
\type alpha
\reference MaterialName
\reference GlazingMaterialName
N1 , \field Optical Data Temperature 1
\begin-extensible
\required-field
\units C
\ip-units F
\type real
A2 , \field Window Material Glazing Name 1
\required-field
\type object-list
\object-list GlazingMaterialName
N2 , \field Optical Data Temperature 2
\units C
\ip-units F
\type real
A3 , \field Window Material Glazing Name 2
\type object-list
\object-list GlazingMaterialName
N3 , \field Optical Data Temperature 3
\units C
\ip-units F
\type real
A4 , \field Window Material Glazing Name 3
\type object-list
\object-list GlazingMaterialName
N4 , \field Optical Data Temperature 4
\units C
\ip-units F
\type real
A5 , \field Window Material Glazing Name 4
\type object-list
\object-list GlazingMaterialName
N5 , \field Optical Data Temperature 5
\units C
\ip-units F
\type real
A6 , \field Window Material Glazing Name 5
\type object-list
\object-list GlazingMaterialName
N6 , \field Optical Data Temperature 6
\units C
\ip-units F
\type real
A7 , \field Window Material Glazing Name 6
\type object-list
\object-list GlazingMaterialName
N7 , \field Optical Data Temperature 7
\units C
\ip-units F
\type real
A8 , \field Window Material Glazing Name 7
\type object-list
\object-list GlazingMaterialName
N8 , \field Optical Data Temperature 8
\units C
\ip-units F
\type real
A9 , \field Window Material Glazing Name 8
\type object-list
\object-list GlazingMaterialName
N9 , \field Optical Data Temperature 9
\units C
\ip-units F
\type real
A10, \field Window Material Glazing Name 9
\type object-list
\object-list GlazingMaterialName
N10, \field Optical Data Temperature 10
\units C
\ip-units F
\type real
A11, \field Window Material Glazing Name 10
\type object-list
\object-list GlazingMaterialName
N11, \field Optical Data Temperature 11
\units C
\ip-units F
\type real
A12, \field Window Material Glazing Name 11
\type object-list
\object-list GlazingMaterialName
N12, \field Optical Data Temperature 12
\units C
\ip-units F
\type real
A13, \field Window Material Glazing Name 12
\type object-list
\object-list GlazingMaterialName
N13, \field Optical Data Temperature 13
\units C
\ip-units F
\type real
A14, \field Window Material Glazing Name 13
\type object-list
\object-list GlazingMaterialName
N14, \field Optical Data Temperature 14
\units C
\ip-units F
\type real
A15, \field Window Material Glazing Name 14
\type object-list
\object-list GlazingMaterialName
N15, \field Optical Data Temperature 15
\units C
\ip-units F
\type real
A16, \field Window Material Glazing Name 15
\type object-list
\object-list GlazingMaterialName
N16, \field Optical Data Temperature 16
\units C
\ip-units F
\type real
A17, \field Window Material Glazing Name 16
\type object-list
\object-list GlazingMaterialName
N17, \field Optical Data Temperature 17
\units C
\ip-units F
\type real
A18, \field Window Material Glazing Name 17
\type object-list
\object-list GlazingMaterialName
N18, \field Optical Data Temperature 18
\units C
\ip-units F
\type real
A19, \field Window Material Glazing Name 18
\type object-list
\object-list GlazingMaterialName
N19, \field Optical Data Temperature 19
\units C
\ip-units F
\type real
A20, \field Window Material Glazing Name 19
\type object-list
\object-list GlazingMaterialName
N20, \field Optical Data Temperature 20
\units C
\ip-units F
\type real
A21, \field Window Material Glazing Name 20
\type object-list
\object-list GlazingMaterialName
N21, \field Optical Data Temperature 21
\units C
\ip-units F
\type real
A22, \field Window Material Glazing Name 21
\type object-list
\object-list GlazingMaterialName
N22, \field Optical Data Temperature 22
\units C
\ip-units F
\type real
A23, \field Window Material Glazing Name 22
\type object-list
\object-list GlazingMaterialName
N23, \field Optical Data Temperature 23
\units C
\ip-units F
\type real
A24, \field Window Material Glazing Name 23
\type object-list
\object-list GlazingMaterialName
N24, \field Optical Data Temperature 24
\units C
\ip-units F
\type real
A25, \field Window Material Glazing Name 24
\type object-list
\object-list GlazingMaterialName
N25, \field Optical Data Temperature 25
\units C
\ip-units F
\type real
A26, \field Window Material Glazing Name 25
\type object-list
\object-list GlazingMaterialName
N26, \field Optical Data Temperature 26
\units C
\ip-units F
\type real
A27, \field Window Material Glazing Name 26
\type object-list
\object-list GlazingMaterialName
N27, \field Optical Data Temperature 27
\units C
\ip-units F
\type real
A28, \field Window Material Glazing Name 27
\type object-list
\object-list GlazingMaterialName
N28, \field Optical Data Temperature 28
\units C
\ip-units F
\type real
A29, \field Window Material Glazing Name 28
\type object-list
\object-list GlazingMaterialName
N29, \field Optical Data Temperature 29
\units C
\ip-units F
\type real
A30, \field Window Material Glazing Name 29
\type object-list
\object-list GlazingMaterialName
N30, \field Optical Data Temperature 30
\units C
\ip-units F
\type real
A31, \field Window Material Glazing Name 30
\type object-list
\object-list GlazingMaterialName
N31, \field Optical Data Temperature 31
\units C
\ip-units F
\type real
A32, \field Window Material Glazing Name 31
\type object-list
\object-list GlazingMaterialName
N32, \field Optical Data Temperature 32
\units C
\ip-units F
\type real
A33, \field Window Material Glazing Name 32
\type object-list
\object-list GlazingMaterialName
N33, \field Optical Data Temperature 33
\units C
\ip-units F
\type real
A34, \field Window Material Glazing Name 33
\type object-list
\object-list GlazingMaterialName
N34, \field Optical Data Temperature 34
\units C
\ip-units F
\type real
A35, \field Window Material Glazing Name 34
\type object-list
\object-list GlazingMaterialName
N35, \field Optical Data Temperature 35
\units C
\ip-units F
\type real
A36, \field Window Material Glazing Name 35
\type object-list
\object-list GlazingMaterialName
N36, \field Optical Data Temperature 36
\units C
\ip-units F
\type real
A37, \field Window Material Glazing Name 36
\type object-list
\object-list GlazingMaterialName
N37, \field Optical Data Temperature 37
\units C
\ip-units F
\type real
A38, \field Window Material Glazing Name 37
\type object-list
\object-list GlazingMaterialName
N38, \field Optical Data Temperature 38
\units C
\ip-units F
\type real
A39, \field Window Material Glazing Name 38
\type object-list
\object-list GlazingMaterialName
N39, \field Optical Data Temperature 39
\units C
\ip-units F
\type real
A40, \field Window Material Glazing Name 39
\type object-list
\object-list GlazingMaterialName
N40, \field Optical Data Temperature 40
\units C
\ip-units F
\type real
A41, \field Window Material Glazing Name 40
\type object-list
\object-list GlazingMaterialName
N41, \field Optical Data Temperature 41
\units C
\ip-units F
\type real
A42, \field Window Material Glazing Name 41
\type object-list
\object-list GlazingMaterialName
N42, \field Optical Data Temperature 42
\units C
\ip-units F
\type real
A43, \field Window Material Glazing Name 42
\type object-list
\object-list GlazingMaterialName
N43, \field Optical Data Temperature 43
\units C
\ip-units F
\type real
A44, \field Window Material Glazing Name 43
\type object-list
\object-list GlazingMaterialName
N44, \field Optical Data Temperature 44
\units C
\ip-units F
\type real
A45, \field Window Material Glazing Name 44
\type object-list
\object-list GlazingMaterialName
N45, \field Optical Data Temperature 45
\units C
\ip-units F
\type real
A46; \field Window Material Glazing Name 45
\type object-list
\object-list GlazingMaterialName