Tare 1.0.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Tare --version 1.0.0
                    
NuGet\Install-Package Tare -Version 1.0.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="Tare" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Tare" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Tare" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Tare --version 1.0.0
                    
#r "nuget: Tare, 1.0.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.
#:package Tare@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Tare&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Tare&version=1.0.0
                    
Install as a Cake Tool

user guide | api documentation | changelog

Tare

Tare is a .NET library that provides a Quantity type for working with physical quantities and units of measurement. Unlike other units libraries, Tare is built around runtime unit parsing, conversion, and supports dimensional arithmetic.

It supports:

  • Unit conversion - Convert between compatible units (inches to meters, pounds to kilograms, etc.)
  • Arithmetic operations - Add, subtract, multiply, and divide quantities with automatic unit handling
  • Composite units - Work with complex units like "m/s", "kg*m/s^2", "Nm", etc.
  • Dimensional analysis - Automatic dimension checking and unit composition
  • "Type" safety - Uses dimensional signatures to prevent invalid operations (like adding length to mass) while only using one Quantity type.

Quick Start

Declaration

using Tare;

//Implicit creation and explicit parsing
Quantity length = "1.5 m";
var force = Quantity.Parse("13 lbf");

//support for scalars
Quantity scalar = 2;
var scalar2 = Quantity.Parse("2");

// TryParse operations
if (Quantity.TryParse("3.2 ft/s^2", out var acceleration))
{
  // Success
}

// creation from another quantity (with conversion)
var torque2 = torque.As("lbf*in");

Dimensional Arithmetic

Tare automatically handles dimensional algebra when multiplying or dividing quantities:

// Perform some simple math
var longLength = length * scalar;
var longLength2 = length * 2;
var torque = force * length;
var area = length * length;

// Velocity from distance and time
var distance = Quantity.Parse("100 m");
var time = Quantity.Parse("9.58 s");
var velocity = distance / time;  // Result: 10.44 m/s
Console.WriteLine(velocity.Format("m/s")); // "10.44 m/s"

// Force calculation (F = ma)
var mass = Quantity.Parse("5 kg");
var acceleration = Quantity.Parse("2 m/s^2");
var force = mass * acceleration;  // Result: 10 N (Newtons)
Console.WriteLine(force.Format("N")); // "10 N"

Dimensionally Compatible Operations

Tare prevents invalid operations at runtime by checking dimensional signatures:

// This throws InvalidOperationException - can't add different dimensional signatures!
var invalid = torque + area;  // Error!

Unit Conversion

Support for converting between units:

///Unit conversion and string formatting
Console.WriteLine(force.Format("N")); // "57.7883 N"
Console.WriteLine(force.Format("ozf")); // "2080 ozf"

Dotnet String Formatting

Support for standard dotnet numerical string formatting:

Console.WriteLine(torque.ToString("F1"); // "8. J"

Comparisons

// Compare quantities
if (longLength > length)
    Console.WriteLine("longLength is greater than length");

if (longLength == long)
    Console.WriteLine("longLength is equal to long");

Supported Units

Tare supports a wide variety of units across many dimensions:

  • Length: m, cm, mm, km, in, ft, yd, mi, nmi
  • Mass: g, kg, lb, oz, ton
  • Time: ms, s, min, h, day, week, year
  • Temperature: °C, °F, K
  • Force: N, lbf, kgf
  • Pressure: Pa, psi, bar, atm, mmHg
  • Energy: J, Nm, kWh, BTU, cal
  • Power: W, hp, kW
  • Velocity: m/s, km/h, mph, knots
  • Area: m², cm², ft², acre
  • Volume: m³, L, mL, gal, qt, pt, cup
  • And many more...

Installation

Available on NuGet: Tare

dotnet add package Tare

Full Documentation

User Guides

  • Getting Started - Installation and basic concepts
  • Basic Usage - Parsing, arithmetic, comparisons, and error handling
  • Unit Conversion - Converting between units and working with different unit systems
  • Dimensional Arithmetic - Multiplication, division, and dimensional analysis
  • Formatting - Controlling output precision, culture-aware formatting, and string interpolation
  • Advanced Features - Introspection, normalization, validation, and unit discovery

Reference Documentation

Unit Conversion Validation & Correctness

Tare maintains rigorous validation of unit conversion accuracy through a dedicated test project and comprehensive documentation. All conversion factors are independently verified against authoritative sources including NIST SP 811, BIPM SI standards, and ISO 80000-1.

Validation Resources

  • Unit Validation Strategy - Complete methodology for ensuring conversion accuracy

    • Validation approach using authoritative sources
    • Testing protocols and adversarial validation procedures
    • Precision management and audit trail requirements
  • Unit Accuracy Audit Report - Comprehensive accuracy audit with confidence intervals

    • 100% pass rate across all tested conversions (52 validation tests)
    • Confidence levels by category (Length, Mass, Force, Energy, etc.)
    • Known limitations and recommendations
  • Validation Test Project - Dedicated test project (Tare.UnitValidation.Tests)

    • Isolated from functional tests for focused accuracy auditing
    • Each test includes inline source citations (NIST, BIPM, ISO)
    • Prepared for adversarial testing by multiple models/reviewers

Conversion Accuracy

All unit conversions are validated against exact definitions from international standards:

  • NIST SP 811 - Guide for the Use of the International System of Units (SI)
  • BIPM SI Brochure - The International System of Units (9th Edition, 2019)
  • ISO 80000-1 - Quantities and units - Part 1: General
  • 1959 International Yard and Pound Agreement - Exact definitions for imperial/US customary units

Test Results: 625 total tests (573 functional + 52 validation) with 100% pass rate ✅
Test Coverage: 93.25% line coverage, 67.25% branch coverage (exceeds 85% target) ✅

Running Tests

# Run all tests
dotnet test

# Run with coverage (requires dotnet-coverage tool)
dotnet tool install -g dotnet-coverage
dotnet-coverage collect -f cobertura -o coverage.cobertura.xml dotnet test

# Generate HTML coverage report (requires reportgenerator tool)
dotnet tool install -g dotnet-reportgenerator-globaltool
reportgenerator -reports:coverage.cobertura.xml -targetdir:coverage-report -reporttypes:Html

# Run specific test category
dotnet test --filter "FullyQualifiedName~S004TestMatrixTests"

The test suite includes:

  • S-004 Test Matrix: 17 tests explicitly validating all 8 dimensional algebra scenarios
  • Unit Tests: Focused component tests for value objects, operators, and parsers
  • Integration Tests: End-to-end workflow validation
  • Validation Tests: Accuracy verification against NIST/BIPM/ISO standards

References and Further Reading

For those interested in learning more about dimensional analysis and units of measure:

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 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.
  • net7.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Tare:

Package Downloads
JordanRobot.MotorDefinition

Definitions for electrical motor properties and performance data. Allows mapping of performance (torque/speed curves) per drive and voltage. Includes JSON load/save functionality and object models.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0-alpha.4 417 11/17/2025
1.1.0-alpha.0 305 11/17/2025
1.0.0 314 11/16/2025
1.0.0-alpha.215 192 11/16/2025
0.8.0-vNext.1 178 11/9/2025
0.7.0-alpha0001 300 4/17/2023
0.6.0-alpha0001 238 4/16/2023
0.5.2-alpha0001 262 4/13/2023
0.5.1-alpha0001 245 4/13/2023
0.5.0-alpha0001 257 3/29/2023
0.4.0-alpha0001 254 3/22/2023
0.3.1-alpha0001 262 3/22/2023
0.2.0-alpha0001 245 3/21/2023

Initial release. See repository page for more details.