Skip to content

Commit

Permalink
fix(deps): Update dependency and add outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp committed Nov 6, 2024
1 parent d49402c commit aeb25d7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions pollination/breeam_daylight_4b/entry.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pollination_dsl.dag import Inputs, DAG, task, Outputs
from dataclasses import dataclass
from pollination.two_phase_daylight_coefficient import TwoPhaseDaylightCoefficientEntryPoint
from pollination.honeybee_radiance_postprocess.breeam import Breeam4b
from pollination.lbt_honeybee.postprocess import Breeam4b

# input/output alias
from pollination.alias.inputs.model import hbjson_model_grid_input
Expand Down Expand Up @@ -88,7 +88,7 @@ def run_two_phase_daylight_coefficient(
template=Breeam4b,
needs=[run_two_phase_daylight_coefficient]
)
def leed_daylight_option_one(
def breem_daylight_4b(
self, folder='results', model=model
):
return [
Expand All @@ -106,3 +106,13 @@ def leed_daylight_option_one(
breeam_summary = Outputs.folder(
source='breeam_summary', description='BREEAM summary folder.'
)

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

program_summary = Outputs.file(
description='JSON file with a summary of each program type.',
source='breeam_summary/program_summary.json',
)
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pollination-two-phase-daylight-coefficient==1.1.35
pollination-honeybee-radiance-postprocess==0.0.72
pollination-lbt-honeybee==0.1.17

0 comments on commit aeb25d7

Please sign in to comment.