Sha256: 63385a343f6e6955780dd5b9ef9a62c988098fe827486627f5e04747b80a6cd2
Contents?: true
Size: 775 Bytes
Versions: 12
Compression:
Stored size: 775 Bytes
Contents
class Standard # @!group ControllerWaterCoil # Sets the convergence tolerance to 0.0001 deltaC for all hot water coils. # # @param controller_water_coil [OpenStudio::Model::ControllerWaterCoil] controller water coil object # @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
12 entries across 12 versions & 1 rubygems