Output hourly HDR for uncontrolled windows
I'd like to do glare analysis (evalglare) using HDR images generated in OS/Radiance. First step is to get the images generated. The below is the approach I'm proposing.
For each valid hour (I intend to eventually filter for the hours I care about):
somehow convert OS/Radiance's annual-sky.mtx
to a single hour, say, hour.sky
then:
oconv materials/materials.rad model.rad skies/hour.sky > octrees/images.oct
#glare_sensor.vth is a file specifying a fisheye view from the glare sensor
rpict -av .3 .3 .3 -ab 1 -vf glare_sensor.vth octrees/images.oct > temp.hdr
evalglare -vta -vv 180 -vh 180 temp.hdr
But, how do I go from annual-sky.mtx
to hour.sky
?
Comments