Dear forum,
is it possible to use pyWinCalc to create “glass” or “glass” with “BRTDfunc” material in Radiance either directly or by using/converting some of the result outputs?
Thank you
Dear forum,
is it possible to use pyWinCalc to create “glass” or “glass” with “BRTDfunc” material in Radiance either directly or by using/converting some of the result outputs?
Thank you
You can use frads
for this, which uses pywincalc on the back end:
import frads as fr
layer1_fpath = "igsdb_product_364.json"
layer2_fpath = "igsdb_product_7406.json"
gs = fr.create_glazing_system(
name="system1",
layers=[layer1_fpath, layer2_fpath],
)
# output brtdfunc if no shading
gs.get_brtdfunc()
# save to xml
gs.to_xml("out.xml")
See here for more details.
Thank you so much Taoning, I really appreciate it!
Please pardon my ignorance but I have 2 follow-up questions.
Thank you!
All the glazing data can be found at igsdb.lbl.gov
xml is useful when you want to run three phase methods. Phase method tutorial can be found here. To run it in frads you can find it here.
Thanks.
Btw, I tried to go to igsdb.lbl.gov but it won’t let me sign up. It says that sign up is closed.
Thank you very much!!!