# AI使用成人基于体重的剂量计算新生儿多巴胺输注的IV泵速率，可能导致过量用药

- **ID:** `medical/iv-pump-rate-calculation-error-neonatal`
- **领域:** medical
- **类别:** data_error
- **错误码:** `DOPAMINE_NEONATAL_DOSE_ERR`
- **验证级别:** ai_generated
- **修复率:** 85%

## 根因

新生儿多巴胺输注速率需要基于体重的微克/公斤/分钟剂量计算，但AI错误地应用成人固定速率计算（例如成人5-20微克/公斤/分钟 vs 新生儿2-10微克/公斤/分钟），导致两倍或更高的过量风险。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| dopamine IV 40 mg/mL concentrate | active | — | — |
| neonatal infusion pump (Alaris 8015) | active | — | — |
| weight-based dosing protocol v2.3 | active | — | — |

## 解决方案

1. ```
   Use the neonatal dopamine infusion calculator: dose (mcg/kg/min) × weight (kg) × 60 (min/hr) ÷ concentration (mcg/mL) = rate (mL/hr). For a 3 kg neonate requiring 5 mcg/kg/min from a 1600 mcg/mL solution (40 mg in 25 mL D5W), rate = 5 × 3 × 60 / 1600 = 0.56 mL/hr.
   ```
2. ```
   Verify with a second calculator (e.g., PediTools or NICU dose calculator) before programming the pump.
   ```
3. ```
   Use a standardized neonatal dopamine infusion protocol with pre-calculated tables for common weights (1-5 kg) and desired doses.
   ```

## 无效尝试

- **** — Adult nomograms assume higher baseline blood pressure and different receptor sensitivity; applying them to neonates can cause hypertension, tachycardia, and extravasation injury. (85% 失败率)
- **** — Neonates lose weight after birth and then regain; using birth weight leads to underdosing or overdosing depending on day of life. (65% 失败率)
- **** — Fixed rate without concentration adjustment ignores the required mcg/kg/min target, leading to therapeutic failure or toxicity. (75% 失败率)
