SIUnitsArithmetic 1.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package SIUnitsArithmetic --version 1.3.0
NuGet\Install-Package SIUnitsArithmetic -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SIUnitsArithmetic" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SIUnitsArithmetic --version 1.3.0
#r "nuget: SIUnitsArithmetic, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SIUnitsArithmetic as a Cake Addin
#addin nuget:?package=SIUnitsArithmetic&version=1.3.0

// Install SIUnitsArithmetic as a Cake Tool
#tool nuget:?package=SIUnitsArithmetic&version=1.3.0

SI Units library with arithmetic capabilities

SIUnitsArithmetic defines metric system units and provides related arithmetic operations including unit to unit multiplication even with compound units of any combination of basic units, resulting in higher or lower order units (m², 1/m or m/s).

Derived units compund of any combination of basic units (length, time, mass, electric current) are supported, including Newton and Joule are also included.

The demand for such libraries has grown alongside the development of engineering programs that require specific numbers with specified units. My solution eliminates the challenge of managing units by allowing you to focus on the metric types, such as MetricLength or MetricTime. The library takes care of the underlying mathematics, seamlessly handling unit conversions and enabling operations like unit to unit multiplication, resulting in higher or lower order units like m² or 1/m. Consider the Square class below:

Square sq = new Square(2.5.km(), 4.3.km(), 10.005.m());
Console.WriteLine(sq.Volume());

class Square
{
    MetricLength _length;
    MetricLength _width;
    MetricLength -height;

    public Square(MetricLength l, MetricLength w, MetricLength h)
    {
        _length = l; _width = w; _height = h;
    }
    public Metric Volume()
    {
        return _length * _width * _height;
    }
}

The units of the inputs of the constructor won't be a problem anymore. The same class can handle the values with various units (mm, m, cm) and return the same result with correct unit.

Extensiblity

Now custom units can be defined by the users of this library. Example of a Customunit:


// Special unit has to be registered
// call this method only once in the application
// derived degree indicates the exponents of length, time and mass unit components of the custom derived unit.
public void CreateCustomSpecialUnit()
        {
            CustomUnit.RegisterSpecialUnit(new DerivedDegree(2, -2, 2,0), CustomUnit.Instance);
            var customUnit = DerivedUnit.New(2.m(2), 3.second(-2), 3.kg(2));
            Assert.IsTrue(customUnit is CustomUnit);
            var custom2 = (400.mm(2) / 9.minute(2)) * 100.g(2);
            Assert.IsTrue(custom2 is CustomUnit);
        }

class CustomUnit : CustomSpecialUnit<CustomUnit>
    {
        public new string Symbol { get; } = "custom";
        CustomUnit(MetricLength l_unit, MetricTime t_unit, MetricMass m_unit, double scaler) : base(l_unit, t_unit, m_unit, scaler)
        {

        }

        protected override CustomUnit New(MetricLength l_unit, MetricTime t_unit, MetricMass m_unit, Ampere a_unit)
        {
            return new CustomUnit(l_unit, t_unit, m_unit, 1);
        }
        public static CustomUnit Instance(MetricLength l_unit, MetricTime t_unit, MetricMass m_unit, Ampere a_unit)
        {
            return new CustomUnit(l_unit, t_unit, m_unit, 1);
        }
    }

Examples

// now supports derived unit arithmetics and special units Joule and newton.
var speed = 2.km() / 1.hour();
var acc = speed / 1.hour();
var f2 = acc * 80.kg();
var e1 = f2 * 500.mm();
Joule e2 = (Joule)(f1 * 10.m());
Assert.IsTrue(e1 is Joule); //true
Assert.IsTrue(f2 is Newton); //true
Assert.IsTrue(e2 is Joule); //true

var speed = 1.m() / 1.second()
// 1 m/s

3.kg() / (2.m() * 2.second(2));
// 0,75 kg/m.s²

5.m(2) * 2.second(3) / 3.kg(2);
//10,000000000000002 m².s³/kg²

var m1 = 2.m();
// 2 m

m1.cm()
// 200 cm

var s1 = 3.hour();
// 3 s

s1.minute()
// 180 m

s1.second()
// 10800 s

var m12 = (2.mm() * 10.cm() + 4.m(2)).dm();
// 400,02000000000004 dm2

var m13 = 2 * m12;
// 800,0400000000001 dm2

var m14 = (m12 / 2).m();
// 2,0001 m²

Operations Operants Result
+ Metric(n) + Metric(n) => Metric(n) where n is degree
- Metric(n) - Metric(n) => Metric(n) where n is degree
* Metric(n) * Metric(m) => Metric(n) where n and m are degrees
/ Metric(n) / Metric(m) => Metric(n-m) where n and m are degrees
* n * Metric(m) => Metric(m) where n is double
/ n / Metric(m) => Metric(-m) where n is double
* Metric(m) * n => Metric(m) where n is double
/ Metric(m) / n => Metric(m) where n is double

Note: zero degree metrics [Metric(0)] are equal to scalers.

Conversions

MetricLength MetricMass MetricTime
[MetricLength].km(degree) [MetricMass].mg() [MetricTime].msec()
[MetricLength].m(degree) [MetricMass].g() [MetricTime].milisecond()
[MetricLength].dm(degree) [MetricMass].kg() [MetricTime].second()
[MetricLength].cm(degree) [MetricMass].tonne() [MetricTime].minute()
[MetricLength].mm(degree) [MetricMass].t() [MetricTime].hour()
[MetricLength].MetricLength(SiMetricUnits unit) [MetricMass].MetricMass(SiMassUnit) [MetricTime].MetricTime()

Supported Units

Units of Length Units of Time Units of Mass Eleectric Currency
yoktometre, [ym] picosecond picogram, [pg] yoktoampere,
zeptometre, [zm] nanosecond nanogram, [ng] zeptoampere,
attometre, [am] microsecond microgram, [µg] attoampere,
femtometre, [fm] milisecond miligram, [mg] femtoampere,
picometre, [pm] second centigram, [cg] picoampere,
nanometre, [nm] minute decigram, [dg] nanoampere,
micrometre, [µm] hour gram, [g] microampere,
milimetre, [mm] day decagram, [dac] miliampere,
centimetre, [cm] hectogram, [hg] centiampere,
decimetre, [dm] kilogram, [kg] deciampere,
metre, [m] tonne, [t] ampere,
decametre, [dam] kilotonne, [kt] decaampere,
hectometre, [hm] megatonne, [Mt] hectoampere,
kilometre, [km] kiloampere,
megametre, [Mm] megaampere,
gigametre, [Gm] gigaampere,
terametre, [Tm] teraampere,
petametre, [Pm] petaampere,
exametre, [Em] exaampere,
zettametre, [Zm] zettaampere,
yottametre, [Ym] yottaampere,

Project Repository

https://github.com/kzlsahin/SiUnitsArithmetic

Contributions are welcome.

Lisance

This package is released under the MIT licence.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.4 93 3/11/2024
1.3.3 135 8/25/2023
1.3.1 129 8/25/2023
1.3.0 119 8/23/2023
1.2.5 142 8/1/2023

- Electric Currency unit Ampere is added,
- If there is no need to use the electric currency unit, continue to use version 1.2.5. Its performance is better at the moment.
- Custom derived unit class is modified.
_ Backward compatibillity issue: The CustomSpecialUnit class is modified in a way that breaks backwards compatibility. This only affects the extensibility of the library. The library is still backward compatible in all other aspects.