dilution: Dilution

Description Usage Arguments Details Value Author(s) Examples

Description

Calculates one of either stock concentration, final concentration, require volume of stock solution or final volume of diluted solution depending on given parameters.

Usage

1
dilution(c1 = NULL, v1 = NULL, c2 = NULL, v2 = NULL)

Arguments

c1

concentration of stock solution

v1

volume of stock solution

c2

concentration of diluted solution

v2

volume of diluted solution

Details

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.

Value

returns the value of the missing parameter in the same units as entered.

Author(s)

Julian Spagnuolo

Examples

 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)

JulianSpagnuolo/Bioscikit documentation built on May 28, 2019, 8:22 a.m.