# AI指示糖尿病患者使用U-40胰岛素注射器注射U-100胰岛素，导致剂量误差十倍

- **ID:** `medical/insulin-mix-up-u40-u100`
- **领域:** medical
- **类别:** runtime_error
- **错误码:** `INSULIN_MIXUP_U40_U100`
- **验证级别:** ai_generated
- **修复率:** 90%

## 根因

U-40（40单位/毫升）和U-100（100单位/毫升）胰岛素需要匹配的注射器；使用U-40注射器注射U-100胰岛素时，每单位标记实际给药量为预期剂量的2.5倍，存在严重低血糖风险。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| insulin:Humulin-R-U100-2024 | active | — | — |
| insulin:Novolin-N-U40-2023 | active | — | — |

## 解决方案

1. ```
   始终检查胰岛素瓶标签上的浓度（U-40或U-100），并匹配注射器桶标记。仅使用明确标有该浓度的注射器。对于U-100胰岛素，仅使用U-100注射器。对于U-40胰岛素，仅使用U-40注射器。如果不确定，丢弃并获取正确的注射器。
   ```
2. ```
   如果只有U-40注射器可用于U-100胰岛素，计算正确体积：将所需胰岛素单位除以2.5。例如，要注射10单位U-100胰岛素，在U-40注射器上抽取到'4单位'标记（10 / 2.5 = 4）。清晰记录此计算并由第二人复核。
   ```
3. ```
   尽可能使用胰岛素笔代替注射器；笔预填充了正确浓度，消除了注射器不匹配错误。
   ```

## 无效尝试

- **Assuming all insulin syringes are interchangeable if they have the same needle gauge** — Needle gauge does not indicate concentration; the syringe barrel is calibrated for a specific concentration (U-40 vs U-100). Using wrong barrel causes volumetric mismatch. (60% 失败率)
- **Relying on memory or visual estimate of 'units' without checking syringe label** — Unit markings on U-40 and U-100 syringes look similar but represent different volumes; a '10 unit' mark on U-40 syringe delivers 0.25 mL, while on U-100 it delivers 0.1 mL. (70% 失败率)
- **Believing that a conversion chart is unnecessary because the patient 'always uses the same syringe'** — Patients may receive different insulin types (e.g., switching from animal to human insulin) requiring different concentrations, but continue using old syringes. (50% 失败率)
