Description Usage Arguments Details Value Author(s) Examples
Calculates one of either stock concentration, final concentration, require volume of stock solution or final volume of diluted solution depending on given parameters.
1 |
c1 |
concentration of stock solution |
v1 |
volume of stock solution |
c2 |
concentration of diluted solution |
v2 |
volume of diluted solution |
Make sure that the units of concentration and volume are the same. i.e if using mL for v1, use mL for v2, if using ng/mL for c1 use ng/mL for c2, etc.
returns the value of the missing parameter in the same units as entered.
Julian Spagnuolo
1 2 3 4 5 6 7 8 9 10 11 | ### For concentration of stock solution:
dilution(v1=100, c2=10, v2=500)
### For concentration of diluted solution:
dilution(c1=20, v1=50, v2=100)
### For volume of stock solution needed to make given volume of solution at a given concentration:
dilution(c1=100, c2=10, v2=100)
### For final volume required to dilute a given volume of stock solution to a desired final concentration:
dilution(c1=100, v1=10, c2=10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.