Skip to content

Commit a77e587

Browse files
authored
Merge pull request #54 from UBC-MDS/clarify-dilution-docstring
Clarify dilution formula variables in docstring
2 parents 93c16f6 + 893709d commit a77e587

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/biomathhh/dilution.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ def calculate_dilution(stock_concentration, stock_volume, final_volume):
55
This function applies the standard laboratory dilution equation:
66
77
C1 * V1 = C2 * V2
8-
8+
where:
9+
- C₁ = stock_concentration
10+
- V₁ = stock_volume
11+
- C₂ = final_concentration
12+
- V₂ = final_volume (returned value)
13+
14+
915
Parameters
1016
----------
1117
stock_concentration : float

0 commit comments

Comments
 (0)