# AI使用患者实际体重而非理想体重计算多巴胺输注的IV泵速率，导致肥胖患者潜在过量

- **ID:** `medical/iv-pump-rate-miscalculation-weight`
- **领域:** medical
- **类别:** runtime_error
- **错误码:** `DOPAMINE_DOSE_IBW`
- **验证级别:** ai_generated
- **修复率:** 91%

## 根因

多巴胺用于血流动力学支持的剂量基于理想体重（IBW），因其作用于心脏和血管而非脂肪组织。在肥胖患者（BMI>30）中使用实际体重可能导致剂量比预期高2-3倍。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| IV-pump:Alaris-PCU-2024 | active | — | — |
| IV-pump:Baxter-Sigma-Spectrum-2023 | active | — | — |

## 解决方案

1. ```
   使用Devine公式计算理想体重：男性：IBW（公斤）= 50 + 2.3 *（身高英寸 - 60）。女性：IBW（公斤）= 45.5 + 2.3 *（身高英寸 - 60）。使用此IBW进行多巴胺剂量计算。示例：对于身高5英尺6英寸的女性：IBW = 45.5 + 2.3 *（66 - 60）= 45.5 + 13.8 = 59.3公斤。对于5微克/公斤/分钟的多巴胺滴注：剂量 = 5 * 59.3 = 296.5微克/分钟。根据浓度转换为毫升/小时。
   ```
2. ```
   如果患者实际体重超过IBW的30%，使用IBW进行初始给药，并根据临床反应（血压、心率）调整剂量。监测过量迹象（心动过速、高血压、心律失常）。如果患者体重显著变化，重新计算。
   ```
3. ```
   使用明确要求IBW或根据身高和性别自动计算IBW的基于体重的剂量计算器。许多医院电子病历（EMR）具有此功能；确保选择了正确的体重类型。
   ```

## 无效尝试

- **Assuming that all weight-based medications use actual body weight** — Many vasoactive drugs (dopamine, dobutamine, norepinephrine) are dosed on IBW because they do not distribute into fat. Using actual weight in obesity causes overdose. (70% 失败率)
- **Using a 'standard' weight of 70 kg for all adult patients to simplify calculations** — This ignores both underweight and obese patients, leading to underdosing in small patients and overdosing in large patients. IBW calculation is patient-specific. (65% 失败率)
- **Believing that the IV pump's built-in drug library automatically corrects for weight** — The pump's drug library requires the user to input the correct weight (IBW vs actual). If the user enters actual weight, the pump calculates based on that input, not automatically adjusting to IBW. (50% 失败率)
