20 lines
533 B
C#
20 lines
533 B
C#
using InnovEnergy.Lib.Units.Generator;
|
|
|
|
namespace InnovEnergy.Lib.Units;
|
|
|
|
|
|
[Sum]
|
|
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);
|
|
|
|
} |