ChemSharp.UnitConversion
2.1.1
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
<p align="center"> <img src="https://raw.githubusercontent.com/JensKrumsieck/ChemSharp/master/icon.png" height="125px" /></p> <h1 align="center" >ChemSharp.UnitConversion</h1>
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 | Versions 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 | 144 | 2/19/2024 | |
2.1.0 | 202 | 7/31/2023 | |
2.0.1 | 172 | 6/20/2023 | |
2.0.0 | 248 | 3/1/2023 | |
2.0.0-beta.1 | 112 | 12/1/2022 | |
2.0.0-alpha.3 | 116 | 9/13/2022 | |
2.0.0-alpha.2 | 103 | 9/5/2022 | |
2.0.0-alpha.1 | 102 | 9/2/2022 | |
1.1.0-beta.2 | 139 | 7/26/2022 | |
1.1.0-beta.1 | 162 | 5/16/2022 | |
1.0.15 | 518 | 1/27/2022 | |
1.0.14 | 475 | 1/24/2022 | |
1.0.13 | 349 | 12/5/2021 | |
1.0.12 | 317 | 12/5/2021 | |
1.0.11 | 3,028 | 11/25/2021 | |
1.0.10 | 353 | 8/6/2021 | |
1.0.9 | 395 | 7/2/2021 | |
1.0.8 | 391 | 6/18/2021 | |
1.0.7 | 404 | 6/16/2021 | |
1.0.6 | 334 | 5/20/2021 | |
1.0.5 | 398 | 5/20/2021 | |
1.0.4 | 499 | 4/4/2021 | |
1.0.3 | 390 | 3/30/2021 | |
1.0.2 | 356 | 3/29/2021 | |
1.0.1 | 396 | 3/9/2021 | |
1.0.0 | 377 | 3/2/2021 | |
1.0.0-beta5 | 225 | 2/20/2021 | |
1.0.0-beta4 | 216 | 2/16/2021 | |
1.0.0-beta3 | 286 | 2/11/2021 | |
1.0.0-beta2 | 226 | 2/6/2021 | |
1.0.0-beta1 | 236 | 2/4/2021 | |
1.0.0-alpha20210123 | 276 | 1/23/2021 | |
1.0.0-alpha20210105 | 251 | 1/6/2021 | |
1.0.0-alpha1 | 408 | 12/28/2020 |