DEV Community

Domonique Luchin
Domonique Luchin

Posted on

Reading Structural Drawings as an Engineer: The Coordination Review Workflow

I've reviewed hundreds of structural drawing sets over my 6 years in oil and gas. Equipment platforms, pipe racks, foundations - each project teaches you something new about how to catch problems before they become $50,000 change orders.

Here's the workflow I use for every coordination review. This isn't theory. It's what works when you're responsible for making sure a 200-ton reactor platform doesn't fall over.

Start with the Big Picture

Before you look at a single beam detail, understand what you're building.

Read these documents first:

  • Design basis memo
  • Equipment data sheets
  • Process flow diagrams
  • Site survey

You need context. Is this a new structure or a retrofit? What loads are we dealing with? I once caught a foundation design that used 100 psf live load when the actual equipment imposed 400 psf. The architect had copied specs from an office building.

The Three-Pass Review System

Pass 1: Layout and Geometry

Open the plan views. Check these items in order:

  1. Grid alignment - Do structural grids match architectural grids?
  2. Elevation consistency - Are finished floor elevations the same across all drawings?
  3. Equipment locations - Do vessel centerlines match between P&ID and structural plans?

Create a simple checklist. I use a Python script that generates this for every project:

checklist = {
    "grid_alignment": False,
    "elevation_match": False,
    "equipment_centerlines": False,
    "clearances_met": False,
    "access_provided": False
}
Enter fullscreen mode Exit fullscreen mode

You fill it out as you go. Binary answers only - yes or no.

Pass 2: Member Sizing and Connections

Now you get into the structural details.

Check these elements:

  • Beam depths against headroom requirements
  • Connection details at equipment supports
  • Foundation sizes vs equipment loads
  • Seismic bracing locations

I keep a reference table of standard sizes we use:

Equipment Type Typical Beam Min Foundation
Horizontal vessel W18x35 min 8'x8'x3'
Vertical pump W12x26 min 6'x6'x2.5'
Heat exchanger W21x44 min 10'x6'x3'

These aren't code requirements. They're based on what actually works in the field.

Pass 3: Constructability Review

This is where experience matters most. You're looking for things that look right on paper but won't work with a crane and actual workers.

Red flags I watch for:

  • Bolted connections you can't reach with a wrench
  • Concrete pours that require impossible forming
  • Steel members that interfere during erection sequence

I learned this the hard way on a platforming project in 2022. The drawing showed perfect bolt access. But the actual pipe routing made it impossible to get a socket wrench on 40% of the connections. We had to redesign three beam-to-column joints.

Documentation That Actually Helps

Don't write novels in your review comments. Use this format:

DWG: S-101
ITEM: Foundation F-3
ISSUE: Foundation 6'x6' but equipment data shows 8'x4' bolt pattern
ACTION: Resize foundation or confirm equipment dimensions
PRIORITY: HIGH
Enter fullscreen mode Exit fullscreen mode

Four lines maximum. If you can't explain the problem in four lines, you don't understand it well enough.

Common Coordination Failures

These show up on 80% of the projects I review:

Pipe rack column spacing - Process wants 30' bays, structural used 25' modules. Someone has to give.

Equipment access - The structure works but maintenance can't remove the pump impeller without cutting steel.

Utility routing - Perfect structural design that leaves nowhere to run the 4" cooling water line.

Foundation conflicts - New foundation conflicts with existing underground utilities that weren't surveyed.

I caught this last one three times in 2023. Each time saved at least two weeks of schedule.

Tools That Speed Up Reviews

I use RISA-3D for quick load path checks during review. If something looks questionable, I can model the critical members in 10 minutes and verify capacity.

For large drawing sets, I wrote a Python script that extracts member sizes from PDFs and flags anything outside our standard size ranges:

def check_beam_sizes(drawing_text):
    beam_pattern = r'W(\d+)x(\d+)'
    beams = re.findall(beam_pattern, drawing_text)

    for depth, weight in beams:
        if int(depth) < 12 or int(weight) < 26:
            flag_undersized_member(depth, weight)
Enter fullscreen mode Exit fullscreen mode

Simple automation that catches obvious problems.

The Real Goal

You're not just checking calculations. You're making sure someone can build this thing without calling you every day with problems.

The best structural drawing review finds the issues that would stop construction. The worst one focuses on line weights and text fonts while missing the fact that the crane can't reach half the steel connections.

Your next step: Take your last drawing review and count how many comments were about constructability vs drafting standards. If it's less than 70% constructability, you're reviewing the wrong things.

Focus on what breaks in the field, not what looks perfect on paper.

Top comments (0)