Innovenergy_trunk/csharp/Lib/Units/Frequency.generated.cs

97 lines
3.3 KiB
C#
Raw Normal View History

2023-02-26 14:43:53 +00:00
#nullable enable // Auto-generated code requires an explicit '#nullable' directive in source.
2023-02-26 18:19:16 +00:00
#define Equal
using static System.Math;
using System.Text.Json;
using System.Text.Json.Serialization;
using InnovEnergy.Lib.Utils;
2023-02-26 14:43:53 +00:00
namespace InnovEnergy.Lib.Units;
using T = Frequency;
[JsonConverter(typeof(FrequencyConverter))]
2023-02-26 14:43:53 +00:00
public readonly partial struct Frequency
{
public Decimal Value { get; }
public override String ToString() => Value.RoundToSignificantDigits(Units.DisplaySignificantDigits) + Unit;
2023-02-26 14:43:53 +00:00
// scalar multiplication
public static T operator *(Decimal scalar, T t) => new T(scalar * t.Value);
public static T operator *(T t, Decimal scalar) => new T(scalar * t.Value);
public static T operator /(T t, Decimal scalar) => new T(t.Value / scalar);
// parallel
2023-02-26 18:19:16 +00:00
#if Sum
public static T operator |(T left, T right) => new T(left.Value + right.Value);
2023-02-26 14:43:53 +00:00
public static T operator -(T t) => new T(-t.Value);
2023-02-26 18:19:16 +00:00
#elif Mean
public static T operator |(T left, T right) => new T((left.Value + right.Value)/2m);
2023-02-26 18:19:16 +00:00
#elif Equal
public static T operator |(T left, T right)
2023-02-26 18:19:16 +00:00
{
var d = Max(Abs(left.Value), Abs(right.Value));
if (d == 0m)
2023-02-26 18:19:16 +00:00
return new T(0m);
var relativeError = Abs(left.Value - right.Value) / d;
const Decimal maxRelativeError = 0.05m;
if (relativeError > maxRelativeError)
throw new Exception($"{nameof(left)} and {nameof(right)} must be approximately equal.\n" +
$"Difference > {maxRelativeError * 100}% detected\n" +
$"{nameof(left)} : {left}\n" +
$"{nameof(right)}: {right}");
return new T((left.Value + right.Value) / 2m);
}
#endif
2023-02-26 14:43:53 +00:00
// compare
public static Boolean operator ==(T left, T right) => left.Value == right.Value;
public static Boolean operator !=(T left, T right) => left.Value != right.Value;
public static Boolean operator > (T left, T right) => left.Value > right.Value;
public static Boolean operator < (T left, T right) => left.Value < right.Value;
public static Boolean operator >=(T left, T right) => left.Value >= right.Value;
public static Boolean operator <=(T left, T right) => left.Value <= right.Value;
// conversion
public static implicit operator T(Decimal d) => new T(d);
public static implicit operator T(Double d) => new T((Decimal)d);
public static implicit operator T(Int32 i) => new T(i);
public static implicit operator Decimal(T t) => t.Value;
// equality
public Boolean Equals(T other) => Value == other.Value;
public override Boolean Equals(Object? obj) => obj is T other && Equals(other);
public override Int32 GetHashCode() => Value.GetHashCode();
2023-02-26 18:19:16 +00:00
}
internal class FrequencyConverter : JsonConverter<Frequency>
{
public override Frequency Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
return new Frequency(reader.GetDecimal());
}
public override void Write(Utf8JsonWriter writer, Frequency value, JsonSerializerOptions options)
{
var rounded = value.Value.RoundToSignificantDigits(Units.JsonSignificantDigits);
writer.WriteNumberValue(rounded);
}
}