Skip to content

Commit

Permalink
fix(entry): bump dependency and add output for L01 and L06
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp committed Nov 13, 2024
1 parent c561248 commit 63ce510
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
25 changes: 19 additions & 6 deletions pollination/well_daylight/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,12 @@ def well_annual_daylight(
):
return [
{
'from': WellAnnualDaylight()._outputs.well_summary,
'to': 'well_summary'
'from': WellAnnualDaylight()._outputs.l01_well_summary,
'to': 'l01_well_summary'
},
{
'from': WellAnnualDaylight()._outputs.l06_well_summary,
'to': 'l06_well_summary'
}
]

Expand All @@ -103,11 +107,20 @@ def well_annual_daylight(
'contain illuminance matrices for each sensor at each timestep of the analysis.'
)

well_folder = Outputs.folder(
source='well_summary', description='WELL summary folder.'
l01_well_folder = Outputs.folder(
source='l01_well_summary', description='WELL summary folder.'
)

l01_summary = Outputs.file(
description='JSON file containing the number of credits achieved.',
source='l01_well_summary/summary.json',
)

l06_well_folder = Outputs.folder(
source='l06_well_summary', description='WELL summary folder.'
)

summary = Outputs.file(
l06_summary = Outputs.file(
description='JSON file containing the number of credits achieved.',
source='well_summary/summary.json',
source='l06_well_summary/summary.json',
)
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pollination-two-phase-daylight-coefficient==1.1.37
pollination-two-phase-daylight-coefficient==1.1.38

0 comments on commit 63ce510

Please sign in to comment.