> ## Documentation Index
> Fetch the complete documentation index at: https://docs.canadava.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Bombardier CRJ-900 Checklist

> Complete vACA CRJ-900 normal and abnormal checklists with CF34-8C5 engine procedures, EICAS flows, and memory items

export const CockpitChecklist = ({sections = [], title, printLogoSrc = "/logo/light.svg", printNotice = "For flight-simulation training only - not for real-world aviation use."}) => {
  const allItems = sections.flatMap((s, si) => (s.items || []).map((_, ii) => `${si}-${ii}`));
  const [checked, setChecked] = useState({});
  const [isFullscreen, setIsFullscreen] = useState(false);
  const [backdropId] = useState(() => `cockpit-bd-${Math.random().toString(36).slice(2, 10)}`);
  const [printId] = useState(() => `cockpit-print-${Math.random().toString(36).slice(2, 10)}`);
  const fullscreenRootRef = useRef(null);
  const toggle = key => setChecked(prev => ({
    ...prev,
    [key]: !prev[key]
  }));
  const reset = () => setChecked({});
  const openFullscreen = () => setIsFullscreen(true);
  const closeFullscreen = () => setIsFullscreen(false);
  const clearPrintTarget = () => {
    if (typeof document === "undefined") return;
    const printNode = document.getElementById(printId);
    document.body.classList.remove("cockpit-printing");
    if (printNode) {
      printNode.setAttribute("data-print-active", "false");
    }
  };
  const printChecklist = () => {
    if (typeof window === "undefined" || typeof document === "undefined") return;
    const printNode = document.getElementById(printId);
    if (!printNode) return;
    printNode.setAttribute("data-print-active", "true");
    document.body.classList.add("cockpit-printing");
    window.addEventListener("afterprint", clearPrintTarget, {
      once: true
    });
    window.requestAnimationFrame(() => {
      window.print();
    });
  };
  const doneCount = Object.values(checked).filter(Boolean).length;
  const totalCount = allItems.length;
  useEffect(() => {
    if (typeof document === "undefined") return;
    [backdropId, printId].forEach(id => {
      const node = document.getElementById(id);
      if (node && node.parentNode !== document.body) {
        document.body.appendChild(node);
      }
    });
    return () => {
      [backdropId, printId].forEach(id => {
        const current = document.getElementById(id);
        if (current && current.parentNode) {
          current.parentNode.removeChild(current);
        }
      });
    };
  }, [backdropId, printId]);
  useEffect(() => {
    if (!isFullscreen) return;
    const onKey = e => {
      if (e.key === "Escape") setIsFullscreen(false);
    };
    document.addEventListener("keydown", onKey);
    const prevOverflow = document.body.style.overflow;
    document.body.style.overflow = "hidden";
    return () => {
      document.removeEventListener("keydown", onKey);
      document.body.style.overflow = prevOverflow;
    };
  }, [isFullscreen]);
  useEffect(() => {
    if (!isFullscreen) return;
    if (typeof window === "undefined") return;
    const root = fullscreenRootRef.current;
    if (!root) return;
    const MIN_SCALE = 0.7;
    const MAX_SCALE = 1;
    const MIN_LEADER_PX = 24;
    const GAP_PX = 16;
    const SAFETY_PX = 2;
    const measure = () => {
      root.style.setProperty("--cockpit-fs-font-scale", "1");
      void root.offsetWidth;
      const items = root.querySelectorAll(".cockpit-item");
      let worst = 1;
      items.forEach(item => {
        const label = item.querySelector(".cockpit-item-label");
        const value = item.querySelector(".cockpit-item-value");
        if (!label || !value) return;
        const cs = window.getComputedStyle(item);
        const padL = parseFloat(cs.paddingLeft) || 0;
        const padR = parseFloat(cs.paddingRight) || 0;
        const available = item.clientWidth - padL - padR;
        const needed = label.scrollWidth + value.scrollWidth + MIN_LEADER_PX + GAP_PX + SAFETY_PX;
        if (needed > available && available > 0) {
          const ratio = available / needed;
          if (ratio < worst) worst = ratio;
        }
      });
      const next = Math.max(MIN_SCALE, Math.min(MAX_SCALE, worst));
      root.style.setProperty("--cockpit-fs-font-scale", String(next));
    };
    measure();
    let raf = 0;
    const ro = new ResizeObserver(() => {
      cancelAnimationFrame(raf);
      raf = requestAnimationFrame(measure);
    });
    ro.observe(root);
    const backdrop = document.getElementById(backdropId);
    if (backdrop) ro.observe(backdrop);
    return () => {
      cancelAnimationFrame(raf);
      ro.disconnect();
    };
  }, [isFullscreen, sections, backdropId]);
  useEffect(() => clearPrintTarget, [printId]);
  const renderChart = (variant, rootRef) => <div ref={rootRef} className={`cockpit-checklist${variant === "fullscreen" ? " fullscreen" : ""}`}>
      <div className="cockpit-checklist-header">
        {title && <span className="cockpit-checklist-title">{title}</span>}
        <div className="cockpit-checklist-meta">
          <span className="cockpit-checklist-count">
            {doneCount}/{totalCount}
          </span>
          {doneCount > 0 && <button type="button" className="cockpit-checklist-btn" onClick={reset}>
              Reset
            </button>}
          <button type="button" className="cockpit-checklist-btn" onClick={printChecklist}>
            Print
          </button>
          {variant === "fullscreen" ? <button type="button" className="cockpit-checklist-btn" onClick={closeFullscreen} aria-label="Exit fullscreen">
              Close ✕
            </button> : <button type="button" className="cockpit-checklist-btn" onClick={openFullscreen} aria-label="Open fullscreen">
              Fullscreen ⤢
            </button>}
        </div>
      </div>

      <div className="cockpit-checklist-scroll">
        <div className="cockpit-checklist-grid">
          {sections.map((section, si) => <div key={si} className="cockpit-section">
              <div className="cockpit-section-header">
                <span className="cockpit-section-title">{section.title}</span>
                {section.subtitle && <span className="cockpit-section-subtitle">
                    {section.subtitle}
                  </span>}
              </div>
              <div className="cockpit-section-items">
                {(section.items || []).map((item, ii) => {
    const key = `${si}-${ii}`;
    const isChecked = !!checked[key];
    return <button key={key} type="button" className={`cockpit-item${isChecked ? " checked" : ""}${item.strong ? " strong" : ""}`} onClick={() => toggle(key)}>
                      <span className="cockpit-item-label">{item.label}</span>
                      <span className="cockpit-item-leader" aria-hidden="true" />
                      <span className="cockpit-item-value">{item.value}</span>
                    </button>;
  })}
              </div>
            </div>)}
        </div>
      </div>
    </div>;
  const renderPrintLayout = () => <div id={printId} className="cockpit-print-root" data-print-active="false" aria-hidden="true">
      <article className="cockpit-print-sheet">
        <header className="cockpit-print-header">
          <img className="cockpit-print-logo" src={printLogoSrc} alt="vACA" />
          <div className="cockpit-print-heading">
            {title && <h1>{title}</h1>}
            {printNotice && <div className="cockpit-print-notice">{printNotice}</div>}
          </div>
        </header>

        <div className="cockpit-print-grid">
          {sections.map((section, si) => <section key={si} className="cockpit-print-section">
              <div className="cockpit-print-section-header">
                <span className="cockpit-print-section-title">
                  {section.title}
                </span>
                {section.subtitle && <span className="cockpit-print-section-subtitle">
                    {section.subtitle}
                  </span>}
              </div>
              <div className="cockpit-print-section-items">
                {(section.items || []).map((item, ii) => <div key={`${si}-${ii}`} className={`cockpit-print-item${item.strong ? " strong" : ""}`}>
                    <span className="cockpit-print-item-label">
                      {item.label}
                    </span>
                    <span className="cockpit-print-item-leader" aria-hidden="true" />
                    <span className="cockpit-print-item-value">
                      {item.value}
                    </span>
                  </div>)}
              </div>
            </section>)}
        </div>
      </article>
    </div>;
  return <>
      {renderChart("inline")}
      {renderPrintLayout()}
      <div id={backdropId} className="cockpit-fullscreen-backdrop" data-open={isFullscreen ? "true" : "false"} onClick={e => {
    if (e.target === e.currentTarget) closeFullscreen();
  }}>
        {isFullscreen && renderChart("fullscreen", fullscreenRootRef)}
      </div>
    </>;
};

<div className="cover-image-frame">
  <Frame caption="Image source: Air Canada">
    <img src="https://mintcdn.com/virtualaircanada/iQJB1gDJzxYoDw5J/images/aops/fleet/crj900.png?fit=max&auto=format&n=iQJB1gDJzxYoDw5J&q=85&s=88c4f5e70034299c55fbeb7aae882d41" alt="Bombardier CRJ-900" noZoom className="cover-image" width="800" height="460" data-path="images/aops/fleet/crj900.png" />
  </Frame>
</div>

# Bombardier CRJ-900

**Comprehensive Normal & Abnormal Checklist ASOP**

<Info>For flight-simulation training only - NOT for real-world aviation use.</Info>

**Version 1.1 - 23 May 2026**

***

## Legend

* **PF** - Pilot Flying  **PM** - Pilot Monitoring
* *Italic* - Call-outs  **Bold** - Memory item/trigger
* (A) - Automatic call/alert  (M) - Manoeuvre

***

## Normal Operations Checklists

<CockpitChecklist
  title="CRJ-900 Normal Operations"
  sections={[
{
  title: "Power-Up & Acceptance",
  items: [
    { label: "Parking Brake", value: "SET", strong: true },
    { label: "Battery Master", value: "ON (VERIFY >=24 V)" },
    { label: "External Power", value: "ON (IF AVAIL)" },
    { label: "APU", value: "START - ON BUS" },
    { label: "Avionics Master", value: "ON" },
    { label: "IRS", value: "NAV", strong: true },
    { label: "Oxygen", value: "TESTED, 100%" },
    { label: "Gear Pins / Covers", value: "REMOVED & STOWED" },
  ],
},
{
  title: "Preliminary Cockpit",
  items: [
    { label: "CVR", value: "TEST", strong: true },
    { label: "Emergency Exit Lights", value: "ARMED", strong: true },
    { label: "EICAS Messages", value: "CHECKED (NO RED/AMBER)", strong: true },
    { label: "ELT", value: "ARMED", strong: true },
    { label: "Fire Extinguishers", value: "CHECKED" },
  ],
},
{
  title: "Cockpit Prep",
  subtitle: "Flows",
  items: [
    { label: "Overhead (L-R) - Forward Panel - Pedestal", value: "COMPLETE FLOW PATTERN", strong: true },
    { label: "Fuel Boost Pumps", value: "ON (L & R, VERIFY QTY)" },
    { label: "Hydraulic Pumps (1A/1B, 2A/2B, 3A/3B)", value: "OFF (PRE-START)" },
    { label: "Bleed Air", value: "AUTO" },
    { label: "Pressurization", value: "AUTO" },
    { label: "Probe Heat", value: "OFF (UNTIL ENGINE START)" },
    { label: "FMS Preflight", value: "COMPLETE" },
    { label: "Radios / NAVAIDs", value: "SET" },
  ],
},
{
  title: "Cockpit Prep",
  subtitle: "Checklist (PM)",
  items: [
    { label: "Cockpit Prep Checklist", value: "PM INITIATES" },
    { label: "Gear Pins & Covers", value: "REMOVED" },
    { label: "IRS", value: "ALIGNED" },
    { label: "Fuel Qty", value: "___ KG, BALANCED" },
    { label: "Take-Off Briefing", value: "COMPLETED" },
    { label: "Checklist", value: "COMPLETE" },
  ],
},
{
  title: "Before Start",
  items: [
    { label: "Flight Deck Door", value: "CLOSED & LOCKED" },
    { label: "Fuel", value: "___ KGS, PUMPS ON" },
    { label: "Passenger Signs", value: "ON" },
    { label: "Thrust Levers", value: "IDLE" },
    { label: "Anti-Collision Beacon", value: "ON" },
    { label: "Parking Brake", value: "SET" },
    { label: "Doors", value: "CLOSED" },
  ],
},
{
  title: "Engine Start",
  subtitle: "CF34-8C5 - FADEC",
  items: [
    { label: "Hydraulic Pumps", value: "AUTO & ON" },
    { label: "Engine Start Switch (Eng 2)", value: "START" },
    { label: "Monitor", value: "N2 ROTATION RISING, OIL PRESSURE RISING" },
    { label: "At ~20% N2", value: "THRUST LEVER - IDLE (FUEL INTRODUCTION)" },
    { label: "Monitor", value: "ITT RISE, FUEL FLOW INCREASING, N1 ROTATION" },
    { label: "~50% N2", value: "START SWITCH EXTINGUISHES" },
    { label: "Stabilize", value: "~60% N2 - ENGINE STABLE" },
    { label: "Engine 1", value: "REPEAT PROCEDURE" },
  ],
},
{
  title: "After Start",
  subtitle: "Flows",
  items: [
    { label: "APU", value: "OFF (IF NOT REQUIRED)" },
    { label: "Generators", value: "ON & CHECKED" },
    { label: "Bleeds", value: "SET" },
    { label: "Packs", value: "ON" },
    { label: "Probe Heat", value: "ON" },
    { label: "Anti-Ice", value: "AS REQD" },
    { label: "Flight Controls", value: "CHECKED (FULL TRAVEL)" },
    { label: "Flaps", value: "T/O CONFIG (8° OR 20°)" },
    { label: "Stabilizer Trim", value: "___ UNITS" },
    { label: "NWS", value: "ARMED" },
  ],
},
{
  title: "After Start",
  subtitle: "Checklist (PM)",
  items: [
    { label: "After-Start Checklist", value: "PM INITIATES" },
    { label: "Anti-Ice", value: "____" },
    { label: "Rudder & Aileron Trim", value: "ZERO" },
    { label: "Flaps", value: "__ / ____" },
    { label: "Stabilizer Trim", value: "__ UNITS" },
    { label: "Recall", value: "CHECKED" },
    { label: "Autobrake", value: "RTO" },
  ],
},
{
  title: "Taxi",
  items: [
    { label: "Thrust", value: "AS REQD" },
    { label: "Taxi Speed Straight", value: "<= 25 KT" },
    { label: "Turns", value: "<= 10 KT" },
    { label: "Nosewheel Steering", value: "TILLER / RUDDER PEDALS" },
  ],
},
{
  title: "Before Take-Off",
  subtitle: "Up to the Line",
  items: [
    { label: "Flight Controls", value: "CHECKED" },
    { label: "V-Speeds", value: "ANNOUNCED (V1 / VR / V2)" },
    { label: "Flaps", value: "CONFIRM SETTING" },
    { label: "Stabilizer Trim", value: "___ UNITS" },
    { label: "Thrust Reversers", value: "ARMED" },
    { label: "Cabin", value: "SECURE" },
  ],
},
{
  title: "Before Take-Off",
  subtitle: "Below the Line",
  items: [
    { label: "TCAS", value: "TA/RA" },
    { label: "Strobes", value: "ON" },
    { label: "Landing Lights", value: "ON" },
    { label: "Transponder", value: "TA/RA" },
    { label: "Completion Call", value: "CABIN READY, BELOW-THE-LINE COMPLETE" },
  ],
},
{
  title: "T.O. Roll & Initial Climb",
  subtitle: "Call-Out Memory",
  items: [
    { label: "PM \"80 Knots\"", value: "PF \"CHECKED\"" },
    { label: "PM \"V1\"", value: "-" },
    { label: "PM \"Rotate\"", value: "PF ROTATE TO ~8° PITCH" },
    { label: "PM \"Positive Climb\"", value: "PF \"GEAR UP\"" },
  ],
},
{
  title: "After Take-Off / Climb",
  items: [
    { label: "Acc Alt Reached", value: "CLIMB THRUST", strong: true },
    { label: "Flap Retraction", value: "ON SCHEDULE (SPEED BUGS)" },
    { label: "Autobrake", value: "OFF" },
    { label: "Ignition", value: "AS REQD" },
    { label: "Bleeds", value: "NORM" },
    { label: "10 000 FT", value: "\"10 000 - LIGHTS OFF\"" },
    { label: "STD QNH", value: "SET BOTH (ABOVE TRANS ALT)" },
  ],
},
{
  title: "Cruise (Hourly)",
  items: [
    { label: "Engine Instruments", value: "MONITORED" },
    { label: "Fuel Check", value: "FOB VS PLAN (±300 KG)" },
    { label: "Systems", value: "EICAS GREEN" },
    { label: "Waypoint Sequence", value: "NEXT & ETA COMPARE" },
  ],
},
{
  title: "Descent Preparation",
  items: [
    { label: "ATIS / STAR", value: "RECEIVED & INSERTED" },
    { label: "Approach Briefing", value: "COMPLETED" },
    { label: "Landing Data", value: "VREF ___, MINIMUMS ___" },
    { label: "Pressurization", value: "LAND ALT ___" },
    { label: "Recall", value: "CHECKED" },
  ],
},
{
  title: "Approach",
  items: [
    { label: "Altimeters", value: "SET (QNH)" },
    { label: "Minimums", value: "__ FT" },
    { label: "Seat Belts", value: "ON" },
    { label: "Gear", value: "DOWN, 3 GREEN (BELOW 220 KIAS)" },
    { label: "Flaps 20", value: "SET (BELOW 220 KIAS)" },
    { label: "Flaps 30", value: "SET (BELOW 185 KIAS)" },
    { label: "Flaps 45", value: "SET (BELOW 170 KIAS)" },
    { label: "Approach Briefing", value: "CONFIRMED" },
  ],
},
{
  title: "Landing",
  items: [
    { label: "1 000 FT", value: "STABLE/UNSTABLE - GEAR DOWN, FLAPS 45" },
    { label: "500 FT", value: "\"LANDING\" - FINAL SCAN" },
    { label: "50/40/30/20/10 FT", value: "(A) - FLARE" },
  ],
},
{
  title: "After Landing",
  items: [
    { label: "Thrust Reversers", value: "STOWED" },
    { label: "Spoilers", value: "RETRACTED" },
    { label: "Flaps", value: "UP" },
    { label: "Probe Heat", value: "AS REQD" },
    { label: "APU", value: "START (IF REQ)" },
    { label: "Strobes", value: "OFF" },
    { label: "Transponder", value: "STBY" },
    { label: "Weather Radar", value: "OFF" },
    { label: "Completion Call", value: "AFTER-LANDING CHECKLIST COMPLETE" },
  ],
},
{
  title: "Shutdown",
  items: [
    { label: "Parking Brake", value: "SET" },
    { label: "Thrust Levers", value: "IDLE - CUTOFF (AFTER 2 MIN COOL)" },
    { label: "NWS", value: "OFF" },
    { label: "Passenger Signs", value: "OFF" },
    { label: "Anti-Collision Beacon", value: "OFF" },
    { label: "Fuel Boost Pumps", value: "OFF" },
    { label: "Hydraulic Pumps", value: "OFF" },
  ],
},
{
  title: "Securing the Aircraft",
  items: [
    { label: "IRS", value: "OFF" },
    { label: "Emergency Exit Lights", value: "OFF" },
    { label: "Probe Heat", value: "OFF" },
    { label: "Avionics Master", value: "OFF" },
    { label: "Battery Master", value: "OFF" },
    { label: "Post-Flight Report", value: "SENT", strong: true },
  ],
},
]}
/>

### Cautions & Notes

<Warning>
  **Aborted Start** - Thrust Lever CUTOFF immediately. Do not exceed 75% N1 for 2 min after start. Min 30 s between start attempts. Max ITT start limit 815 °C.
</Warning>

<Note>
  **Taxi** - Brake check at first movement: *"Brakes checked, pressure \_\_\_"*.
</Note>

<Note>
  **Landing** - Touchdown: Thrust Levers IDLE - Spoilers deploy - Reverse thrust. Reverse idle at 60 kt. Stow reversers before taxi speed.
</Note>

***

## Abnormal / Memory Items (Extract)

### ENGINE FIRE or SEVERE DAMAGE (In‑Flight)

| Step | Action                                             |
| ---- | -------------------------------------------------- |
| 1    | **Thrust Lever (affected)** → IDLE                 |
| 2    | **Engine Fire Handle (affected)** → CONFIRM → PULL |
| 3    | **Fuel Shutoff** → CLOSED                          |
| 4    | **Extinguisher Agent 1** → DISCHARGE, wait 30 s    |
| 5    | If fire persists → **Agent 2** → DISCHARGE         |
| 6    | **Bleed Air (affected side)** → OFF                |

### ENGINE FLAMEOUT

| Item                        | Action                                  |
| --------------------------- | --------------------------------------- |
| **Thrust Lever (affected)** | IDLE                                    |
| **Ignition**                | OVERRIDE                                |
| If no relight within 30 s   | **Engine Start Switch** → START         |
| Monitor                     | N2, ITT, fuel flow for relight          |
| If relight fails            | Secure engine, single‑engine procedures |

### EMERGENCY DESCENT

| Item              | Action                       |
| ----------------- | ---------------------------- |
| **Announce**      | *"EMERGENCY DESCENT"* (×3)   |
| SIGNS             | ON                           |
| Oxygen Masks      | ON                           |
| **Thrust Levers** | IDLE                         |
| **Spoilers**      | EXTEND                       |
| **Target Speed**  | VMO / MMO                    |
| Descend           | Lowest safe alt or 10 000 ft |

*(See QRH for full procedure.)*

***

## Quick‑Reference Flap Schedule (CRJ‑900)

| Config   | VFE (KIAS)  |
| -------- | ----------- |
| Flaps 0  | 270 (clean) |
| Flaps 1  | 230         |
| Flaps 8  | 230         |
| Flaps 20 | 220         |
| Flaps 30 | 185         |
| Flaps 45 | 170         |

## Typical Speeds (\~65 000 lb / Flaps 8)

| Speed           | KIAS  |
| --------------- | ----- |
| V1              | \~124 |
| VR              | \~130 |
| V2              | \~140 |
| VREF (Flaps 45) | \~131 |

## Gear Limits

| Limit          | Speed    |
| -------------- | -------- |
| VLO (extend)   | 220 KIAS |
| VLO (retract)  | 200 KIAS |
| VLE (extended) | 220 KIAS |

***

### Revision History

| Rev | Date        | Note                                                                                                                                                                       | Author    |
| --- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- |
| 1.0 | 29 Mar 2026 | Initial checklist issue                                                                                                                                                    | ACVA Team |
| 1.1 | 23 May 2026 | Accuracy pass: title corrected to Bombardier CRJ-900 (still official designation), hydraulic pumps (six pumps across three systems), CF34-8C5 ITT start limit 815 °C added | ACVA Team |

***

<Note>
  ### Disclaimer

  These checklists are **abridged adaptations** of Bombardier public-domain procedures for simulation. They do not replicate proprietary FCOM text and must **not** be used for commercial operations.
</Note>
