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

- **ID:** `medical/insulin-u100-u40-syringe`
- **领域:** medical
- **类别:** data_error
- **错误码:** `MED-ERR-0403`
- **验证级别:** ai_generated
- **修复率:** 89%

## 根因

AI混淆了胰岛素注射器类型：U-40注射器校准用于40单位/mL胰岛素，而U-100注射器用于100单位/mL。使用U-40注射器注射U-100胰岛素时，每单位标记实际输送2.5倍剂量，可能导致严重低血糖。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| BD Ultra-Fine 6mm | active | — | — |
| NovoFine 4mm | active | — | — |
| EasyTouch U-100 | active | — | — |

## 解决方案

1. ```
   Always verify the insulin concentration (U-100 or U-40) on the vial and match it to the syringe markings. If only U-40 syringes are available for U-100 insulin, calculate the correct volume: (desired units / 100) * 40 = units to draw on U-40 syringe. Example: 10 units U-100 insulin = draw 4 units on U-40 syringe. Document in the patient's insulin log.
   ```
2. ```
   Use a standardized color-coding system: U-100 syringes have orange caps, U-40 syringes have red caps. Train all nursing staff to check cap color before drawing insulin. Implement a barcode scanning system at the bedside that rejects mismatched syringe/insulin pairs.
   ```
3. ```
   For patients at home, prescribe only one insulin concentration and matching syringes. Provide a written dosing chart with clear instructions: 'Use only the blue syringe for your insulin. If you have a red syringe, do not use it—call your pharmacy.'
   ```

## 无效尝试

- **** — Assuming all insulin syringes are the same and using whichever is available without checking concentration markings. (85% 失败率)
- **** — Converting doses manually by multiplying units by 2.5, but then using a U-100 syringe anyway due to habit. (65% 失败率)
- **** — Telling the patient to 'use the same number of units' regardless of syringe type, ignoring the concentration difference. (90% 失败率)
