top of page

Api 610 13th Edition [patched] 🔔

The API 610 13th Edition updates standards for centrifugal pumps in the petroleum and petrochemical industries, with a focus on refining allowable piping loads and nozzle forces to enhance reliability. It continues to align with ISO 13709, ensuring robust design for overhung, between-bearings, and vertically suspended pumps. For more details, visit the American Petroleum Institute website.

This review focuses on key changes, technical enhancements, and practical implications for end users, engineering firms, and pump manufacturers compared to the 12th Edition (2014).


Key Structural Changes at a Glance

Before diving into specifics, here are the headline alterations in API 610 13th Edition: Api 610 13th Edition

| Feature | API 610 12th Edition | API 610 13th Edition | | :--- | :--- | :--- | | Hydraulic coverage | Up to 40,000 kW (pump input power) | Clarified for high-speed integral-gear pumps | | Bearing housing vibration | Alarm limits based on filter types | Stricter un-filtered peak velocity limits | | Mechanical seals | Reference to API 682 4th Edition | Mandatory reference to API 682 5th Edition | | Baseplate rigidity | General guidance | Quantified minimum stiffness requirements | | Coupling guards | Standard metal guards | Non-sparking materials for ATEX zones |

3.2. Enhanced Mechanical Seal and Containment

  • The change: Clause 8.3 (Mechanical Seals) has been heavily rewritten. The 13th edition mandates API 682 4th edition seal specifications (including the new "C" configuration for gas barrier seals). Furthermore, it requires dual unpressurized seals for nearly all hydrocarbon services unless a risk assessment justifies a single seal.
  • Impact: This significantly reduces fugitive emissions but raises initial cost. The standard now explicitly calls out "seal flush plans" that minimize energy consumption.

3.2. Bearing Housing and Lubrication

  • Oil mist lubrication requirements are now more prescriptive, including nozzle sizing and distribution line design.
  • For oil splash/ring lubrication, the minimum oil level is defined more clearly to prevent bearing starvation during transient operations.
  • Bearing housing vibration limits have been tightened (lower thresholds for alarm and trip).

10. Summary Checklist for API 610 13th Edition Compliance

Use this checklist when reviewing a vendor proposal or writing a bid package: The API 610 13th Edition updates standards for

  • [ ] The data sheet explicitly states "API 610 13th Edition".
  • [ ] Bearing housing vibration limits specify full octave band analysis.
  • [ ] Mechanical seal design references API 682 4th Edition.
  • [ ] Baseplate design includes an FEA report (for >150 kW).
  • [ ] NACE compliance refers to MR0175/ISO 15156:2020.
  • [ ] Hydrostatic test pressure matches the new clause 9.1.2.
  • [ ] Minimum flow is calculated using the new thermal method (not a simple 40% rule).
  • [ ] Temperature transmitters are specified on all bearings >75 kW.

4. Database Schema (if storing pump compliance)

CREATE TABLE api610_pumps (
    id UUID PRIMARY KEY,
    pump_model VARCHAR(100) NOT NULL,
    edition SMALLINT CHECK (edition = 13),
    shaft_type VARCHAR(10),
    material_class VARCHAR(5),
    max_nozzle_load_f_lbf DECIMAL(8,2),
    max_nozzle_load_t_lbf DECIMAL(8,2),
    min_cont_flow_gpm DECIMAL(8,2),
    lube_system_type VARCHAR(30),
    seal_chamber_rated_psig INT,
    meets_api610 BOOLEAN DEFAULT FALSE,
    created_at TIMESTAMP DEFAULT NOW()
);

-- Index for fast compliance lookup CREATE INDEX idx_api610_edition ON api610_pumps(edition, meets_api610);


5. Verification of Pump Performance

The 13th Edition places a higher premium on data verification. It mandates that manufacturers must verify the hydraulic performance curve predictions against actual test data more rigorously. If a pump fails to meet the guaranteed point within specific tolerances (head, capacity, power), the rejection criteria are more explicitly defined than in previous editions.


bottom of page