Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion src/yadg/extractors/eclab/mpr_columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
169: ("<f4", "Cs", "µF"),
172: ("<f4", "Cp", "µF"),
173: ("<f4", "Cp⁻²", "µF⁻²"),
174: ("<f4", "<Ewe>", "V"), # This column may conflict with ID 77.
174: ("<f4", "<Ewe>", "V"), # This column may conflict with ID 77 and 6.
178: ("<f4", "(Q-Qo)", "C"),
179: ("<f4", "dQ", "C"),
182: ("<f8", "step time", "s"),
Expand Down Expand Up @@ -181,15 +181,18 @@
501: ("<f4", "|Ece h5|", "V"),
502: ("<f4", "|Ece h6|", "V"),
503: ("<f4", "|Ece h7|", "V"),
878: ("<f8", "Energy ce", "W·h"),
884: ("<f8", "Energy ce discharge", "W·h"),
893: ("<f8", "Capacitance charge", "µF"),
981: ("<u4", "z cycle", None), # 981 % 512 = 469, also z cycle
983: ("<f4", "<Ece>", "V"), # 983 % 512 = 471, also <Ece>
}

# Conflict resolution map. If both the outer and inner column ID are present,
# the meaning of the outer column ID is set to the entry below.
conflict_columns = {
174: {
6: ("<f4", "Phase(Zwe-ce)", "deg"),
77: ("<f4", "Phase(Zwe-ce)", "deg"),
},
}
Expand Down
2 changes: 2 additions & 0 deletions src/yadg/extractors/eclab/mpt_columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,15 @@
"Ece/V": ("Ece", "V"),
"Ecell/V": ("Ecell", "V"),
"Efficiency/%": ("Efficiency", "%"),
"Energy ce/W.h": ("Energy ce", "W·h"),
"Energy we/W.h": ("Energy we", "W·h"),
"Energy charge/W.h": ("Energy charge", "W·h"),
"Energy discharge/W.h": ("Energy discharge", "W·h"),
"Energy ce charge/W.h": ("Energy ce charge", "W·h"),
"Energy ce discharge/W.h": ("Energy ce discharge", "W·h"),
"Energy we charge/W.h": ("Energy we charge", "W·h"),
"Energy we discharge/W.h": ("Energy we discharge", "W·h"),
"Energy we-ce/W.h": ("Energy we-ce", "W·h"),
"Energy we-ce charge/W.h": ("Energy we-ce charge", "W·h"),
"Energy we-ce discharge/W.h": ("Energy we-ce discharge", "W·h"),
"Energy/W.h": ("Energy", "W·h"),
Expand Down
Loading