Innovenergy_trunk/csharp/Lib/Units/Current.cs

19 lines
537 B
C#

using InnovEnergy.Lib.Units.Generator;
namespace InnovEnergy.Lib.Units;
[Generate]
public readonly partial struct Current
{
public static String Unit => "A";
public static String Symbol => "I";
public Current(Decimal value) => Value = value;
// P=UI
public static Power operator *(Current current, Voltage voltage) => new Power(current.Value * voltage.Value);
// U=RI
public static Voltage operator *(Current current, Resistance resistance) => new Voltage(resistance.Value* current.Value);
}