diff --git a/VectoCore/Utils/SI.cs b/VectoCore/Utils/SI.cs
index 995d8e01bb6d2a3b3fbbeb970db84eb579724529..4f04f766caeb2ac8c21b9674625853912bdf05f3 100644
--- a/VectoCore/Utils/SI.cs
+++ b/VectoCore/Utils/SI.cs
@@ -585,6 +585,14 @@ namespace TUGraz.VectoCore.Utils
 		}
 	}
 
+	public class Ampere : SIBase<Ampere>
+	{
+		private Ampere(double val) : base(new SI(val).Ampere)
+		{
+			Numerator = new[] { Unit.Ampere };
+		}
+	}
+
 
 	/// <summary>
 	/// Base Class for all special SI Classes. Not intended to be used directly.
@@ -841,7 +849,8 @@ namespace TUGraz.VectoCore.Utils
 			d,
 			h,
 			milli,
-			t
+			t,
+			Ampere
 		}
 
 		/// <summary>
@@ -1285,6 +1294,11 @@ namespace TUGraz.VectoCore.Utils
 			[DebuggerHidden] get { return new SI(this, 1000.0, Unit.k); }
 		}
 
+		public SI Ampere
+		{
+			[DebuggerHidden] get { return new SI(this, 1.0, Unit.Ampere); }
+		}
+
 		/// <summary>
 		/// Quantifier for Dezi (1/10)
 		/// </summary>