Coronary artery bypass grafting in detail from this pdf
cd /home/daytona/workspace/attachments/9d125dc0-56ac-40e8-9455-41664da03e62/ && python3 -c " from pypdf import PdfReader reader = PdfReader('Myocardial Revascularization.pdf') print(f'Total pages: {len(reader.pages)}') # Print first page to see structure text = reader.pages[0].extract_text() print(text[:2000]) "
python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/9d125dc0-56ac-40e8-9455-41664da03e62/Myocardial Revascularization.pdf') # Extract all text full_text = '' for i, page in enumerate(reader.pages): full_text += f'\n\n=== PAGE {i+1} ===\n' full_text += page.extract_text() # Save to file with open('/home/daytona/workspace/cabg_text.txt', 'w') as f: f.write(full_text) print(f'Total characters: {len(full_text)}') print('Done') " 2>/dev/null
| Score | Primary Use |
|---|---|
| STS Score | North America |
| EuroSCORE | Europe |
| Agent | Intubating dose | Duration | Hemodynamic notes |
|---|---|---|---|
| Pancuronium | 0.08-0.12 mg/kg | 60-120 min | Strong vagolytic, releases norepinephrine; tachycardia risk |
| Vecuronium | 0.08-0.2 mg/kg | 45-90 min | Minimal hemodynamic effects |
| Cisatracurium | 0.15-0.2 mg/kg | Intermediate | Hoffman elimination; organ-independent |
| Associated Finding | Therapy | Dosage |
|---|---|---|
| Hypertension + tachycardia | Deepen anesthesia, IV beta-blockade | Esmolol 20-100 mg, metoprolol 0.5-2.5 mg, labetalol 2.5-10 mg |
| Hypertension + tachycardia | IV nitroglycerin | 10-500 µg/min |
| Normotension + tachycardia | Ensure adequate anesthesia, IV beta-blockade | As above |
| Hypertension + normal HR | Deepen anesthesia, IV NTG or vasodilator | Per response |
Compare OPCAB vs on-pump CABG outcomes and anesthetic considerations
python3 -c " with open('/home/daytona/workspace/cabg_text.txt', 'r') as f: text = f.read() # Find all OPCAB sections import re lines = text.split('\n') opcab_lines = [] for i, line in enumerate(lines): if any(kw in line.upper() for kw in ['OPCAB','OFF-PUMP','OFF PUMP','OFFPUMP','ROOBY','CORONARY TRIAL','GOPCABE','CORONARY ARTERY BYPASS PUMP']): start = max(0, i-2) end = min(len(lines), i+8) opcab_lines.append(f'--- Line {i} ---') opcab_lines.extend(lines[start:end]) print('\n'.join(opcab_lines[:600])) "
python3 -c " with open('/home/daytona/workspace/cabg_text.txt', 'r') as f: text = f.read() lines = text.split('\n') # Get lines 3302 to 3500 for remaining OPCAB outcome data print('\n'.join(lines[3300:3500])) " 2>/dev/null
"off-pump" AND "coronary artery bypass" AND outcomes
python3 -c " with open('/home/daytona/workspace/cabg_text.txt', 'r') as f: text = f.read() lines = text.split('\n') # Get ROOBY trial and conversion-to-CPB specific content, lines 3360-3450 print('\n'.join(lines[3355:3440])) " 2>/dev/null
PMID: 38626442
PMID: 34792312
| Target Vessel | Maneuver | Primary Hemodynamic Impact |
|---|---|---|
| LAD / diagonals | Anterior displacement | Moderate: reduces SV ~10-15%, increases filling pressures mildly |
| PDA (inferior wall) | Verticalization to 90° | Marked: SV -36%, CI -45%, MAP -18%, CVP +66% |
| Circumflex / obtuse marginals | Verticalization + lateral displacement | Most severe: coronary flow in CX distribution -50%, SV -44%, CO -32%, MAP -26% |
| Outcome | OPCAB | On-Pump CABG | Quality of Evidence |
|---|---|---|---|
| 30-day mortality | No difference | No difference | High |
| Long-term mortality | May be higher | Reference | Moderate |
| Short-term stroke | Lower | Reference | High |
| Atrial fibrillation | Lower | Reference | High |
| MI | No difference | No difference | Moderate |
| Graft patency | Lower (incomplete revascularization risk) | Better | Moderate |
| Reintervention | Higher | Reference | High |
| Transfusion | Lower | Reference | High |
| Respiratory infection | Lower | Reference | Moderate |
| Inotrope requirement | Lower | Reference | High |
| Ventilation duration | Shorter (-3.4 h) | Reference | Moderate |
| Hospital LOS | Shorter (-1 day) | Reference | Moderate |
| Neurocognition (2-6 months) | Better | Reference | Moderate |
| Neurocognition (12 months) | No difference | No difference | Moderate |
| Renal dysfunction | No difference | No difference | Moderate |
| Domain | On-Pump CABG | OPCAB |
|---|---|---|
| CPB rescue | CPB already running | CPB must always be immediately available for emergency conversion |
| Hemodynamic management | More stable once on bypass | Active management required during cardiac positioning - Trendelenburg, volume loading, vasopressors |
| Temperature regulation | Heat exchanger on CPB controls temperature | Patient at risk for hypothermia; room temperature adjustment + active warming devices required |
| Heparin dosing | Full dose: 300-400 IU/kg, ACT >480s | Variable: low-dose (100-200 IU/kg, ACT 250-300s) or full-dose per surgeon preference; measure ACT every 30 min |
| Antifibrinolytics | Epsilon-aminocaproic acid or tranexamic acid given routinely | NOT used in OPCAB (no CPB circuit contact activation) |
| PAC use | Selective | More commonly used in OPCAB due to posterior wall positioning - large v waves alert to ischemic MR |
| Temperature monitoring | Core + brain (nasopharyngeal/tympanic) | Bladder temperature alone is sufficient |
| Ventilation | Lungs deflated on CPB (or continued low-volume ventilation) | Low tidal volume, no PEEP during LIMA dissection (reduces mediastinal movement) |
| Graft spasm prevention | NTG for radial artery grafts; papaverine by surgeon | Same; note papaverine injected retrograde into LIMA frequently causes hypotension |
| Neuraxial technique | TEA feasible; heparin timing well-defined around CPB | TEA feasible for awake OPCAB; concerns about subsequent heparinization and catheter removal timing; antiplatelet drugs often continued to day of surgery - may preclude neuraxial placement |
Heart displacement/verticalization triggers:
→ ↓↓ Stroke volume + Cardiac index
→ ↑↑ CVP, RAP, PAP, PCWP
→ Large V waves (ischemic MR)
→ New RWMAs on TEE
→ ST changes, ECG amplitude loss
Anesthesiologist's Response:
1. Trendelenburg positioning (head-down) → augments preload, partially corrects SV
2. Volume administration
3. Vasopressors (phenylephrine) → maintain CPP during anastomosis
4. Inotropes (dobutamine, milrinone) if CO remains low → used in 79% of posterior wall cases (Mishra et al.)
5. Maintain MAP ~60 mmHg during proximal aortic anastomosis
6. NTG to treat coronary spasm or ischemia
7. If irreversible: emergent conversion to CPB
| Clinical Scenario | Preferred Approach | Reason |
|---|---|---|
| Multivessel complex CAD, experienced surgeon | On-pump CABG | Complete revascularization, better long-term outcomes, lower reintervention |
| Severely calcified ascending aorta | OPCAB (no-touch) | Avoids embolic stroke from aortic cross-clamp |
| Elderly high-risk patient, comorbid renal/pulmonary disease | OPCAB | Avoids CPB-related morbidity |
| Single-vessel LAD disease | OPCAB MIDCAB | Least hemodynamic perturbation, faster recovery |
| Emergency/acute decompensation | On-pump CABG | Stability of CPB circuit, no time for learning curve |
| Poor LV function requiring multiple posterior grafts | On-pump CABG | Cannot tolerate verticalization hemodynamics |
Recent evidence update: A 2024 meta-analysis of 28 RCTs (n=16,090) [PMID 38626442] found OPCAB reduces short-term stroke (OR 0.74, high-certainty evidence) but increases mid-term reintervention (RR 1.49) and long-term mortality (RR 1.09, moderate certainty) - findings that were not apparent in earlier smaller meta-analyses cited in the textbook. This reinforces that OPCAB's short-term procedural advantages do not translate into long-term survival benefit and may be reversed over time due to incomplete revascularization.