Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add I ranges between 1 and 9. #181

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add I ranges between 1 and 9.
  • Loading branch information
PeterKraus committed Sep 20, 2024
commit e746bb2ad2a60c4081914d88e5f59a186760b7d9
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
Loading