# Example 1: Standard Collection
# 70kg patient, CD34 count 20/uL, Target 5 million/kg, 50% efficiency
# Vol = (5 * 70) / (20 * 0.5) = 350 / 10 = 35 Liters
pbsc_collection_volume(70, 20, 5, 50)
# Example 2: High Efficiency, Low Count
# 80kg, CD34 10/uL, Target 2 million/kg, 40% efficiency
# Vol = (2 * 80) / (10 * 0.4) = 160 / 4 = 40 Liters
pbsc_collection_volume(80, 10, 2, 40)
Run the code above in your browser using DataLab