ChemSharp.UnitConversion 2.1.1

dotnet add package ChemSharp.UnitConversion --version 2.1.1
NuGet\Install-Package ChemSharp.UnitConversion -Version 2.1.1
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="ChemSharp.UnitConversion" Version="2.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ChemSharp.UnitConversion --version 2.1.1
#r "nuget: ChemSharp.UnitConversion, 2.1.1"
#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 ChemSharp.UnitConversion as a Cake Addin
#addin nuget:?package=ChemSharp.UnitConversion&version=2.1.1

// Install ChemSharp.UnitConversion as a Cake Tool
#tool nuget:?package=ChemSharp.UnitConversion&version=2.1.1

<p align="center"> <img src="https://raw.githubusercontent.com/JensKrumsieck/ChemSharp/master/icon.png" height="125px" /></p> <h1 align="center" >ChemSharp.UnitConversion</h1>

NuGet Badge

Features

  • Unit Conversion for (Energy, Magnetic Units, Mass)

Basic Usage

Use given Converter:

//create converter instance (energy)
var converter = new EnergyUnitConverter("nm", "cm^-1");
//convert using Convert or ConvertInverted
var wavenumbers = converter.Convert(500) / 1000;
var nanometers = converter.ConvertInverted(50000) * 1000

Create own Converter EnergyUnitConverter:

namespace ChemSharp.UnitConversion
{
    public class EnergyUnitConverter : AbstractUnitConverter
    {
        public EnergyUnitConverter(string from, string to) : base(from, to)
        {
            AddConversion("J", 1);
            AddConversion("eV", Constants.ElectronCharge);
            AddConversion("kJ/mol", 1000 / Constants.Avogadro);
            AddConversion("cal", 4.184);
            AddConversion("kcal/mol", 4184 / Constants.Avogadro);
            AddConversion("hartree", Constants.Hartree);
            AddConversion("cm^-1", Constants.Planck * Constants.SpeedOfLight * 100);
            AddConversion("Hz", Constants.Planck);
            AddConversion("Kelvin", Constants.Boltzmann);
            AddConversion("nm", new MappedFunction()
            {
                Function = i => Constants.Planck * Constants.SpeedOfLight / (i * 1e-9),
                Reciprocal = true
            });
        }
    }
}
Compatibility
  • .NET Standard 2.0, .NET Standard 2.1, .NET 5, .NET 6
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.

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
2.1.1 95 2/19/2024
2.1.0 177 7/31/2023
2.0.1 143 6/20/2023
2.0.0 214 3/1/2023
2.0.0-beta.1 95 12/1/2022
2.0.0-alpha.3 103 9/13/2022
2.0.0-alpha.2 87 9/5/2022
2.0.0-alpha.1 87 9/2/2022
1.1.0-beta.2 126 7/26/2022
1.1.0-beta.1 147 5/16/2022
1.0.15 491 1/27/2022
1.0.14 448 1/24/2022
1.0.13 319 12/5/2021
1.0.12 292 12/5/2021
1.0.11 2,997 11/25/2021
1.0.10 326 8/6/2021
1.0.9 361 7/2/2021
1.0.8 364 6/18/2021
1.0.7 375 6/16/2021
1.0.6 309 5/20/2021
1.0.5 370 5/20/2021
1.0.4 464 4/4/2021
1.0.3 349 3/30/2021
1.0.2 335 3/29/2021
1.0.1 364 3/9/2021
1.0.0 354 3/2/2021
1.0.0-beta5 191 2/20/2021
1.0.0-beta4 194 2/16/2021
1.0.0-beta3 252 2/11/2021
1.0.0-beta2 204 2/6/2021
1.0.0-beta1 216 2/4/2021
1.0.0-alpha20210123 252 1/23/2021
1.0.0-alpha20210105 231 1/6/2021
1.0.0-alpha1 379 12/28/2020