Skip to content

Commit 97acad2

Browse files
committed
Fix DopeDealer dose range docs and default min_implantation_dose
The v0.13.1 LUT extended the DopeDealer dose range down to 1e12 cm^-2 but the docstring and default optimization bound still said 1e13. Update both to 1e12 so the documented and default-optimized range match the table extents.
1 parent 37fba05 commit 97acad2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/src/piezod/cantilever_implantation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- "dopedealer": DopeDealer lookup table (ionImplantLookupTable_dopedealer.h5)
1313
- Dopants: B, P, As
1414
- Anneal types: "inert" (1), "dry_o2" (2)
15-
- Energy: 10-120 keV, Dose: 1e13-5e16 cm^-2
15+
- Energy: 10-120 keV, Dose: 1e12-5e16 cm^-2
1616
- Temperature: 900-1100C, Time: 15-150 min
1717
1818
For all conditions, a 250A protection oxide layer is grown before the ion
@@ -72,7 +72,7 @@
7272
"max_annealing_temp": 273.15 + 1100,
7373
"min_implantation_energy": 10,
7474
"max_implantation_energy": 120,
75-
"min_implantation_dose": 1e13,
75+
"min_implantation_dose": 1e12,
7676
"max_implantation_dose": 5e16,
7777
},
7878
}

0 commit comments

Comments
 (0)