ktsu.Semantics.Quantities
3.2.4
Prefix Reserved
dotnet add package ktsu.Semantics.Quantities --version 3.2.4
NuGet\Install-Package ktsu.Semantics.Quantities -Version 3.2.4
<PackageReference Include="ktsu.Semantics.Quantities" Version="3.2.4" />
<PackageVersion Include="ktsu.Semantics.Quantities" Version="3.2.4" />
<PackageReference Include="ktsu.Semantics.Quantities" />
paket add ktsu.Semantics.Quantities --version 3.2.4
#r "nuget: ktsu.Semantics.Quantities, 3.2.4"
#:package ktsu.Semantics.Quantities@3.2.4
#addin nuget:?package=ktsu.Semantics.Quantities&version=3.2.4
#tool nuget:?package=ktsu.Semantics.Quantities&version=3.2.4
ktsu.Semantics.Quantities
A metadata-generated, type-safe physical quantity system built on a unified vector model, with compile-time dimensional analysis, generated unit conversions and physics operators, and centralized physical constants.
ktsu.Semantics.Quantities is one package in the ktsu.Semantics family. If you use a single numeric storage type throughout a project, the alias packages ktsu.Semantics.Quantities.Double, .Float, and .Decimal let you drop the generic argument and write Mass instead of Mass<double>.
Introduction
ktsu.Semantics.Quantities gives you physical quantities as types, so a Force cannot be added to a Speed and multiplying a Mass by an AccelerationMagnitude yields a ForceMagnitude at compile time. Every quantity is generic over its numeric storage type (Mass<double>, Speed<float>, Length<decimal>), and all values are stored in SI base units.
The type surface is generated. A single source of truth, dimensions.json, drives a Roslyn incremental generator that emits the quantity records, their From{Unit} factories with built-in conversions, the cross-dimensional physics operators, and the physical constants. That is roughly 72 physical dimensions and over 200 generated quantity types, all committed to source so the project compiles without first running the generator.
Every quantity is a vector, and the dimensionality of its direction space is part of the type.
| Form | Meaning | Sign | Examples |
|---|---|---|---|
IVector0 |
magnitude only | always >= 0 |
Speed, Mass, Energy, Distance, Area |
IVector1 |
signed 1D | signed | Velocity1D, Force1D, Temperature |
IVector2 |
2D directional | per-component | Velocity2D, Force2D, Acceleration2D |
IVector3 |
3D directional | per-component | Velocity3D, Force3D, Position3D |
IVector4 |
4D directional | per-component | reserved (relativistic / spacetime) |
IVectorN.Magnitude() (for N >= 1) returns the matching IVector0 quantity.
Features
- Compile-time dimensional safety: illegal combinations do not compile, and cross-dimensional operators produce the correct result type.
- Generated unit conversions:
From{Unit}factories per declared unit (Mass.FromKilogram,Speed.FromMeterPerSecond,Length.FromFoot), converting to the SI base unit on construction, withIn(unit)to convert back. - Unified vector model:
IVector0throughIVector4, withMagnitude(),Dot,Cross,Normalize, and typed cross-quantity results (Force3D.Dot(Displacement3D)returnsEnergy). - Construction-time invariants:
IVector0magnitudes are guarded non-negative, and quantities where zero is unphysical (Wavelength,Period,HalfLife) are guarded strictly positive. - Physical constants:
PhysicalConstantswith domain-grouped generic accessors that materialize into anyT : INumber<T>. - Generator diagnostics: metadata problems (
SEM001-SEM005) are caught at build time.
Installation
Package Manager Console
Install-Package ktsu.Semantics.Quantities
.NET CLI
dotnet add package ktsu.Semantics.Quantities
Package Reference
<PackageReference Include="ktsu.Semantics.Quantities" Version="x.y.z" />
For a project that uses one storage type everywhere, reference an alias package instead (or in addition) so you can omit the generic argument. See storage-type aliases.
Usage Examples
Basic Example: magnitudes and operators
using ktsu.Semantics.Quantities;
Mass<double> m = Mass<double>.FromKilogram(2.0);
Speed<double> v = Speed<double>.FromMeterPerSecond(3.0);
MomentumMagnitude<double> p = m * v; // Mass * Speed -> MomentumMagnitude
double kg = m.Value; // stored SI-base value
// arithmetic and comparison are inherited
Speed<double> faster = v + Speed<double>.FromMeterPerSecond(5.0);
bool ok = faster > v;
// construction-time guard: a negative magnitude throws ArgumentException
// Speed<double>.FromMeterPerSecond(-1.0);
Vector quantities
using ktsu.Semantics.Quantities;
Force3D<double> f = new() { X = 3.0, Y = 4.0, Z = 0.0 };
ForceMagnitude<double> mag = f.Magnitude(); // matching Vector0 quantity, value 5.0
Force3D<double> unit = f.Normalize();
Displacement3D<double> d = new() { X = 1.0, Y = 0.0, Z = 0.0 };
Energy<double> work = f.Dot(d); // typed dot: Force . Displacement = Energy
Torque3D<double> torque = f.Cross(d); // typed cross: Force x Displacement = Torque
Momentum3D<double> impulse = f * Duration<double>.Create(2.0);
Physical constants
using ktsu.Semantics.Quantities;
// domain-grouped, materialized into the numeric type you ask for
double c = PhysicalConstants.Fundamental.SpeedOfLight<double>(); // 299_792_458 m/s
decimal R = PhysicalConstants.Chemistry.GasConstant<decimal>(); // 8.31446... J/(mol.K)
// generic accessors materialize into any T : INumber<T>
double g = PhysicalConstants.Generic.StandardGravity<double>(); // 9.80665
ForceMagnitude<double> weight = Mass<double>.FromKilogram(70.0) * AccelerationMagnitude<double>.Create(g);
API Reference
Hand-written runtime types
| Type | Description |
|---|---|
SemanticQuantity<TSelf, T> |
Arithmetic base. Create(T) factory, Quantity value, and inherited + - * / - operators. Divide by zero throws DivideByZeroException. |
PhysicalQuantity<TSelf, T> |
Abstract base for scalar quantities. Adds Value, Dimension, IsPhysicallyValid, comparison operators, and cross-dimension-aware CompareTo/Equals. |
IVector0<TSelf, T> |
Magnitude-only marker: Value, static Zero. Non-negative by construction. |
IVector1<TSelf, T> |
Signed single-axis: Value, static Zero. |
IVector2 / IVector3 / IVector4 |
Directional vectors with X/Y/Z/W, Length(), LengthSquared(), Dot, Distance, Normalize; IVector3 adds Cross. |
Vector0Guards |
EnsureNonNegative(value, name) and EnsurePositive(value, name), used by generated From{Unit} factories. |
UnitSystem |
enum classifying units (SIBase, SIDerived, Metric, Imperial, ...). |
Generated quantity types
Each generated quantity is a partial record Name<T> where T : struct, INumber<T>. A typical IVector0 quantity such as Mass<T> exposes:
| Member | Description |
|---|---|
From{Unit}(T) |
e.g. FromKilogram, FromGram, FromPound. Converts to SI base and applies the guard. |
Create(T) |
Inherited base factory (value already in SI base units). |
Value |
The stored SI-base value. |
In(unit) |
Convert the value back to a specific unit. |
| typed operators | e.g. Mass * AccelerationMagnitude -> ForceMagnitude, Mass / Volume -> Density. |
Vector quantities (Force3D<T>, Velocity2D<T>, ...) implement the matching IVectorN and add Magnitude() (returning the corresponding *Magnitude Vector0 quantity), Dot, Cross, and typed cross-quantity results.
Factory names use the singular lemma of each unit name verbatim (FromMeterPerSecond, FromRevolutionPerMinute). There is no pluralization step.
PhysicalConstants
- Domain-grouped: nested static classes with generic accessors, for example
PhysicalConstants.Fundamental.SpeedOfLight<T>(),PhysicalConstants.ClassicalMechanics.StandardGravity<T>(),PhysicalConstants.Thermodynamics.WaterTriplePoint<T>(). Domain groups include Acoustics, AngularMechanics, Chemistry, ClassicalMechanics, FluidMechanics, Fundamental, NuclearPhysics, Optics, and Thermodynamics. - Generic:
PhysicalConstants.Generic.Name<T>()is a flat accessor over every constant, regardless of domain. - Each constant is parsed from its metadata literal straight into
Tand cached per closed generic type, so the package carries no arbitrary-precision dependency and no rounding happens through an intermediate representation.
Architecture
The system is metadata-driven. The single source of truth is Semantics.SourceGenerators/Metadata/dimensions.json (alongside units.json, magnitudes.json, conversions.json, domains.json, and logarithmic.json). A Roslyn incremental generator emits one record per quantity, a From{Unit} factory per declared unit, the cross-dimensional * / / / Dot / Cross operators declared in the metadata, and the PhysicalConstants surface. Logarithmic-scale quantities (decibels, cents, pH) are generated separately because they do not obey linear arithmetic.
Generated output is committed to Generated/, so the project compiles without first running the generator. For the full design and an end-to-end "add a dimension" walk-through, see:
Contributing
Contributions are welcome! Feel free to open issues or submit pull requests.
License
This project is licensed under the MIT License. See the LICENSE.md file for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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 is compatible. 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 is compatible. 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. |
-
net10.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (4)
Showing the top 4 NuGet packages that depend on ktsu.Semantics.Quantities:
| Package | Downloads |
|---|---|
|
ktsu.ImGuiNodeEditor
A comprehensive .NET library suite for building desktop applications with Dear ImGui. Provides application scaffolding with PID-controlled frame limiting, custom widgets (TabPanel, SearchBox, Knob, RadialProgressBar, DividerContainer, Grid), modal dialogs (file browser, input prompts, searchable lists), a theming system with 50+ built-in themes and scoped styling, and an attribute-based node graph editor with physics-based layout. Built on Hexa.NET.ImGui bindings and Silk.NET for cross-platform windowing. |
|
|
ktsu.Semantics.Quantities.Double
A comprehensive .NET library for replacing primitive obsession with strongly-typed, self-validating domain models across four pillars: semantic strings with 50+ validation attributes, polymorphic path handling, metadata-generated semantic quantities, and musical value types. The quantity system covers 60+ physical dimensions and 200+ generated types under a unified vector model, with compile-time dimensional safety, generated unit conversions and physics relationships, centralized physical constants, and optional per-storage-type alias packages. The music types provide type-safe pitches, intervals, scales and modes, chords with symbol parsing and voicing, keys with roman-numeral analysis, and rational durations and time signatures. Features factory-pattern and dependency-injection support for building robust, maintainable scientific and domain-specific applications. |
|
|
ktsu.Semantics.Quantities.Decimal
A comprehensive .NET library for replacing primitive obsession with strongly-typed, self-validating domain models across four pillars: semantic strings with 50+ validation attributes, polymorphic path handling, metadata-generated semantic quantities, and musical value types. The quantity system covers 60+ physical dimensions and 200+ generated types under a unified vector model, with compile-time dimensional safety, generated unit conversions and physics relationships, centralized physical constants, and optional per-storage-type alias packages. The music types provide type-safe pitches, intervals, scales and modes, chords with symbol parsing and voicing, keys with roman-numeral analysis, and rational durations and time signatures. Features factory-pattern and dependency-injection support for building robust, maintainable scientific and domain-specific applications. |
|
|
ktsu.Semantics.Quantities.Float
A comprehensive .NET library for replacing primitive obsession with strongly-typed, self-validating domain models across four pillars: semantic strings with 50+ validation attributes, polymorphic path handling, metadata-generated semantic quantities, and musical value types. The quantity system covers 60+ physical dimensions and 200+ generated types under a unified vector model, with compile-time dimensional safety, generated unit conversions and physics relationships, centralized physical constants, and optional per-storage-type alias packages. The music types provide type-safe pitches, intervals, scales and modes, chords with symbol parsing and voicing, keys with roman-numeral analysis, and rational durations and time signatures. Features factory-pattern and dependency-injection support for building robust, maintainable scientific and domain-specific applications. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.2.4 | 0 | 9/2/2026 |
| 3.2.3 | 67 | 9/1/2026 |
| 3.2.2 | 131 | 8/31/2026 |
| 3.2.1 | 146 | 8/28/2026 |
| 3.2.0 | 189 | 8/27/2026 |
| 3.1.4 | 286 | 8/25/2026 |
| 3.1.3 | 258 | 8/24/2026 |
| 3.1.2 | 218 | 8/21/2026 |
| 3.1.1 | 258 | 8/19/2026 |
| 3.1.0 | 184 | 8/19/2026 |
| 3.0.1 | 135 | 8/18/2026 |
| 3.0.0 | 228 | 8/15/2026 |
| 2.9.14 | 246 | 8/14/2026 |
| 2.9.13 | 133 | 8/14/2026 |
| 2.9.12 | 136 | 8/14/2026 |
| 2.9.11 | 137 | 8/14/2026 |
| 2.9.10 | 130 | 8/14/2026 |
| 2.9.9 | 130 | 8/14/2026 |
| 2.9.8 | 141 | 8/14/2026 |
| 2.9.7 | 134 | 8/14/2026 |
## v3.2.4 (patch)
Changes since v3.2.3:
- Bump the ktsu group with 1 update ([@dependabot[bot]](https://github.com/dependabot[bot]))