# AI使用实际体重而非理想体重计算新生儿呼吸机潮气量，导致早产儿容量损伤风险

- **ID:** `medical/neonatal-vent-tidal-volume`
- **领域:** medical
- **类别:** data_error
- **错误码:** `VENT_TV_NEONATE`
- **验证级别:** ai_generated
- **修复率:** 82%

## 根因

新生儿潮气量应基于理想体重（按胎龄调整）以避免容量损伤；使用实际体重会高估水肿或生长受限婴儿的肺容量。

## 解决方案

1. ```
   Calculate tidal volume using ideal body weight: for preterm infants, use 4-6 mL/kg of estimated dry weight (e.g., using Lubchenco growth curves or Fenton chart). Example: for a 28-week preterm infant with actual weight 1.2 kg but ideal weight 1.0 kg, set tidal volume to 5 mL × 1.0 kg = 5 mL.
   ```
2. ```
   Use volume-targeted ventilation modes to automatically adjust tidal volume based on exhaled volume, not set weight.
   ```

## 无效尝试

- **** — Neonatal lungs have different compliance; using adult formula leads to 10-15 mL/kg, causing barotrauma and volutrauma. (95% 失败率)
- **** — Overdistends alveoli in preterm infants with surfactant deficiency, causing pneumothorax and bronchopulmonary dysplasia. (90% 失败率)
- **** — A 500g preterm infant would receive 100 mL/kg, causing severe volutrauma; a 4kg term infant would receive 12.5 mL/kg, which may be inadequate. (99% 失败率)
