Trivial.Chemistry 7.0.0

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

// Install Trivial.Chemistry as a Cake Tool
#tool nuget:?package=Trivial.Chemistry&version=7.0.0

Trivial.Chemistry

This library includes the basic chemistry models.

Import

Add following namespace to your code file to use.

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 net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
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
7.0.0 146 1/20/2023
6.6.0 208 11/9/2022
6.5.0 289 6/28/2022
6.4.0 304 4/14/2022
6.3.0 285 3/8/2022
6.2.0 301 1/30/2022
6.1.0 303 1/23/2022
6.0.0 169 1/1/2022
5.2.0 184 12/15/2021
5.1.0 182 12/2/2021
5.0.0 180 11/27/2021
4.0.0 208 11/9/2021
4.0.0-preview4 194 10/13/2021
4.0.0-preview3 140 9/15/2021
4.0.0-preview2 146 8/11/2021
4.0.0-preview1 192 6/18/2021
3.9.0 175 12/15/2021
3.0.0 211 11/9/2021
2.4.0 267 5/30/2021
2.3.0 267 5/23/2021
2.2.0 340 5/19/2021
2.1.0 449 5/17/2021
2.0.0 571 5/16/2021
1.0.1 489 5/13/2021
1.0.0 461 5/13/2021