.NET 计量单位组件:PhysicalMeasure

jopen 9年前

PhysicalMeasure 是一个 C# 库,根据特定值和单位来处理物理计量单位,支持多个单位系统的转换。

PhysicalMeasure 要求 .NET framework 4.0.

PhysicalMeasure 可以用来展示和处理物理度量,或者计算物理属性。

示例

using PhysicalMeasure;public void CalculateEnergyIn1Gram()  {     PhysicalQuantity m = new PhysicalQuantity(0.001, SI.kg);     PhysicalQuantity c = new PhysicalQuantity(299792458, SI.m / SI.s);        PhysicalQuantity E = m * c.Pow(2);        PhysicalQuantity expected = new PhysicalQuantity(0.001 * 299792458 * 299792458, SI.J);     Assert.AreEqual(expected, E);  }

项目主页:http://www.open-open.com/lib/view/home/1435843832263