changeset 2598:a471c966e7ab

app/pitot: added argon driver to Pitot condition builder Realised that I never pushed the small change which lets one use the Argon driver with pitot condition builder. Works now...
author Chris James <c.james4@uq.edu.au>
date Fri, 17 Apr 2020 13:05:46 +1000
parents 6231b8dd7e79
children d65c010e25fd
files app/pitot/pitot.py app/pitot/pitot_condition_builder.py
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/app/pitot/pitot.py	Mon Mar 02 20:50:58 2020 +1000
+++ b/app/pitot/pitot.py	Fri Apr 17 13:05:46 2020 +1000
@@ -315,7 +315,7 @@
 from pitot_output_utils import *
 from pitot_area_ratio_check import *
 
-VERSION_STRING = "28-Oct-2019"
+VERSION_STRING = "19-Apr-2020"
 
 DEBUG_PITOT = False
 
--- a/app/pitot/pitot_condition_builder.py	Mon Mar 02 20:50:58 2020 +1000
+++ b/app/pitot/pitot_condition_builder.py	Fri Apr 17 13:05:46 2020 +1000
@@ -10,7 +10,7 @@
 
 """
 
-VERSION_STRING = "29-Nov-2018"
+VERSION_STRING = "19-Apr-2020"
 
 import sys
 
@@ -59,7 +59,7 @@
         cfg['bad_input'] = True
         
     driver_condition_check_list = ['He:0.80,Ar:0.20', 'He:0.90,Ar:0.10', 'He:1.0', 
-                                   'He:0.60,Ar:0.40','custom', 'He:0.95,Ar:0.05']
+                                   'He:0.60,Ar:0.40','custom', 'He:0.95,Ar:0.05','Ar:1.0']
                                    
     for driver_condition in cfg['driver_condition_list']:
         if driver_condition not in driver_condition_check_list: