Method: AedgK12ElectricEquipment#arguments
- Defined in:
- lib/measures/AedgK12ElectricEquipment/measure.rb
#arguments(model) ⇒ Object
define the arguments that the user will input
33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/measures/AedgK12ElectricEquipment/measure.rb', line 33 def arguments(model) args = OpenStudio::Measure::OSArgumentVector.new # make an argument for material and installation cost material_cost_ip = OpenStudio::Measure::OSArgument.makeDoubleArgument('material_cost_ip', true) material_cost_ip.setDisplayName('Material and Installation Costs for Electric Equipment per Floor Area ($/ft^2).') material_cost_ip.setDefaultValue(0.0) args << material_cost_ip return args end |