03-07-2011, 07:07 AM
I understand what you mean now
You should program the Zone ON Response as follows
If Timer Timer01 = 0 and Timer02=0 Then
Do WaterPumpOn
Do WaterPumpOff After 1800 Seconds Using Timer01
End If
The Zone Off Response should be
If Timer Timer01 = 0 Then
Do NullResponse After 30 Seconds Using Timer02
End If
This zone ON Response switches on the water pump and starts a timer for 30 minutes to switch off the timer. There is an IF Timer01=0 AND Timer02=0 condition so that if the 30 minutes timer is running, it will do nothing. Hence the water pump is switched on when water sensor first senses flow and it swicthes off after 30 minutes. During the 30 minutes, the pump timer will not be reactivated
The Zone OFF Response starts a timer Timer02 for 30 seconds IF Timer 01 is not running. This 30 seconds timer prevents the Pump from starting again if the flow sensor senses water for 30 seconds after the flow ha stopped just in case the flow is intermittent after the pump has turned off
The Zone ON and Off responses are only triggered when there is a CHANGE in state, from OFF to ON or ON to OFF respectively. That means that if the water is continuously flowing the zone ON response only activates ONCE and not repeatedly, until the zone goes OFF. Similarly thee zone OFF Response occurs when the zone first goes OFF and will not activate until the zone is back ON.
I have created the program and exported it as a Scenario attached
Import the scenario and see if that will work for you, see the tutorial on Scenarios at http://www.comfortforums.com/forum92/2185.html
You should program the Zone ON Response as follows
If Timer Timer01 = 0 and Timer02=0 Then
Do WaterPumpOn
Do WaterPumpOff After 1800 Seconds Using Timer01
End If
The Zone Off Response should be
If Timer Timer01 = 0 Then
Do NullResponse After 30 Seconds Using Timer02
End If
This zone ON Response switches on the water pump and starts a timer for 30 minutes to switch off the timer. There is an IF Timer01=0 AND Timer02=0 condition so that if the 30 minutes timer is running, it will do nothing. Hence the water pump is switched on when water sensor first senses flow and it swicthes off after 30 minutes. During the 30 minutes, the pump timer will not be reactivated
The Zone OFF Response starts a timer Timer02 for 30 seconds IF Timer 01 is not running. This 30 seconds timer prevents the Pump from starting again if the flow sensor senses water for 30 seconds after the flow ha stopped just in case the flow is intermittent after the pump has turned off
The Zone ON and Off responses are only triggered when there is a CHANGE in state, from OFF to ON or ON to OFF respectively. That means that if the water is continuously flowing the zone ON response only activates ONCE and not repeatedly, until the zone goes OFF. Similarly thee zone OFF Response occurs when the zone first goes OFF and will not activate until the zone is back ON.
I have created the program and exported it as a Scenario attached
Import the scenario and see if that will work for you, see the tutorial on Scenarios at http://www.comfortforums.com/forum92/2185.html

