why is simv not preferred weaning mode

Reading File
Finding Sources
Finding Sources
Searching PubMed

SIMV weaning mechanical ventilation

Searching the Web

why SIMV not preferred weaning mode mechanical ventilation

Quick answer

Why SIMV is not preferred as a weaning mode

Bottom line: SIMV consistently produces the worst weaning outcomes of the standard techniques (SIMV vs. pressure support ventilation vs. T-piece trials). As the Washington Manual puts it, "SIMV has the poorest weaning outcomes of all techniques" - though neither T-piece nor PSV has been definitively proven superior to the other.

The main reasons

  1. Added, not reduced, respiratory work. Between mandatory breaths, the patient's spontaneous breaths draw against the demand-flow valve/circuit, which imposes extra inspiratory work - especially without adequate pressure support added. This can actually increase respiratory muscle load rather than progressively unloading it.
  2. Respiratory muscle fatigue instead of conditioning. The intent of SIMV weaning is to have the patient take over more work as the mandatory rate is stepped down. In practice, the mixture of full mechanical breaths and unsupported spontaneous breaths disrupts the normal, coordinated respiratory pattern and can fatigue rather than train the respiratory muscles - the opposite of what a "graded exercise" weaning strategy is supposed to achieve.
  3. Slower/less reliable liberation. Multiple randomized trials (going back to Brochard 1994, Esteban 1995, and summarized in Hess's review "Ventilator Modes Used in Weaning") found SIMV had the longest weaning duration and highest failure rates compared with PSV or once-daily spontaneous breathing (T-piece) trials.
  4. Population-specific data agrees. In preterm infants, SIMV showed worse mean airway pressure, longer time to extubation, longer post-extubation CPAP need, and higher extubation failure versus pressure-support/volume-targeted modes. In ARDS and post-liver-transplant patients, SIMV also prolonged weaning time and required more ventilator adjustments.
  5. Patient-ventilator asynchrony. Because mandatory breaths are time- or patient-triggered but delivered at a fixed set volume/pressure regardless of the patient's own effort on that breath, and spontaneous breaths in between get little to no support, dyssynchrony between the patient's own drive and the ventilator's cycling is more likely than with PSV or a straightforward T-piece trial.

Sources

  • The SIMV mode is designed to reduce mandatory breaths gradually while the patient does more spontaneous work, but randomized trials show this is the least efficient weaning technique compared with pressure support or T-piece trials - Washington Manual of Medical Therapeutics, "Liberation From Mechanical Ventilation."
  • "The great advantage of SIMV over IMV is that it provides for increased patient comfort... [but] if the rate is set too [low], patients may fatigue" - Morgan and Mikhail's Clinical Anesthesiology, 7th ed.
  • Weaning in critically ill neurological patients is achieved via decreasing SIMV mandatory rate or, more commonly, using PSV instead - Bradley and Daroff's Neurology in Clinical Practice.
  • Corroborated by StatPearls (NCBI Bookshelf) and Hess D, "Ventilator Modes Used in Weaning" (PMID 11742968), both noting SIMV showed the poorest weaning performance in RCTs across adult and preterm populations.
In short: SIMV was popular historically (once used in ~90% of ICUs for weaning), but head-to-head trials showed it prolongs ventilator time and lowers extubation success compared with pressure support ventilation or spontaneous breathing/T-piece trials, so current practice favors PSV or SBT-based weaning protocols instead.

use as reference for your answer

Reading File
Running Command

cd /tmp/workspace/attachments/990b316c-88f3-4209-baa7-fd509d33fffb/ && python3 -c " import pdfplumber for fn in ['Tobin_Principles_and_Practice_of_Mechanical_Ventilation_3E_2012-1330-1370.pdf','Irwin_and_Rippes_Intensive_Care_Medicine_2Vol_Set_9E_2024_2-5665-5689.pdf']: with pdfplumber.open(fn) as pdf: print(fn, 'pages:', len(pdf.pages)) "

Running Command

cd /tmp/workspace/attachments/990b316c-88f3-4209-baa7-fd509d33fffb/ && python3 -c " import pdfplumber, re def search(fn, terms): with pdfplumber.open(fn) as pdf: full = [] for i, page in enumerate(pdf.pages): t = page.extract_text() or '' full.append((i, t)) return full for fn in ['Tobin_Principles_and_Practice_of_Mechanical_Ventilation_3E_2012-1330-1370.pdf','Irwin_and_Rippes_Intensive_Care_Medicine_2Vol_Set_9E_2024_2-5665-5689.pdf']: print('='*30, fn, '='*30) pages = search(fn, None) for i, t in pages: if 'SIMV' in t: print('--- page idx', i, '---') # print lines containing SIMV plus context lines = t.split(chr(10)) for j, l in enumerate(lines): if 'SIMV' in l: start = max(0, j-2) end = min(len(lines), j+3) print(chr(10).join(lines[start:end])) print('...') " > /tmp/workspace/simv_extract.txt 2>&1 wc -l /tmp/workspace/simv_extract.txt

Reading File
Running Command

cd /tmp/workspace/attachments/990b316c-88f3-4209-baa7-fd509d33fffb/ && python3 -c " import pdfplumber fn = 'Tobin_Principles_and_Practice_of_Mechanical_Ventilation_3E_2012-1330-1370.pdf' with pdfplumber.open(fn) as pdf: for i, page in enumerate(pdf.pages): t = page.extract_text() or '' print(i, len(t), repr(t[:80])) "

Running Command

cd /tmp/workspace/attachments/990b316c-88f3-4209-baa7-fd509d33fffb/ && python3 -c " import pdfplumber fn = 'Tobin_Principles_and_Practice_of_Mechanical_Ventilation_3E_2012-1330-1370.pdf' with pdfplumber.open(fn) as pdf: for i, page in enumerate(pdf.pages): t = page.extract_text() or '' low = t.lower() if 'intermittent mandatory' in low or 'simv' in low: print('PAGE', i) print(t) print('='*80) " > /tmp/workspace/tobin_simv.txt wc -l /tmp/workspace/tobin_simv.txt

Reading File
Reading File
Running Command

cd /tmp/workspace/attachments/990b316c-88f3-4209-baa7-fd509d33fffb/ && python3 -c " import pdfplumber fn = 'Tobin_Principles_and_Practice_of_Mechanical_Ventilation_3E_2012-1330-1370.pdf' with pdfplumber.open(fn) as pdf: for i in [29,30,31,32,33,34]: t = pdf.pages[i].extract_text() or '' print('PAGE', i) print(t) print('='*80) " > /tmp/workspace/tobin_pages_29_34.txt wc -l /tmp/workspace/tobin_pages_29_34.txt

Reading File
Running Command

cd /tmp/workspace/attachments/990b316c-88f3-4209-baa7-fd509d33fffb/ && python3 -c " import pdfplumber fn = 'Tobin_Principles_and_Practice_of_Mechanical_Ventilation_3E_2012-1330-1370.pdf' with pdfplumber.open(fn) as pdf: for i in [30,31,32,33,34,35,36]: t = pdf.pages[i].extract_text() or '' print('PAGE', i) print(t) print('='*80) " > /tmp/workspace/tobin_head_to_head.txt grep -n -i "IMV\|SIMV\|Brochard\|Esteban" /tmp/workspace/tobin_head_to_head.txt | head -60

Reading File

Why SIMV is not preferred for ventilator weaning

Using the two reference texts you provided (Tobin's Principles and Practice of Mechanical Ventilation, 3rd ed., Ch. 58 "Weaning from Mechanical Ventilation," and Irwin & Rippe's Intensive Care Medicine, 9th ed.), the case against SIMV as a weaning mode rests on both the physiologic mechanism and the head-to-head trial data.

1. The physiologic problem: the respiratory centers can't "load-share" breath-by-breath

SIMV alternates fixed mechanical breaths with unsupported spontaneous breaths. Tobin explains that the respiratory control centers are essentially preprogrammed and cannot adjust output on a breath-by-breath basis to match the changing load that SIMV imposes:
"...respiratory center output is preprogrammed and unable to adapt to breath-by-breath changes in load as occur with IMV. Consequently, IMV may contribute to the development of respiratory muscle fatigue or prevent recovery from it." - Tobin, Principles and Practice of Mechanical Ventilation, 3E, p. 1338
Irwin & Rippe describe the same mechanical downside from the resistance side of the equation:
"SIMV systems expose patients to increases in airway resistance during spontaneous efforts that occur between machine breaths." - Irwin & Rippe's Intensive Care Medicine, 2-Vol Set, 9E
So between mandatory breaths, the patient is drawing against the demand valve and circuit resistance largely unassisted - this doesn't rest or reliably recondition the diaphragm the way a true spontaneous breathing trial or graded pressure-support reduction does. Instead it superimposes irregular loading on muscles that may already be fatigued, which can worsen or perpetuate fatigue rather than resolve it.

2. The trial evidence: SIMV loses head-to-head every time

Tobin's chapter reviews the two landmark RCTs that established this:
  • Brochard et al. randomized 109 difficult-to-wean patients (who had already failed an initial T-tube trial) to pressure support, once-daily T-tube trials, or IMV. Both weaning failure rates and time-to-wean were worse with IMV than with pressure support; weaning was slowest with IMV of the three arms.
  • Esteban et al. ran a similarly designed RCT (130 patients, 4 arms: IMV, PS, once-daily T-tube, intermittent spontaneous breathing trials). Weaning was roughly three times faster with once-daily T-tube trials and about twice as fast with spontaneous breathing trials than with IMV.
Tobin's summary: "These two studies concur in finding that IMV was the [slowest/least effective]" mode of the options tested (p. 1338-1339).
Irwin & Rippe's chapter draws the direct practical conclusion from this same evidence base:
"Results of randomized controlled trials comparing methods for weaning subjects from MV show that both SBT and PSV trials are superior to SIMV trials. Therefore, we strongly discourage the use of SIMV for weaning." - Irwin & Rippe's Intensive Care Medicine, 9E
Notably, neither book found convincing evidence that SBT (T-tube/spontaneous breathing trials) is superior to PSV or vice versa - the consistent finding across both references is specifically that SIMV is the outlier that underperforms both of the other strategies, not that one particular alternative is "the" best mode.

Bottom line

SIMV was originally designed as the "ideal" gradual weaning mode (stepping the mandatory rate down while the patient does more spontaneous work), but it doesn't work as intended in practice: the unsupported spontaneous breaths between mandatory breaths impose extra, irregular respiratory work that the brainstem's respiratory drive can't compensate for breath-to-breath, promoting fatigue rather than reconditioning. Randomized trials (Brochard 1994, Esteban 1995) confirmed this empirically - IMV/SIMV produced longer weaning times and higher failure rates than either pressure-support weaning or T-tube/spontaneous breathing trials, which is why current guidance (as stated explicitly in Irwin & Rippe) discourages using SIMV as a weaning strategy.
This is a shared conversation. Sign in to Orris to start your own chat.