Skip to content

BR 209 post processing for CDBM approach  #71

Open
@charliebrookerBH

Description

@charliebrookerBH

Description:

Method to post process results from an annual daylight simulation to give result against BR 209 criteria.

Input should be the results folder from an LBT annual daylight simulation.

Variables to consider is the room type

image

image

Here's an example of how I'm handling a single room atm

ldk_results = []
for ill in ldk_ills:
    print(ill)
    df = load_ill_file(ill_file=ill)
    df = df.T
    median_per_timestep = df.median()
    median_result = median_per_timestep>200
    annual_result = median_result.sum()
    annual_fraction = annual_result/4380
    annual_pct = annual_fraction*100
    ldk_results.append(annual_pct)
ldk_results

Metadata

Metadata

Labels

good first issueGood for newcomersseverity:mediumSlows progress, but workaround is possiblesize:MMeasured in hourstype:featureNew capability or enhancement

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions