Offshore crane
API spec 2c and EN 13852-1 are two well known standards that offer guidance in developing minimum offshore pedestal-mounted crane requirements. They represent Gulf of Mexico and the North Sea respectively.
API specification considers Gulf of Mexico to be of “very mild sea and wind conditions” (§5.4.4 Legacy Dynamic Method). Environmental conditions in the Gulf of Mexico are indeed mild when hurricanes are excluded. Also, given the unpredictable variation in hurricane strengths and hence the impracticality of designing for such events, offshore facilities in the Gulf of Mexico are operated as manned-evacuated. In other words, operations (including crane operations) are suspended and the facility evacuated in the event of an impending hurricane in the facility’s path.
When a sizeable number of assets are validated by their use, standards developed primarily for a specific domain find acceptance internationally. However, liberal use is never without a catch, as standards often carry certain domain specific assumptions and criteria that may need revisiting when considered for a domain outside the primary for which it is written and valid for.
Take for instance the primary purpose of offshore cranes mounted on pedestals on offshore platforms — fixed or floating. They lift cargo and supplies off a floating vessel, which in turn are influenced by incoming waves.
Off-board lift, as API spec 2c explains, is “the hoisting velocity at the elevation where lift is initiated (i.e., supply boat deck level) shall be fast enough to avoid re-contact after the load is lifted.”
Off-board lift using API spec 2c:
Minimum required steady hoisting velocity (in ft/s) for off-board lift as per §5.4.5.2, API spec 2c:
For Hsig ≤ 6ft:
$$ V_{hmin} = 0.033 + 0.098 \cdot H_{sig} $$
For Hsig > 6ft:
$$ V_{hmin} = 0.067 \cdot (H_{sig} + 3.3) $$
Off-board lift using EN 13852-1:
Minimum hoisting and lowering velocity (in m/s) for lifting from/to a supply vessel in EN 13852-1 (§B.4) is given as follows:
$$ V_H = K_H \cdot \sqrt{V_D^2 + V_C^2} $$
where,
- VD – vertical velocity of load’s supporting deck for lifting to or from a supply vessel (m/s), from Table B.2
- VC – vertical velocity of the crane boom tip due to the movement of the crane base (m/s), from Table B.3
- KH – velocity factor coving (single fall, multiple fall) reeving and for both no-hook load as well as at rated capacity
$$ V_D = \left(\frac{6.0 \cdot H_{sig}}{H_{sig} + 8.0} \right) $$
For crane on bottom-founded structures, there is no movement of the crane base, and therefore, VC = 0.
I wrote a little code to compare the two standards over the weekend (see below) to produce the following graph.
A couple of observations:
- API prescription for Vhmin covers supply vessels, while EN offers two additional options, viz., barge, and sea surface. (Graphs for barge or sea surface are not shown in the above, but can be separately generated, if desired, using the code I’ve shared.)
- EN is explicit about reeving efficiency — note the reduced velocity requirements in the case of multi-fall reeving. Looking at the two graphs above, i.e., for API and for EN, the multi-part reeving option appears to be somewhat close to API prescription in terms of Vhmin. It could be that API considers multi-part reeving efficiency in its prescription, even though it does not mention in §5.4.5.2.

Now to the crux of the matter on whether or not a standard’s recipe enables safe-clearing of the package lifted before the next wave crest appears. The package travel can be calculated, for a given significant wave height (Hsig) and corresponding period (T), as follows:
$$ h = V_{hmin} \cdot T $$
Testing API spec 2c recipe for the Australian Northwest Shelf environment:
Hsig | T | Vhmin | h |
---|---|---|---|
1.4m | 4.9s | 0.14m/s | 0.72m < Hsig (Not Good) |
2.7m | 5.7s | 0.25m/s | 1.42m < Hsig (Not Good) |
3.6m | 6.4s | 0.30m/s | 1.98m < Hsig (Not Good) |
From the table above, clearly it does not work. In other words, a lifted package experiences re-contact by the next wave crest before clearing safely.
Now let’s test this for EN 13852-1 again for the Australian Northwest Shelf environment:
Hsig | T | Vhmin | h |
---|---|---|---|
1.4m | 4.9s | 0.44m/s | 2.19m > Hsig (OK) |
2.7m | 5.7s | 0.75m/s | 4.31m > Hsig (OK) |
3.6m | 6.4s | 0.92m/s | 5.96m > Hsig (OK) |
From above, it can be seen that the recipe offered by EN 13852-1 clears the package comfortably before the next wave crest arrives. So EN’s recipe works for NWS where API’s does not.
Code for generating Figure 1:
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
# Offshore crane minimum off-board hoisting velocity
# vhmin.py -- 2016-21 ckunte
# Mar 2021: code re-factored
import numpy as np
import matplotlib.pyplot as plt
def api_spec_2c(*args):
cf = 0.3048 # ft -> m conversion factor
v1 = (0.033 * cf) + 0.098 * x1
v2 = 0.067 * (x2 + (3.3 * cf))
plt.plot(x1, v1, color="red", label="API spec 2c")
plt.plot(x2, v2, color="red")
pass
def en_13852_1(*args):
K_H = [0.50, 0.28] # at rated capacity: [single, multiple] fall reeving
Vd = 6.0 * x / (x + 8.0) # crane on fixed platform lifting off supply vessel
Vc = 0 # crane boom tip velocity
VH_sfr = K_H[0] * (Vd ** 2 + Vc ** 2) ** 0.5
VH_mfr = K_H[1] * (Vd ** 2 + Vc ** 2) ** 0.5
plt.plot(x, VH_sfr, label="EN 13852-1 (RC, SFR)")
plt.plot(x, VH_mfr, label="EN 13852-1 (RC, MFR)")
pass
def plot_min_hoist_velo(*args):
api_spec_2c(x1, x2)
en_13852_1(x)
plt.grid(True)
plt.legend(loc=0)
plt.title("API v. EN for (off-board) lift off supply vessel")
plt.xlabel("$H_{sig}$ (m)")
plt.ylabel("$v_{h\,min}$ (m/s)")
plt.savefig("vhmin.svg")
plt.close()
pass
if __name__ == "__main__":
# x, x1, x2: significant wave height ranges
x1 = np.arange(0.0, 1.83, 0.001)
x2 = np.arange(1.83, 3.0, 0.001)
x = np.arange(0.0, 3.0, 0.001)
plot_min_hoist_velo(x1, x2, x)
pass
Update (Dec 2018): IOGP specification S-6181 issued in Dec 2018 now fixes the low velocity in API’s off-board lift recipe, which stuck out like an anomaly2, see plot above, and is now in step with that of EN 13852-1, which can be seen in the updated plot below.
Code for generating Figure 2:
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
# Offshore crane minimum off-board hoisting velocity
# vhmin.py -- 2016-21 ckunte
# Dec 2018: IOGP fixes the issue w/ API's low vhmin prescription
# Mar 2021: code re-factored
import numpy as np
import matplotlib.pyplot as plt
def api_spec_2c(*args):
cf = 3.2808 # ft -> m conversion factor
v_main = (-0.0032 * (x * cf) ** 2 + 0.179 * (x * cf) + 0.0499) / cf
v_auxi = 1.79 * v_main
plt.plot(x, v_auxi, color="magenta", label="API spec 2c + IOGP S-618 (Auxi)")
plt.plot(x, v_main, color="red", label="API spec 2c + IOGP S-618 (Main)")
pass
def en_13852_1(*args):
K_H = [0.50, 0.28] # at rated capacity: [single, multiple] fall reeving
Vd = 6.0 * x / (x + 8.0) # crane on fixed platform lifting off supply vessel
Vc = 0 # crane boom tip velocity
VH_sfr = K_H[0] * (Vd ** 2 + Vc ** 2) ** 0.5
VH_mfr = K_H[1] * (Vd ** 2 + Vc ** 2) ** 0.5
plt.plot(x, VH_sfr, label="EN 13852-1 (RC, SFR)")
plt.plot(x, VH_mfr, label="EN 13852-1 (RC, MFR)")
pass
def plot_min_hoist_velo(*args):
api_spec_2c(x)
en_13852_1(x)
plt.grid(True)
plt.legend(loc=0)
plt.title("API v. EN for (off-board) lift off supply vessel")
plt.xlabel("$H_{sig}$ (m)")
plt.ylabel("$v_{h\,min}$ (m/s)")
plt.savefig("vhmin_iogp.svg")
plt.close()
pass
if __name__ == "__main__":
# x: significant wave height ranges
x = np.arange(0.0, 3.0, 0.001)
plot_min_hoist_velo(x)
pass
-
IOGP S-618 Supplementary specification to API specification 2c Offshore Pedestal-mounted Cranes. ↩
-
To be sure, my interest in API spec 2c is now academic, and I am not judging it for its merits or demerits, since API’s application domain is primarily the US. However, due to the fact that API standards are generally good to very good that the engineering community tends to adopt them across domains (outside USA) — sometimes without pausing to consider whether or not cross-domain application is appropriate. ↩