Skip to content

Commit

Permalink
fix(desginday): Output Date instead of AnalysisPeriod
Browse files Browse the repository at this point in the history
In accordance with recent changes in the DesignDay object.
  • Loading branch information
chriswmackey authored and Chris Mackey committed Jan 17, 2020
1 parent 11c471d commit 0ee7a94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugin/grasshopper/src/LadybugPlus_Deconstruct Design Day.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
day_type: Text indicating the type of design day (ie. 'SummerDesignDay',
'WinterDesignDay' or other EnergyPlus days).
location: A Ladybug Location object describing the location of the design day.
analysis_period: Analysis period for the design day
date: Date for the day of the year the design day
dry_bulb_max: Maximum dry bulb temperature over the design day (in C).
dry_bulb_range: Dry bulb range over the design day (in C).
humidity_type: Type of humidity to use. (ie. Wetbulb, Dewpoint, HumidityRatio, Enthalpy)
Expand All @@ -35,7 +35,7 @@

ghenv.Component.Name = "LadybugPlus_Deconstruct Design Day"
ghenv.Component.NickName = 'decnstrDesignDay'
ghenv.Component.Message = 'VER 0.0.04\nJAN_06_2020'
ghenv.Component.Message = 'VER 0.0.04\nJAN_17_2020'
ghenv.Component.Category = "LadybugPlus"
ghenv.Component.SubCategory = '00 :: Ladybug'
ghenv.Component.AdditionalHelpFromDocStrings = "5"
Expand All @@ -56,7 +56,7 @@
name = _design_day.name
day_type = _design_day.day_type
location = _design_day.location
analysis_period = _design_day.analysis_period
date = _design_day.sky_condition.date
dry_bulb_max = _design_day.dry_bulb_condition.dry_bulb_max
dry_bulb_range = _design_day.dry_bulb_condition.dry_bulb_range
humidity_type = _design_day.humidity_condition.humidity_type
Expand Down
Binary file not shown.

0 comments on commit 0ee7a94

Please sign in to comment.