some requested features in this release, some highlights:
- better control of stirring during OD snapshots
- config overrides from the UI
Note the Breaking changes section, too, if something doesn’t look like it’s working.
25.6.25
Enhancements
- We previously introduced the ability for stirring to “dodge” OD reading by turning itself off during an OD snapshot. This proved useful, but users wanted the generalized ability to modify the RPM to any value during a snapshot. For example, slow down the RPM during a snapshot, instead of stopping stirring. Another use case is to set the RPM during a snapshot to be equal to the RPM when an OD calibration was performed. We’ve introduced two new stirring configuration parameters, only used when dodging is active:
target_rpm_during_od_reading: the RPM when an OD snapshot is performed.target_rpm_outside_od_reading: the RPM outside a snapshot.
We highly recommend having a stirring calibration active while using these.
- There’s a new “Advanced” start option in the UI to modify configuration temporarily when starting a job. The options shown are from the section
[<job_name>.config]. This is useful for changing different configurations without changing the config files. - The above uses a new convention in
pio runCLI command. You can provide configuration overrides with the--config-overrideoption. Example:
orpio run --config-override od_reading.config interval 0.1 od_readingpio run --config-override stirring.config initial_duty_cycle 25 --config-override mqtt username pp stirring - You can even use config overrides in experiment profiles (must be applied to the
startaction.)common: jobs: od_reading: actions: - type: start hours_elapsed: 0.5 config_overrides: samples_per_second: 0.1 ir_led_intensity: 70 ... - We moved our Extended Kalman Filter code out of this repo into it’s own Python library: grpredict.
- Chemostat modal in the UI now shows the computed dilution rate
- New “Duplicate” profiles button.
- Experimental: Adding an experimental new feature that will detect a pump malfunction by comparing the OD before and after dosing. If the post-OD falls outside some expected bound (default is 20%), the dosing is paused until a user comes to unpause it. To enable this feature, set
dosing_automation.configparameterexperimental_detect_pump_malfunctiontoTrue.- This only applies to the current implementations of
turbidostatandchemostatin our software. - This feature relies on 1) Accurate initial volume (inputted when you start the automation), 2) accurate pump calibrations, 3) clear media
- This only applies to the current implementations of
- Calibration charts have new crosshairs
- The config
[mqtt]broker_addresscan now be a list of addresses, separated by;. Example:[mqtt] broker_address=pio01.local;100.119.150.2;localhost - Performance improvements
- Backing up database now checks if the worker and local machine have enough disk space, and skips if not.
Breaking changes
- In configuration,
[stirring.config]parametertarget_rpmis renamed toinitial_target_rpm. This is better for letting users know that the RPM can be changed during a run. - floats are rounded to 12 decimals points in data exports.
- localtime in data exports have subsecond precision.
- Changed dosing automation variables names:
max_volumetomax_working_volume_ml(also changed in config.ini)liquid_volumetocurrent_volume_ml- Chemostat and Turbidostat automations stopped using
volumekwarg and now useexchange_volume_ml. - the chart
liquid_volumesis renamedcurrent_volume_ml. This should be updated in your config.ini under[ui.overview.charts]if you are using that chary.
Bug fixes
- included new export dataset yaml for raw OD readings. This was missed in a previous release.
- experiment profiles now check the syntax of nested actions before starting the execution.
How to update
Known issues
- For users using
pid_morbidostat, you’ll need to edit the yaml file:- SSH into your leader, and run
nano /var/www/pioreactorui/contrib/automations/dosing/pid_morbidostat.yaml - Change
key: volumetokey: exchange_volume_ml. - Save and exit with
ctrl-c - Refresh the UI.
- SSH into your leader, and run
- air-bubbler plugin is not dodging ODs