Turbidostat
Turbidostats are automated culturing systems used to maintain a constant cell density in microbial cultures.
Algorithm
OD is constantly monitored
When OD goes above the an upper OD threshold
A dilution is calculated to bring OD to the lower threshold
Dilutions are capped at 20 seconds to avoid vial overflow
Both influx and efflux pumps are run simultaneously for the calculated length
Efflux pumps are run extra to make sure volume stays constant
The efflux straw sets volume
Turbidostat Dilution
Pumps
Influx and efflux are both run at the same time
Like chemostat, vial volume is set by efflux straw height
Efflux is run extra time to make sure that enough volume is removed
Pumps run at roughly 0.75mL/second
Pump calibration is important for turbidostat otherwise dilutions will not hit the lower OD threshold accurately
Dilution Calculation Example
Dilution is calculated here in the code and is modeled as a mass balance equation
Example Dilution
time_in = -(np.log(lower_thresh[x]/average_OD) *VOLUME)/flow_rate[x]
However, the mox dilution is 20 seconds to avoid overflow.
Growth Rate
Calculation
Calculated in eVOLVER.py in this function and stored in your data folder during an experiment.
When there is a turbidostat dilution, it fits a line to the log of the OD data since the last growth curve (ie last turbidostat dilution) time. The slope of that line is reported as the growth rate in 1/hr.
Doubling Time
Convert growth rate to doubling time (in hours) via ln(2)/growthrate.
0.2
3.47
0.5
1.39
1.0
0.69
1.5
0.46
2.0
0.35
More Info
See custom_script and the GUI start guide for information.
Last updated
Was this helpful?