From 02b6c25d400638443b8b6a65554cba45a676e851 Mon Sep 17 00:00:00 2001 From: nickishch Date: Sat, 12 Oct 2024 19:17:19 +0200 Subject: [PATCH] changed units of current from statA to A --- swiftsimio/metadata/unit/unit_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swiftsimio/metadata/unit/unit_types.py b/swiftsimio/metadata/unit/unit_types.py index d0c803cd..8571f8c9 100644 --- a/swiftsimio/metadata/unit/unit_types.py +++ b/swiftsimio/metadata/unit/unit_types.py @@ -9,7 +9,7 @@ "Unit mass in cgs (U_M)": unyt.g, "Unit length in cgs (U_L)": unyt.cm, "Unit time in cgs (U_t)": unyt.s, - "Unit current in cgs (U_I)": unyt.statA, + "Unit current in cgs (U_I)": unyt.A, "Unit temperature in cgs (U_T)": unyt.K, } @@ -27,7 +27,7 @@ unyt.Gpc, ], "time": [unyt.s, unyt.year, unyt.Myr, unyt.Gyr], - "current": [unyt.statA], + "current": [unyt.A], "temperature": [unyt.K], }