Example #1
0
 def parse_sun_up_hours(self, sun_modifiers=generate_sunpath._outputs.sun_modifiers):
     return [
         {
             'from': ParseSunUpHours()._outputs.sun_up_hours,
             'to': 'results/total/sun-up-hours.txt'
         }
     ]
Example #2
0
 def parse_sun_up_hours(self, sun_modifiers=generate_sunpath._outputs.sun_modifiers):
     return [
         {
             'from': ParseSunUpHours()._outputs.sun_up_hours,
             'to': 'radiance/shortwave/sun-up-hours.txt'
         }
     ]
 def parse_sun_up_hours(
         self,
         sun_modifiers=generate_sunpath._outputs.sun_modifiers,
         leap_year=leap_year,
         timestep=timestep):
     return [{
         'from': ParseSunUpHours()._outputs.sun_up_hours,
         'to': 'results/sun-up-hours.txt'
     }]
Example #4
0
def test_parse_sun_up_hours():
    function = ParseSunUpHours().queenbee
    assert function.name == 'parse-sun-up-hours'
    assert isinstance(function, Function)