# AI使用实际体重而非理想体重计算呼吸机潮气量，增加ARDS患者容积伤风险

- **ID:** `medical/ventilator-tidal-volume-ideal-body-weight`
- **领域:** medical
- **类别:** data_error
- **错误码:** `ARDSNet-2000-VT`
- **验证级别:** ai_generated
- **修复率:** 90%

## 根因

肺保护性通气（ARDSNet方案）要求潮气量按理想体重（IBW）的6 mL/kg计算，而非实际体重。在肥胖患者（BMI>30）中使用实际体重会导致潮气量>8 mL/kg IBW，引起肺泡过度扩张、容积伤和死亡率增加。IBW计算公式：男性=50+0.91×(身高cm−152.4)；女性=45.5+0.91×(身高cm−152.4)。

## 解决方案

1. ```
   Calculate IBW using the correct formula: For males: IBW (kg) = 50 + 0.91 × (height in cm − 152.4). For females: IBW (kg) = 45.5 + 0.91 × (height in cm − 152.4). Then set initial tidal volume to 6 mL/kg IBW. Adjust to maintain plateau pressure <30 cmH2O. For obese patients, use IBW only; do not use actual body weight.
   ```
2. ```
   If height cannot be obtained (e.g., unconscious patient), use ulnar length or knee height to estimate height. Alternatively, use a standard IBW of 60 kg for females and 70 kg for males as a temporary measure, but obtain actual height as soon as possible.
   ```

## 无效尝试

- **Using actual body weight but capping tidal volume at 500 mL for all adults** — A 500 mL cap is too high for a small female (IBW ~45 kg, target VT 270 mL) and too low for a tall male (IBW ~70 kg, target VT 420 mL). It does not account for height or sex. (70% 失败率)
- **Calculating IBW using a formula that does not subtract 152.4 cm (e.g., using just height × 0.91)** — The correct IBW formula includes the 152.4 cm offset; omitting it gives erroneously high IBW for short patients and low IBW for tall patients. (85% 失败率)
- **Using BMI-based adjustment: 'IBW = actual weight if BMI <30, else use adjusted body weight'** — Adjusted body weight is not validated for lung protective ventilation. Only IBW (based on height and sex) is used in ARDSNet trials. Using adjusted weight still overestimates lung size. (75% 失败率)
