Skip to content

Commit 7e012ec

Browse files
g-kimbellPeterKraus
authored andcommitted
Add temperature resolution (#247)
1 parent 56d9c64 commit 7e012ec

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/yadg/extractors/eclab/techniques.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1789,6 +1789,8 @@ def dev_derived(
17891789
# εr = ε/ε0
17901790
# ε -> [F]/[m] = [A]*[s]/[V]
17911791
return val * rtol_VI
1792+
elif unit in {"°C"}:
1793+
return 1e-6 # Based on quantization error in measurements
17921794
else:
17931795
raise RuntimeError(
17941796
f"Could not get resolution of quantity {name!r} with unit {unit!r}."

0 commit comments

Comments
 (0)