Sha256: 67e793c248c56840de3aa184b7f3d10b2810dd7ef02c8cdf17333b9d680d625f
Contents?: true
Size: 692 Bytes
Versions: 32
Compression:
Stored size: 692 Bytes
Contents
# start the measure class IncreaseInsulationRValueForRoofs < OpenStudio::Ruleset::ModelUserScript # define the name that a user will see def name 'Increase R-value of Insulation for Roofs to a Specific Value' end # define the arguments that the user will input def arguments(_model) args = OpenStudio::Ruleset::OSArgumentVector.new end # end the arguments method # define what happens when the measure is run def run(model, runner, user_arguments) super(model, runner, user_arguments) true end # end the run method end # end the measure # this allows the measure to be used by the application IncreaseInsulationRValueForRoofs.new.registerWithApplication
Version data entries
32 entries across 32 versions & 1 rubygems