Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Sam Currie's profile - activity

2020-02-05 17:10:39 -0500 commented question After running my model, I am unable to view full results

Ok, are the light definitions applied to space types? You might also check the eplusout.err file in case there are any c

2020-02-05 17:00:33 -0500 commented question After running my model, I am unable to view full results

Based on the units, looks like a lighting issue - you might check your luminaire definitions (maybe a divide by zero sit

2020-02-05 12:48:46 -0500 commented question Importance of Soil Properties in EPW Files

@Aaron Boranian thanks for the additional links - I have not seen a post or documentation that explicitly states if the

2020-02-04 16:45:10 -0500 asked a question Importance of Soil Properties in EPW Files

Importance of Soil Properties in EPW Files When creating EPW files with historical files, are the soil properties in the

2020-01-29 16:41:02 -0500 received badge  Teacher (source)
2020-01-29 14:42:43 -0500 marked best answer Optical depths for the ASHRAE Clear Sky Model

I'm implementing the revised ASHRAE (Tau) clear sky model and am trying to find a source for the beam and diffuse optical depths described in the engineering reference: https://www.energyplus.net/sites/defa...

The depths appear to be based on the Beer-Lambert law but I can't find any documentation on how the diffuse and beam are calculated in the ASHRAE material. The goal is to produce the solar radiation estimates for use in a EPW file.

Question: Can someone provide documentation for calculating beam/diffuse optical depths? Or is it just better to use the Zhang-Huang model?

2020-01-29 14:41:54 -0500 edited answer Optical depths for the ASHRAE Clear Sky Model

The optical depth estimates in ASHRAE climatic data were calculated using a high performance clear sky radiation model c

2020-01-29 14:41:54 -0500 received badge  Editor (source)
2020-01-29 14:41:32 -0500 answered a question Optical depths for the ASHRAE Clear Sky Model

The optical depth estimages in ASHRAE climatic data were calculated using a high performance clear sky radiation model c

2020-01-29 13:41:20 -0500 commented question Optical depths for the ASHRAE Clear Sky Model

That's a good point @Julien Marrec - My copy of fundamentals 2009 mentions ASHRAE RP-1453...I'll try and track that down

2020-01-29 13:37:40 -0500 commented question Optical depths for the ASHRAE Clear Sky Model

That's a good point @Julien - My copy of fundamentals 2009 mentions ASHRAE RP-1453...I'll try and track that down and po

2020-01-29 13:32:44 -0500 commented question Optical depths for the ASHRAE Clear Sky Model

@Gio I'm trying to calculate the optical depths; I have the ASHRAE design conditions data

2020-01-28 15:19:24 -0500 answered a question External Longwave Radiation (Sky temperature)

Referring to the engineering reference for the sky temperature: https://www.energyplus.net/sites/default/files/docs/site

2020-01-28 14:54:03 -0500 asked a question Optical depths for the ASHRAE Clear Sky Model

Optical depths for the ASHRAE Clear Sky Model I'm implementing the revised ASHRAE (Tau) clear sky model and am trying to

2019-12-20 13:38:59 -0500 marked best answer Are typical/extreme periods from EPW used if a DDY file is provided?

I'm curious if its necessary to recalculate the typical/extreme periods for historical weather data if the model is using a DDY file? Are these dates used in the E+ sizing methods?

The periods I'm referring to are located in the header rows of an EPW file: TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,6/22,6/28,Summer - Week Nearest Average Temperature For Period,Typical,6/ 8,6/14,Winter - Week Nearest Min Temperature For Period,Extreme,1/27,2/ 2,Winter - Week Nearest Average Temperature For Period,Typical,1/ 6,1/12,Autumn - Week Nearest Average Temperature For Period,Typical,10/13,10/19,Spring - Week Nearest Average Temperature For Period,Typical,4/26,5/ 2

2019-12-20 13:01:10 -0500 commented answer Are typical/extreme periods from EPW used if a DDY file is provided?

I had a feeling that was the case; if you edit your answer to include that bit I will mark it as accepted, thanks!

2019-12-20 10:54:51 -0500 commented answer Are typical/extreme periods from EPW used if a DDY file is provided?

Thanks, I'm really just wondering about how the TYPICAL/EXTREME PERIODS header gets used within an EPW file and if it ev

2019-12-20 10:53:28 -0500 edited question Are typical/extreme periods from EPW used if a DDY file is provided?

Are typical/extreme periods from EPW used if a DDY file is provided? I'm curious if its necessary to recalculate the typ

2019-12-19 20:00:17 -0500 asked a question Are typical/extreme periods from EPW used if a DDY file is provided?

Are typical/extreme periods from EPW used if a DDY file is provided? I'm curious if its necessary to recalculate the typ

2016-06-09 17:40:54 -0500 asked a question Best Practices for Adding Occupant Loads to a Space in the OS API

Using OpenStudio's ruby API:

Suppose I have defined an activity level schedule, activitySchedule, and then created a PeopleDefinition object person and a People object: people = OpenStudio::Model::People.new(person) and assigned the activity schedule to people.

How do I add people to a space as a load?

Bonus question: Is it more appropriate to create a single PeopleDefinition object with the number of people set to 1 and share it with each space that has the same occupancy, adjusting the number of people with the space's setNumberOfPeople method

OR

Should I create unique PeopleDefinition objects for every single space?

2016-06-01 17:36:20 -0500 received badge  Scholar (source)
2016-06-01 16:26:03 -0500 commented answer Best method for creating a ScheduleRule

Thanks @macumber. How does one access the ScheduleDay that the rule constructs? In the method list for ScheduleRule I'm not seeing a straight forward way to do so; is it necessary to call children() and search for the ScheduleDay?

2016-05-31 17:17:36 -0500 received badge  Student (source)
2016-05-31 17:14:58 -0500 asked a question Best method for creating a ScheduleRule

When creating a schedule via ruby scripts, I create a new ScheduleRuleset object ruleset , then create a ScheduleDay object scheduleDay and finally create the associated ScheduleRule as:

rule = OpenStudio::Model::ScheduleRule.new(ruleset, scheduleDay)

This works just fine but (as indicated in the documentation) the ScheduleDay object is cloned and the new object is associated with the rule. Practically this is fine and the ruleset is created as expected but it leaves these orphaned ScheduleDay objects in the OSM.

My question is, is there a (non-hacky) way to create the ScheduleRules without polluting the OSM with a bunch of unused ScheduleDay objects? Or alternatively, if I create the rule without the ScheduleDay and a new ScheduleDay object is created, how do I access it?