Turbidostat

Turbidostats are automated culturing systems used to maintain a constant cell density in microbial cultures.

Algorithm

  1. OD is constantly monitored

  2. When OD goes above the an upper OD threshold

  3. A dilution is calculated to bring OD to the lower threshold

    1. Dilutions are capped at 20 seconds to avoid vial overflow

  4. Both influx and efflux pumps are run simultaneously for the calculated length

  5. Efflux pumps are run extra to make sure volume stays constant

    1. 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]

average_OD = 1 # OD
lower_threshold = 0.5 # OD
VOLUME = 25 # mL
flow_rate = 0.75 # mL/second
time_in = -(np.log(0.5/1)*25)/0.75 = 23.1 # seconds

However, the mox dilution is 20 seconds to avoid overflow.

More Info

See custom_script and the GUI start guide for information.

Last updated