# AI使用实际体重而非调整体重计算肥胖患者的静脉肝素输注速率，导致aPTT过高

- **ID:** `medical/iv-pump-rate-miscalculation-obesity`
- **领域:** medical
- **类别:** medication_error
- **错误码:** `ANTICOAG-042`
- **验证级别:** ai_generated
- **修复率:** 87%

## 根因

肥胖患者（BMI>30）的肝素剂量应使用调整体重（ABW = IBW + 0.4*(实际体重 - IBW)）或固定剂量方案；使用实际体重会导致aPTT过高（>100秒）和出血风险增加（大出血率5-10%）。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| CHEST Antithrombotic Guidelines 2021 | active | — | — |
| Epic Willow v2023 | active | — | — |
| Heparin Nomogram v2.0 (institutional) | active | — | — |

## 解决方案

1. ```
   计算调整体重：IBW（男性=50+2.3*(身高英寸-60)；女性=45.5+2.3*(身高英寸-60)）。然后ABW=IBW+0.4*(实际体重-IBW)。使用ABW计算肝素负荷剂量（80单位/公斤）和输注速率（18单位/公斤/小时）。与方案验证。
   ```
2. ```
   使用电子病历计算器，当BMI>30时自动计算ABW。例如Epic SmartPhrase：.HEPARINOBESE。确保药房在发放前验证。
   ```
3. ```
   实施方案：对于BMI>30，使用固定剂量肝素方案（例如5000单位负荷+1000单位/小时输注），6小时监测aPTT。根据aPTT反应调整。
   ```

## 无效尝试

- **** — IBW underestimates volume of distribution for heparin, leading to subtherapeutic aPTT and increased risk of clot progression. Adjusted body weight is evidence-based. (80% 失败率)
- **** — Even reduced bolus with actual weight leads to high infusion rates; steady-state levels become toxic. Must use ABW for both bolus and infusion. (75% 失败率)
- **** — Fixed-dose nomograms are validated for non-obese patients only. For BMI >30, use obesity-specific nomogram (e.g., CHEST guideline). (85% 失败率)
