Learn Automation with MINATA #72: Pneumatic Valves and Cylinders — Read the Circuit Before Writing PLC Commands
Pneumatic Valves and Cylinders: Read the Circuit Before Writing PLC Commands
Before debugging a PLC, you have to be able to read which valve is feeding or exhausting a cylinder, and which end sensor confirms the motion. A great many faults reported as "the PLC is not working properly" turn out to live in the pneumatic circuit, not in the logic.
Valve and cylinder types
These distinctions decide what happens on loss of power and after a reset:
| Aspect | Option | What it means |
|---|
| Monostable valve | Spring returns to the rest position on loss of power | Fails to one defined side |
| Bistable valve | Holds its last position on loss of power | Does not return; needs a command to change |
| 3/2 | Opens and closes one path | Single acting; returned by spring or load |
| 5/2 | Reverses two paths | Double acting; controlled in both directions |
Knowing whether the valve is monostable or bistable, and whether the cylinder is single or double acting, tells you whether an actuator holds position, retracts or stops after a loss of air or power — information the safety design cannot do without.
Feedback, not just the command
An extend command does not prove the cylinder extended. Only an end sensor, or a suitable measurement, confirms real motion. A cylinder sequence has to check both the stroke time and the feedback: if confirmation does not arrive within the timeout, stop the cycle, hold or exhaust the energy as designed, and raise an alarm naming the actuator.
The fail-safe position
For every cylinder, decide the safe position on loss of energy and choose the valve to suit. A cylinder clamping a part may need to hold its force when air is lost; a lifting cylinder may need a device to prevent the load falling. This is a safety decision, taken from the risk assessment — not from whichever valve happened to be in stock.
A worked engineering situation
A clamping station uses a double-acting cylinder with a 5/2 valve and two end sensors. The PLC issues the clamp command but only advances when the "clamped" sensor confirms within the timeout; otherwise the machine stops and the HMI reports "clamp cylinder: stroke not confirmed". The valve is chosen so that on loss of air the cylinder keeps holding the part, rather than releasing it suddenly.
The valve type, the cylinder type and the fail-safe position all follow the pneumatic diagram and the risk assessment.
Common mistakes
- Writing PLC commands before reading the circuit and the feedback.
- Treating an extend command as evidence that the cylinder extended.
- No timeout and no alarm for a cylinder stroke.
- Choosing a valve without considering the fail-safe position on loss of air or power.
- Not distinguishing single from double acting when designing the sequence.
Valve and cylinder checklist
- [ ] Monostable or bistable, 3/2 or 5/2, single or double acting are all identified.
- [ ] Every cylinder has a fail-safe position taken from the risk assessment.
- [ ] Motion is confirmed by an end sensor, not by the command.
- [ ] Stroke timeouts raise an alarm naming the actuator.
- [ ] Behaviour after a loss of air or power is defined and tested.
Reading the circuit first is what keeps the logic honest. #73 goes into process sensors for temperature, pressure and level.
Read more automation knowledge at MINATA: https://minatavn.com/en/blog/industrial-automation
Previous — #71: Pneumatics and pressure monitoring: https://minatavn.com/en/blog/automation-71-pneumatics-pressure-monitoring
Next — #73: Process sensors: temperature, pressure and level: https://minatavn.com/en/blog/automation-73-process-sensors-temp-pressure-level
View all MINATA technical articles