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.
More Info
See custom_script and the GUI start guide for information.
Last updated