From 1dca8665e4401436188a765c633748a5704f202a Mon Sep 17 00:00:00 2001
From: Markus Quaritsch <markus.quaritsch@tugraz.at>
Date: Tue, 28 Jul 2020 07:49:17 +0200
Subject: [PATCH] correcting SI units of Volt type

---
 VectoCommon/VectoCommon/Utils/SI.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VectoCommon/VectoCommon/Utils/SI.cs b/VectoCommon/VectoCommon/Utils/SI.cs
index 55c8b582fd..be0482901c 100644
--- a/VectoCommon/VectoCommon/Utils/SI.cs
+++ b/VectoCommon/VectoCommon/Utils/SI.cs
@@ -1090,7 +1090,7 @@ namespace TUGraz.VectoCommon.Utils
 	/// </summary>
 	public class Volt : SIBase<Volt>
 	{
-		private static readonly int[] Units = { 1, 2, -2, -1, 0, 0, 0 };
+		private static readonly int[] Units = { 1, 2, -3, -1, 0, 0, 0 };
 		private Volt(double val) : base(val, Units) { }
 
 		public override string UnitString { get { return "V"; } }
-- 
GitLab