Skip to content

Commit

Permalink
Add I ranges between 1 and 9. (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterKraus committed Sep 20, 2024
1 parent 7c2f0a1 commit 322b773
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/yadg/extractors/eclab/common/techniques.py
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,15 @@

param_map = {
"I_range": (
("1 A", 9, 1),
("10 mA", 1, 1e-2),
("100 µA", 2, 1e-4),
("1 µA", 3, 1e-6),
("2 A", 4, 2.0),
("1 A", 5, 1.0),
("5 A", 6, 5.0),
("10 A", 7, 10.0),
("20 A", 8, 20.0),
("1 A", 9, 1.0),
("100 mA", 10, 1e-1),
("10 mA", 11, 1e-2),
("1 mA", 12, 1e-3),
Expand Down

0 comments on commit 322b773

Please sign in to comment.