Sha256: b16e0c2018bacf7d46fb3d2cfe3958d3e3f0c5a7b43ccbf09ce36bbb98d0e3e0

Contents?: true

Size: 686 Bytes

Versions: 5

Compression:

Stored size: 686 Bytes

Contents

class Standard
  # @!group ControllerWaterCoil

  # Sets the convergence tolerance to 0.0001 deltaC
  # for all hot water coils.
  #
  # @return [Bool] returns true if successful, false if not
  # @todo Figure out what the reason for this is,
  # because it seems like a workaround for an E+ bug
  # that was probably addressed long ago.
  def controller_water_coil_set_convergence_limits(controller_water_coil)
    controller_action = controller_water_coil.action
    if controller_action.is_initialized
      if controller_action.get == 'Normal'
        controller_water_coil.setControllerConvergenceTolerance(0.0001)
      end
    end

    return true
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
openstudio-standards-0.2.2 lib/openstudio-standards/prototypes/common/objects/Prototype.ControllerWaterCoil.rb
openstudio-standards-0.2.1 lib/openstudio-standards/prototypes/common/objects/Prototype.ControllerWaterCoil.rb
openstudio-standards-0.2.0 lib/openstudio-standards/prototypes/common/objects/Prototype.ControllerWaterCoil.rb
openstudio-standards-0.2.0.rc2 lib/openstudio-standards/prototypes/common/objects/Prototype.ControllerWaterCoil.rb
openstudio-standards-0.2.0.rc1 lib/openstudio-standards/prototypes/common/objects/Prototype.ControllerWaterCoil.rb