From 9c3767683538044010ef74ce808de0b1e7630363 Mon Sep 17 00:00:00 2001 From: David Minton Date: Tue, 6 Jul 2021 22:30:55 -0400 Subject: [PATCH] More fixes to parameter reader --- python/swiftest/swiftest/io.py | 1 + python/swiftest/swiftest/simulation_class.py | 1 + 2 files changed, 2 insertions(+) diff --git a/python/swiftest/swiftest/io.py b/python/swiftest/swiftest/io.py index 9d325552c..03c6506c4 100644 --- a/python/swiftest/swiftest/io.py +++ b/python/swiftest/swiftest/io.py @@ -277,6 +277,7 @@ def write_labeled_param(param, param_file_name): 'BIN_OUT', 'ENC_OUT', 'CHK_QMIN', + 'CHK_RMIN', 'CHK_RMAX', 'CHK_EJECT', 'CHK_QMIN_COORD', diff --git a/python/swiftest/swiftest/simulation_class.py b/python/swiftest/swiftest/simulation_class.py index 4a34b92ab..bdcb4ea56 100644 --- a/python/swiftest/swiftest/simulation_class.py +++ b/python/swiftest/swiftest/simulation_class.py @@ -28,6 +28,7 @@ def __init__(self, codename="Swiftest", param_file=""): 'OUT_STAT': "REPLACE", 'CHK_RMAX': "1000.0", 'CHK_EJECT': "1000.0", + 'CHK_RMIN': constants.RSun / constants.AU2M, 'CHK_QMIN': constants.RSun / constants.AU2M, 'CHK_QMIN_COORD': "HELIO", 'CHK_QMIN_RANGE': f"{constants.RSun / constants.AU2M} 1000.0",