From 2c65e54d243daa2270d17db38df145d4226ca6b5 Mon Sep 17 00:00:00 2001 From: mordy Date: Mon, 3 May 2021 13:12:35 -0400 Subject: [PATCH] Added find_moles --- chemyst/molar.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/chemyst/molar.py b/chemyst/molar.py index 7de738b..377ef46 100644 --- a/chemyst/molar.py +++ b/chemyst/molar.py @@ -1,2 +1,7 @@ def molar(moles, volume): return moles/volume + + +def find_moles(molar, volume): + return volume * molar +