Valve Actuated Water Heater Example

Join Date
Oct 2005
Location
Ohio
Posts
19
Hello, last question of the night, I was given a problem that is basically teaching me how to use comparator operators...

I've got a general idea of how to do this which I'll include at the bottom, but I was hoping for some input or corrections to what would work and what wouldn't.


------------
Problem: I need to work out the ladder code for a valve actuated water heater on a SLC-500 with the following data...

When the machine first turns on, the pilot valve (PV_ opens and the igniter (I) will turn on for 3 seconds.

A thermal switch T1, indicates whether the water is hot or not. If the temperature of the water is less than 95 degrees C, the switch is closed.

A second thermal switch (t2) opens at 65C....I've got to keep the temperature between 65C and 95C.

If the temp drops below 65C, open the main gas valve (MGV) until the water is greater than 95C....
----------

So heres what I'm thinking:

pv
-------first pass ----------------(L)---
| I
------|pv|----------------------toff------
| 3 seconds
| t4:0/dn I
-------||----------------------------( )-----
|
| T1 T1
|------|/|------T1<95---------------( )----
| T2
|------|/|------T1>65----------------(T2)---
| T1
|-----------| |-----------------------(MGV)---
| T2 |
-----| |---
|---|MGV|---------------until T2 off--------



Where its worded out I'm really not sure how to implement :-/

Thanks for the help though, this is the one I'm really needing it on :-D
 
First off, let's make sure we understand you ladder. Is this what you meant?

| First Pass
|-------] [----------------(L) Igniter
|
| First Pass T4:0
|-------] [----------------(TOF) 3 Seconds
|
| T4:0/DN
|--------] [---------------(U) Igniter
|
| T1 Temp < 95
|------|/|-------] [-------(T1)
|
| T2 Temp > 65
|------|/|--------] [------(T2)
|
| T1
|-----+---] [---+----------(MGV)
| |
| T2 |
+---] [---+

You'll have better luck if you 'draw' the ladder in notepad, then copy and paste it into your post. Put [LADDER] before the pasted text, and [/LADDER] after it. Then it will format correctly. Click 'Quote' on my post to see how I did the above ladder.

🍻

-Eric
 
Yep that looks a lot like it, but there has to be some action done by MGV - I'm not sure how to go about implementing that or even if the current logic is correct.
 
stanggt200220000 said:
Yep that looks a lot like it, but there has to be some action done by MGV
The Main Gas Valve is an output. The only 'action' it does is control the gas flow.

It looks like the igniter part should work with the logic you have. You need to add the logic to control the pilot valve.

The lower half of the ladder with the T1 and T2 needs work. I think I translated you ladder improperly. T1 and T2 are digital (on/off) signals, so you won't be using comparison instructions.

Based on your description, it sounds like you want the Main Gas Valve to open when the temperature drops below 65°, and REMAIN open until the temperature reaches 95°. At that point, you want it to close and REMAIN closed until the temperature drops below 65° again. Right?

I think it's important to clarify the function of the inputs:

T1 - Closed when temp < 95°; Open when temp > 95°
T2 - Closed when temp < 65°; Open when temp > 65°

Is this correct?

🍻

-Eric
 
Hey eric also added in this line up top to the I latching stuff...


| First Pass

|-------] [----------------(L) PV

so now latching both I and PV....
 
No 'L'atches needed. It's a simple seal in circuit.

Based on Eric's description above, T1 is the 'STOP' contact, T2 is the 'START' contact, 'MGV' is both the output coil, and the seal contact around T2.
 

Similar Topics

Good morning, We've had an issue with a couple of servo valves and was wondering if anyone had seen anything similar. After a drop in pressure...
Replies
2
Views
93
Hi, The hardware is: Click Plc model # CO-O1DD1-O HMI model # S3ML-R magnetic-inductive flow meter model # FMM100-1001. I will set the flow meter...
Replies
4
Views
130
I have been requested to test this proportioning valve for PLC control of flow/pressure. Dwyer Series SVP Proportioning Solenoid Valve The flow...
Replies
10
Views
420
Hi Everyone, Thought I had it figured out but I came to the conclusion it would not work. Here is what I'm working with... 1769-L30ER Flow Meter...
Replies
24
Views
699
So I'm pretty green when it comes to troubleshooting in the field so bear with me. We have a Danfoss valve that opens/closes from an analog output...
Replies
23
Views
953
Back
Top Bottom