PLC-based control systems have transformed the way industrial cranes operate on the factory floor. If you've worked with ladder logic or automation projects before, integrating a PLC with a single girder overhead crane is a natural next step — one that brings precise motion control, safety interlock logic, and IoT-ready data logging to one of the most common pieces of industrial lifting equipment.
In this guide, we'll walk through the full picture: from the mechanical fundamentals of single girder overhead cranes, to PLC I/O wiring, ladder logic programming, VFD integration, and real-world automation patterns used in manufacturing environments.
A single girder overhead crane (also called a single beam crane) consists of one main horizontal beam — the girder — supported at both ends by end trucks that run along elevated runway rails. A hoist and trolley assembly travels along the bottom flange of this single girder, allowing it to move loads in three dimensions: left-right (bridge travel), front-back (trolley travel), and up-down (hoist lift).
This stands in contrast to a double girder crane, which uses two parallel main beams and is typically used for heavier loads, higher lift heights, or when top-running hoists are required.
Key specs range:
Understanding each component helps engineers troubleshoot problems, design load paths, and select appropriate equipment.
The single girder is typically an I-beam (wide flange section) or a box beam made from structural steel. The choice depends on the span and load:
A critical design parameter is the maximum allowable deflection, generally limited to L/888 under full rated load (per CMAA Specification No. 74), where L is the span length. For example, a 10-meter span crane should not deflect more than ~11 mm under full load.
End trucks are the assemblies at each end of the girder that contain the bridge wheels, which ride on the runway rails. They transmit vertical loads from the crane bridge to the runway structure. Key considerations include:
The hoist is the lifting mechanism, while the trolley is the wheeled carriage that moves the hoist along the girder. In a single girder crane, the trolley typically runs along the lower flange of the I-beam.
Common hoist types:
Engineers should verify that the hoist's Duty Classification matches the application (Class A through F per ASME B30.2 or FEM 1.001 classification).
The runway consists of steel rails mounted on a building's structural columns or a freestanding structure. Rail selection (e.g., ASCE 40, 60, 80 lb/yard) must consider:
Modern single girder overhead cranes integrate:
This is where the real engineering fun begins. Replacing a traditional relay-based control panel with a PLC dramatically improves flexibility, diagnostics, and safety. Let's go through it step by step.
For a typical single girder crane, a mid-range PLC is more than sufficient. Popular choices include:
I/O count estimate for a basic crane:
Signal | Type | Qty |
|---|---|---|
| Pendant pushbuttons (up/down/left/right/E-stop) | DI | 6–10 |
| Hoist upper limit switch | DI | 1 |
| Hoist lower limit switch | DI | 1 |
| Bridge travel end limits (×2) | DI | 2 |
| Trolley travel end limits (×2) | DI | 2 |
| Overload relay feedback | DI | 1 |
| Emergency stop chain | DI | 1 |
| Hoist motor contactor/VFD enable | DO | 2 |
| Bridge motor forward/reverse | DO | 2 |
| Trolley motor forward/reverse | DO | 2 |
| Alarm horn / beacon | DO | 1–2 |
| Load cell (4–20 mA) | AI | 1 |
| VFD speed reference (0–10 V) | AO | 1–3 |
| Header 1 | ||
A PLC with 24 DI / 16 DO / 2 AI / 2 AO covers a standard setup, with room to grow.
A clean wiring design is critical for crane reliability. Here's the typical signal path:
Pendant/Remote → PLC Digital InputsPLC Digital Outputs → VFD Enable / Motor ContactorsVFD Analog Input ← PLC Analog Output (speed reference 0–10V)Limit Switches → PLC Digital Inputs (and hardware interlock in VFD)Load Cell → PLC Analog Input (4–20 mA)E-Stop → Safety Relay → VFD STO (Safe Torque Off)
Critical wiring rules:
Below are the core logic blocks for a PLC crane control program. Examples use IEC 61131-3 Ladder Diagram notation, applicable to most PLC brands.
Block 1 — Hoist Up Control
|--[I: HOIST_UP_BTN]--[/I: HOIST_UPPER_LIMIT]--[/I: OVERLOAD]--[/I: ESTOP]--|| || (Q: HOIST_UP_OUT) |
Logic: Hoist Up button pressed AND upper limit not reached AND no overload AND E-stop not active → energize hoist up output.
Block 2 — Hoist Down Control
|--[I: HOIST_DN_BTN]--[/I: HOIST_LOWER_LIMIT]--[/I: OVERLOAD]--[/I: ESTOP]--|| || (Q: HOIST_DN_OUT) |
Block 3 — Bridge Travel with Anti-Collision
|--[I: BRIDGE_FWD_BTN]--[/I: BRIDGE_FWD_LIMIT]--[/I: ESTOP]--[/I: COLLISION]--|| || (Q: BRIDGE_FWD_OUT) |
Block 4 — Overload Alarm Latch
|--[I: OVERLOAD_RELAY]-----| (SET Q: OVERLOAD_ALARM)|--[I: RESET_BTN]---------| (RESET Q: OVERLOAD_ALARM)
The overload alarm latches and can only be reset manually — this prevents auto-restart under load, which could cause structural damage.
Block 5 — VFD Speed Reference (Analog Output)
// Function Block pseudocodeIF HOIST_UP_OUT OR HOIST_DN_OUT THEN IF SLOW_SPEED_MODE THEN AO_HOIST_SPEED := 2000; // 20% → low speed ELSE AO_HOIST_SPEED := 8000; // 80% → high speed END_IFELSE AO_HOIST_SPEED := 0;END_IF
Pairing a VFD with each crane axis is the single biggest upgrade you can make:
VFD Parameter | Typical Crane Setting | Effect |
|---|---|---|
| Acceleration time | 2–4 seconds | Smooth start, reduces mechanical shock |
| Deceleration time | 2–5 seconds | Soft stop, prevents load swing |
| DC Brake time | 0.5–1.5 s | Holds load during stop (hoist axis) |
| Min frequency | 5–10 Hz | Prevents stall at very low speed |
| Max frequency | 50/60 Hz | Full speed limit |
| Motor overload current | 105–115% FLA | Electronic overload protection |
| Header 1 | ||
For the hoist axis, configure the VFD to use a mechanical brake release signal — the brake should only release after the VFD confirms motor torque is established, preventing load drop on start.
A crane PLC program is only as good as its safety interlocks. Use a layered approach:
Layer 1 — Hardware (always active, independent of PLC):
Layer 2 — PLC software interlocks:
Layer 3 — Diagnostics and fault logging:
For cranes in production environments, a touchscreen HMI adds significant operational value:
Popular HMI platforms: Siemens KTP700, Allen-Bradley PanelView, Weintek MT8000, Delta DOP-B series.
The operation of a single girder overhead crane follows a straightforward electromechanical sequence:
The mechanical advantage in hoisting is achieved through the reeving of wire rope over sheaves — a 4-part line arrangement, for example, means 4 rope segments share the load, allowing a smaller motor to lift heavier weights at reduced speed.
Engineers designing or specifying single girder overhead cranes must account for several structural and dynamic factors.
Per CMAA 74 and AISC standards, the crane's structural members must be checked under:
For cranes with frequent lift cycles (warehouse, assembly lines), fatigue governs design. The girder welds, especially at end truck connections and runway bracket joints, are susceptible to cyclic fatigue failure. AISC fatigue categories (A through F) guide allowable stress ranges based on weld type and loading frequency.
Excessive deflection not only affects operational precision but can cause the hoist trolley wheels to "walk" laterally on the girder flange, accelerating wear. Engineers typically design for L/888 under working load, a standard across major crane standards.
Parameter | Single Girder | Double Girder |
|---|---|---|
| Capacity | Up to ~20 tons | 5 tons to 500+ tons |
| Headroom | Better (hoist hangs below beam) | Less (top-running hoist) |
| Initial Cost | Lower | Higher |
| Installation height | Lower (saves building height) | Requires more headroom |
| Hook approach (end) | Limited | Better |
| Maintenance access | Ground level | Walkway on girder |
| Span capability | Up to ~28 m | Up to 40 m and beyond |
| Header 1 | ||
For most light industrial applications — light manufacturing, warehousing, maintenance bays, and machine shops — a single girder crane offers the optimal balance of cost, performance, and installation simplicity.
Single girder overhead cranes are found across a wide range of industries:
Engineers specifying cranes must ensure compliance with applicable safety codes:
Critical safety features include:
Proactive maintenance significantly extends crane service life and prevents costly unplanned downtime:
Daily checks:
Weekly/Monthly:
Annual:
Modern single girder overhead cranes are increasingly being integrated into automated material handling systems:
These advancements are bringing the single girder overhead crane firmly into the era of Industry 4.0, making it not just a lifting tool but an intelligent node in the smart factory ecosystem.
The single girder overhead crane is far more than a simple lifting device — when paired with a well-designed PLC control system, it becomes a precise, safe, and data-rich node in the modern automated factory. From ladder logic interlock design and VFD speed tuning to HMI dashboards and predictive maintenance logging, the engineering depth here is substantial and rewarding.
Whether you're a PLC programmer taking on your first crane automation project, a mechanical engineer learning the electrical side, or a facilities engineer upgrading an aging relay panel, the principles in this guide give you a solid technical foundation to build on. Start with the I/O list, get the safety interlocks right in hardware first, and let the PLC handle the intelligence layer on top.
JLCPCB – Prototype 10 PCBs for $2 (For Any Color)
China’s Largest PCB Prototype Enterprise, 600,000+ Customers & 10,000+ Online Orders Daily
How to Get PCB Cash Coupon from JLCPCB: https://bit.ly/2GMCH9w