Innovenergy_trunk/csharp/Lib/Units/Resistance.cs

20 lines
441 B
C#
Raw Normal View History

2023-02-26 14:39:55 +00:00
using InnovEnergy.Lib.Units.Generator;
2023-02-26 14:39:55 +00:00
namespace InnovEnergy.Lib.Units;
// TODO: op parallel is wrong
2023-02-26 18:19:16 +00:00
[Sum]
2023-02-26 14:39:55 +00:00
public readonly partial struct Resistance
{
public static String Unit => "Ω";
public static String Symbol => "R";
public Resistance(Decimal value) => Value = value;
// U=RI
public static Voltage operator *(Resistance resistance, Current current) => new Voltage(resistance.Value * current.Value);
2023-02-26 14:39:55 +00:00
}