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

rhorsey's profile - activity

2017-06-14 12:14:22 -0500 commented question OpenStudio LSAT Setup with U Drive

What repository are you trying to run it in? The OpenStudio Analysis Spreadsheet repo? Also, are you using the LTS versi

2017-06-14 11:40:07 -0500 commented question OpenStudio LSAT Setup with U Drive

Can you specify which commands you're running specifically, and which version of the principle repo you're using?

2015-09-21 11:23:49 -0500 received badge  Supporter (source)
2015-09-21 11:21:16 -0500 received badge  Teacher (source)
2015-09-21 11:17:10 -0500 answered a question How to Share Data Between Measures in OpenStudio

The server has implemented an Extended Runner class which automates the process of persisting measures and their argument values across a datapoint. The class is implemented here. The following command inside the run method of a measure returns a hash of previous measures and their arguments:

runner.former_workflow_arguments

An example of this hash, saved as a json, is as follows:

{ "set_dr_weather_file":{"weather_directory_name":"weather","weather_file_name":"USA_CO_Denver.Intl.AP.725650_TMY3.epw"}, "idf_reference_building_selector":{"building_type":"Stand-aloneRetailNew2004"}, "set_timestep":{"timestep":"60"}, "hardsize_dx_coil":{"cfm_per_ton":"370","square_foot_per_ton":"350"} }

This functionality is currently in the EnergyPlus-8.3.0 branch of the Workflow Gem, and has not yet been released on rubygems. To use it ensure your Gemfile has the following line in it:

gem "openstudio-workflow", :github => "NREL/OpenStudio-workflow-gem", :branch => 'EnergyPlus-8.3.0'

Finally, run bundle update and bundle install from the command line to set your openstudio-workflow gem to the E+ 8.3.0 branch of github.