This is currently a Work-in-progress, expect updates to this page.

The project is to create a HO scale model of harbour level-luffing portal crane (also called horse-head crane) with 4 degrees of movement, which are sliding the whole crane on the rails, rotating the crane, tilting the boom, raising and lowering hook.

Originally I wanted the "hook" to be an electromagnet, but since then I’ve settled on an ordinary hook, which means that attaching loads is manual.

There are similar off-the-shelf products, e.g. ROCO 40110, 41290, 41296 (and some other SKUs). Those look like they are from different era, around WW1 to WW2 maybe.

An in-progress video of superstructure rotation and boom elevation. Uses quick-and-dirty firmware for Arduino and Nunchuck.

Mechanical features

The crane is modelled after 2 Eastern European/Soviet portal cranes, Kirovets and Albatros. Most of geometry is taken from Kirovets crane, except tieback, which is made of ropes on the real thing, but is plastic on the model. The portal and rotating hub are taken from Albatros as I like its geometry more.

The model is not to scale, otherwise the crane would dominate any layout smaller than a room. In particular, the portal can fit only 1 railroad track (it accommodates 2 in real life). The model portal has NEM loading gauge.

The crane is 3D-printed. It uses a combination of FDM 3D printing for large load-bearing parts and resin 3D printing for small decorative parts or precision mechanical parts like pulleys.

Moving joints are connected by pins (made from paperclips), components are screwed together with small self-tapping screws. This way inner components and electronics can be accessed by unscrewing outer parts like walls of crane control room and roof.

Slip ring

This is a 3-pole slip ring to hold all the superstructure and to pass electrical signals and power. It is expected be able to carry tilting forces caused by boom extension and load movement. This current design has 2 ball-bearings with 6mm and 8mm bore diameter and is printed with FDM.

To make contacts, a brass pipe was cut to produce rings, and wipers are made of phosphor bronze wire (0.4mm).

All in all, this works, but not very satisfactory (axial shift, noticeable resistance, questionable durability of the contacts), so next time I’d rather design a new one or just use a commercial slip-ring in the future projects.

Linear actuator

Linear actuator is used to move main crane jib. It’s consists of a 6mm gear motor and 2mm threaded rod, a bearing to hold it centered and resin printed casing. You can see it in action in the video above.

At first I tried to not over-engineer it and use an ordinary RC servo, but even a 9g servo was too large to fit. Smaller ones are definitely not strong enough.

It doesn’t have any end stops, so must be operated by trained personnel! Otherwise the threaded rod just snaps off from the nut and the boom falls down.

Winch

A crane obviously needs a winch to lift things. What I’ve come up with is described in this post.

It uses an N20 gearmotor and rubber O-rings to make the construction smaller and place the drums above the motor. The also conveniently serve as torque limiter and will slip under heavy load.

Here is it in action:

On crane lines

Turns out, it’s very difficult to choose material for a good scale model of a crane line. There are some conflicting requirements for the cables, such as:

  • It needs to be thick enough for realism sake

  • and dark colored, also for realism,

  • It must be flexible enough to go straight down with minimal weight,

  • It must not be braided as those twist after some time of inactivity.

So far I’ve tried ordinary sewing thread that I had lying around (too thin and braided), waxed leather-grade thread (thick, good flexibility but braided), polyester thread of specific thickness (braided but otherwise perfect), black fishing line, number 1.0, i.e. 0.16mm (not braided, but too thin and not flexible enough), "elastic fishing line" (white and thin, not braided, way to stretchy).

I ended up using a "multifilament braided fishing line 0.12mm" (from aliexpress). It is really strong (and hard to cut actually, not every clipper cuts it), a bit too rigid and not flexible enough to unwind under the weight of the hook.

Having obtained the knowledge of all other options, I think a braided sewing thread could work better then multifilament one, but it needs to be twisted properly so that it doesn’t tangle on its own. (more specifically, it must not be twisted when installing). This means that "not braided" requirement above is probably not as strict and is there due to lack of experience. This is to be tested on a next project involving threads.

Various attempts at choosing a hoisting cable

Hook

The success of winching depends on weight at the end. If the line is not tensioned enough, it will not unwind properly, get tangled and will not move down. This is not a problem when there is some load attached to the hook, but without load, the hook itself needs to be as heavy as possible. To achieve this, I tried to make the hook pulley housing by casting solder.

Cast solder pulley housing

The end process is described in detail in this post. Earlier attempts are described here.

The hook itself is resin-printed and glued to the pulley housing with the help of pin (made from paperclip).

Electronics

Motor board and connections

Electronics needed to control the crane is rather straightforward - an MCU, one H-bridge per motor and some LEDs. However, I realized that an Arduino Nano and motor boards will not fit into the housing of the crane, so I designed my own PCB with a STM32G0 MCU and 2 DRV8835 dual H-bridges. The board can control up to 4 motors, but only 3 are used as 4th motor is on the ground and is controlled from a ground board. The motor functions controlled from this board are tower rotation, boom tilt and winch.

One projector lamp is fixed near the cabin. It is a 0603 warm white LED that is also controlled by this board.

In retrospect, it would be nice to add a lot more LEDs to the project.

The motor board has a separate project page.

Electric connection between ground and moving crane is made over rails that provide GND and +5V, and data is communicated over steel threaded rod that moves the crane along the tracks. The rod moves a brass nut attached to the portal, on the ground the rod passes through a brass eyelet, wires are soldered to the nut and to the eyelet. For power, the wires are soldered to the rails on the ground (these are just ROCO tracks cut into separate halves), and crane slides on phosphor bronze wires. There are no wheels on the crane.

From the portal 3 wires go through the slip ring into the crane control room where the motor board is located.

Connection over the threaded rod is the most problematic as the contact interrupts when the crane moves, and sometimes the crane needs a push to restore the contact.

To mitigate this to an extent, the MCU firmware checks that the data is arriving constantly and, in case of timeout, stops all motors. This way the crane does not crash in the event of connection loss.

Data channel is 1-way UART link with human-readable commands to move motors and control LEDs.

Ground control board and human interface

Nintendo Wii Nunchuck

Instead of fixed-mounted joystick, a handheld Nintendo Wii Nunchuck (or a cheap clone) is used. It has a 2-axis joystick and 2 buttons, this seems enough to control 3 DoF crane, a winch and some kind of grabber. It also has accelerometer, which might be useful to control other features.

The device can be easily connected to Arduino with I2C interface with the use of readily-available Arduino libraries.

The ground control station consists of an Arduino Nano, DRV8833 module (a dual H-bridge), and a Nunchuck connector. This is mounted on a simple custom PCB that mostly consists of pinheaders.

The motor that moves the whole crane along the track is controlled via H-bridge on this board, and 3 wires go to the crane structure.