Trivial.Chemistry
3.9.0
.NET 5.0
.NET Core 3.1
.NET Standard 2.0
.NET Framework 4.6.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
Install-Package Trivial.Chemistry -Version 3.9.0
dotnet add package Trivial.Chemistry --version 3.9.0
<PackageReference Include="Trivial.Chemistry" Version="3.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Trivial.Chemistry --version 3.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Trivial.Chemistry, 3.9.0"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install Trivial.Chemistry as a Cake Addin
#addin nuget:?package=Trivial.Chemistry&version=3.9.0
// Install Trivial.Chemistry as a Cake Tool
#tool nuget:?package=Trivial.Chemistry&version=3.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
This library includes the basic chemistry models.
using Trivial.Chemistry;
Element
Get element from periodic table by its symbol or atomic numbers.
var oxygen = ChemicalElement.Get(8);
var gold = ChemicalElement.Get("Au");
var carbon = ChemicalElement.C;
Or list a set of element.
var some = ChemicalElement.Where(ele => ele.AtomicNumber < 20);
Isotope
Create an isotope from an element.
var diplogen = ChemicalElement.H.Isotope(2);
Or list all for a specific element.
var allCarbonIsotopes = ChemicalElement.C.Isotopes();
Molecular formula
Parse a molecular formula.
var carbonicAcid = MolecularFormula.Parse("H2CO3");
Or create a molecular formula by merging elements and other molecular formulas.
var sulfuricAcid = ChemicalElement.H * 2 + ChemicalElement.S + ChemicalElement.O * 4;
var ethanol = MolecularFormula.Parse("CH3") + MolecularFormula.Parse("CH2") + MolecularFormula.Parse("OH");
var iron = ChemicalElement.Fe;
Test conservation of mass.
// 2 Na + 2 Hâ‚‚O = 2 NaOH + Hâ‚‚
var mass = MolecularFormula.ConservationOfMass(
new List<MolecularFormula>
{
{ ChemicalElement.Na, 2 },
{ ChemicalElement.H * 2 + ChemicalElement.O, 2 }
},
new List<MolecularFormula>
{
{ ChemicalElement.Na + ChemicalElement.H + ChemicalElement.O, 2 },
ChemicalElement.H * 2
}
);
Console.WriteLine(mass); // -> True
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
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 | |
---|---|---|---|
6.4.0 | 59 | 4/14/2022 | |
6.3.0 | 53 | 3/8/2022 | |
6.2.0 | 68 | 1/30/2022 | |
6.1.0 | 68 | 1/23/2022 | |
6.0.0 | 78 | 1/1/2022 | |
5.2.0 | 96 | 12/15/2021 | |
5.1.0 | 94 | 12/2/2021 | |
5.0.0 | 88 | 11/27/2021 | |
4.0.0 | 120 | 11/9/2021 | |
4.0.0-preview4 | 159 | 10/13/2021 | |
4.0.0-preview3 | 100 | 9/15/2021 | |
4.0.0-preview2 | 106 | 8/11/2021 | |
4.0.0-preview1 | 150 | 6/18/2021 | |
3.9.0 | 87 | 12/15/2021 | |
3.0.0 | 123 | 11/9/2021 | |
2.4.0 | 180 | 5/30/2021 | |
2.3.0 | 173 | 5/23/2021 | |
2.2.0 | 240 | 5/19/2021 | |
2.1.0 | 339 | 5/17/2021 | |
2.0.0 | 444 | 5/16/2021 | |
1.0.1 | 369 | 5/13/2021 | |
1.0.0 | 338 | 5/13/2021 |