Chemostat
Process and considerations for running a chemostat.
Code Breakdown and Explanation of Flow Rates
def chemostat(eVOLVER, input_data, vials, elapsed_time):
OD_data = input_data['transformed']['od']
##### USER DEFINED VARIABLES #####
start_OD = [0] * 16 # ~OD600, set to 0 to start chemostate dilutions at any positive OD
start_time = [0] * 16 #hours, set 0 to start immediately
# Note that script uses AND logic, so both start time and start OD must be surpassed
OD_values_to_average = 6 # Number of values to calculate the OD average
chemostat_vials = vials #vials is all 16, can set to different range (ex. [0,1,2,3]) to only trigger tstat on those vialsThe peristaltic pumps are fixed flow rates, does that mean I have to use different pumps for each flow rate setting?
Code for interfacing with eVOLVER GUI
Rest of the Chemostat Configuration Settings
Chemostat Pump Commands
Last updated
Was this helpful?