From 49f53b6004007aa43c193ea736d2d5f6573df670 Mon Sep 17 00:00:00 2001 From: CamDavidsonPilon Date: Tue, 3 Dec 2024 10:40:43 -0500 Subject: [PATCH] adding back stirring config --- workspace/scripts/files/pioreactor/config.example.ini | 5 ++++- .../exportable_datasets/10_dosing_automation_settings.yaml | 2 +- .../exportable_datasets/11_led_automation_settings.yaml | 2 +- .../12_temperature_automation_settings.yaml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/workspace/scripts/files/pioreactor/config.example.ini b/workspace/scripts/files/pioreactor/config.example.ini index 8d955d8..fcd8f48 100644 --- a/workspace/scripts/files/pioreactor/config.example.ini +++ b/workspace/scripts/files/pioreactor/config.example.ini @@ -25,7 +25,10 @@ initial_duty_cycle=30 pwm_hz=200 use_rpm=1 duration_between_updates_seconds=23 - +post_delay_duration=0.25 +pre_delay_duration=2.0 +# if turning enable_dodging_od on, we recommend decreasing samples_per_second +enable_dodging_od=False [od_reading.config] # how many optical density measurements should be published per second? Recommended maximum is 1. diff --git a/workspace/scripts/files/pioreactor/exportable_datasets/10_dosing_automation_settings.yaml b/workspace/scripts/files/pioreactor/exportable_datasets/10_dosing_automation_settings.yaml index 4963240..ef62286 100644 --- a/workspace/scripts/files/pioreactor/exportable_datasets/10_dosing_automation_settings.yaml +++ b/workspace/scripts/files/pioreactor/exportable_datasets/10_dosing_automation_settings.yaml @@ -3,7 +3,7 @@ default_order_by: started_at has_experiment: true has_unit: true source: app -query: SELECT *, BASE64(settings) as settings FROM dosing_automation_settings +query: SELECT *, BASE64(settings) as json_settings FROM dosing_automation_settings timestamp_columns: - started_at - ended_at diff --git a/workspace/scripts/files/pioreactor/exportable_datasets/11_led_automation_settings.yaml b/workspace/scripts/files/pioreactor/exportable_datasets/11_led_automation_settings.yaml index a67a123..4569039 100644 --- a/workspace/scripts/files/pioreactor/exportable_datasets/11_led_automation_settings.yaml +++ b/workspace/scripts/files/pioreactor/exportable_datasets/11_led_automation_settings.yaml @@ -3,7 +3,7 @@ default_order_by: started_at has_experiment: true has_unit: true source: app -query: SELECT *, BASE64(settings) as settings FROM led_automation_settings +query: SELECT *, BASE64(settings) as json_settings FROM led_automation_settings timestamp_columns: - started_at - ended_at diff --git a/workspace/scripts/files/pioreactor/exportable_datasets/12_temperature_automation_settings.yaml b/workspace/scripts/files/pioreactor/exportable_datasets/12_temperature_automation_settings.yaml index ac50197..94772c5 100644 --- a/workspace/scripts/files/pioreactor/exportable_datasets/12_temperature_automation_settings.yaml +++ b/workspace/scripts/files/pioreactor/exportable_datasets/12_temperature_automation_settings.yaml @@ -3,7 +3,7 @@ default_order_by: started_at has_experiment: true has_unit: true source: app -query: SELECT *, BASE64(settings) as settings FROM temperature_automation_settings +query: SELECT *, BASE64(settings) as json_settings FROM temperature_automation_settings timestamp_columns: - started_at - ended_at