LB Analysis Period with leap year

Hi all,

I intend to run LB Incident Radiation using LB Analysis Period for a leap year, for instance 2020. I have modified component in the LB Analysis Period by adding a commond “leap_year=True” according to previous post. Sunpath for leap years - #2 by mostapha. However, I’m facing a error “1. Solution exception:init() got an unexpected keyword argument ‘leap_year_’”. Any idea to solve this issue? Thank you.
Analysis period for leap year.gh (41.9 KB)

Hi @Thum,

Looking at the sdk the naming should be is_leap_year=False

class ladybug.analysisperiod.AnalysisPeriod(st_month=1, st_day=1, st_hour=0, end_month=12, end_day=31, end_hour=23, timestep=1, is_leap_year=False)

https://www.ladybug.tools/ladybug/docs/ladybug.analysisperiod.html

Cheers,
Charlie

1 Like

Hi @charlie.brooker,

Thank you very much for your insight. The “is” is missing in my script. Now, the LB Analysis Period component for a leap year is working. :slight_smile:

Regards,
Thum

Analysis period for leap year_revised.gh (42.6 KB)

1 Like