Sha256: 736dc0e31f63d7b9ede2410fdcd4fee97e3a77373cfb00640118a1efad5f268b
Contents?: true
Size: 680 Bytes
Versions: 24
Compression:
Stored size: 680 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
24 entries across 24 versions & 1 rubygems