From 8bd6eede9ff65341ea6f9d2e8f29a83aa32ba710 Mon Sep 17 00:00:00 2001 From: Christopher Mayes <31023527+ChristopherMayes@users.noreply.github.com> Date: Tue, 8 Aug 2023 16:28:10 -0700 Subject: [PATCH] reorder --- pmd_beamphysics/units.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmd_beamphysics/units.py b/pmd_beamphysics/units.py index eb064d4..63ee5e7 100644 --- a/pmd_beamphysics/units.py +++ b/pmd_beamphysics/units.py @@ -251,8 +251,8 @@ def dimension_name(dim_array): 'eV/c' : pmd_unit('eV/c', e_charge/c_light, 'momentum'), 'eV/m' : pmd_unit('eV/m', e_charge, (1, 1, -2, 0, 0, 0, 0)), 'W' : pmd_unit('W', 1, (2, 1, -3, 0, 0, 0, 0)), + 'W/rad^2' : pmd_unit('W/rad^2', 1, (2, 1, -3, 0, 0, 0, 0)), 'W/m^2' : pmd_unit('W/m^2', 1, (0, 1, -3, 0, 0, 0, 0)), - 'W/rad^2' : pmd_unit('W/rad^2', 1, (2, 1, -3, 0, 0, 0, 0)), 'T' : pmd_unit('T', 1, 'magnetic_field') }