First time here? Check out the Help page!
1 | initial version |
So there's a way to turn off the measure, but it's not necesarilly user friendly...
In your installation folder, locate "OpenStudio 1.10.1\share\openstudio-1.10.1\pat\Measures\StandardReports\measure.rb"
On windows it's: "C:\Program Files\OpenStudio 1.10.1\share\openstudio-1.10.1\pat\Measures\StandardReports\measure.rb"
On line 96, switch arg.setDefaultValue(true)
to arg.setDefaultValue(false)
. The measure will still run, but there won't be any reporting done which is going to be faster. It also doesn't seem to require hourly report of zone temperature and RH which is a huge gain in my case.
2 | No.2 Revision |
So there's a way to turn off the measure, but it's not necesarilly user friendly...
In your installation folder, locate "OpenStudio 1.10.1\share\openstudio-1.10.1\pat\Measures\StandardReports\measure.rb" share\openstudio-1.10.1\pat\Measures\StandardReports\measure.rb
On windows it's: "C:\Program C:\Program
Files\OpenStudio 1.10.1\share\openstudio-1.10.1\pat\Measures\StandardReports\measure.rb"1.10.1\share\openstudio-1.10.1\pat\Measures\StandardReports\measure.rb
Note that this file is called for both the PAT and the OSApp so it'll affect both.
On line 96, switch arg.setDefaultValue(true)
to arg.setDefaultValue(false)
. The measure will still run, but there won't be any reporting done which is going to be faster. It also doesn't seem to require hourly report of zone temperature and RH which is a huge gain in my case.