From d0de9da5b7e5f15c42cb7c093087b95436d495f4 Mon Sep 17 00:00:00 2001
From: Stefano Serafin <serafin@jet02.img.univie.ac.at>
Date: Fri, 2 Aug 2024 09:33:59 +0200
Subject: [PATCH] moved figure plotting options to end

---
 PE_CBL.py | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/PE_CBL.py b/PE_CBL.py
index 750dc0a..5e346ac 100644
--- a/PE_CBL.py
+++ b/PE_CBL.py
@@ -95,20 +95,6 @@ if __name__ == '__main__':
     assert np.mod(default_da_settings['assimilation_interval'],integration_dt)==0,\
         "Assimilation interval must be an integer multiplier of model dt"
 
-    # Decide what figures to plot
-    fig01 = False
-    fig02 = False
-    fig03 = False
-    fig04 = False
-    fig05 = False
-    fig06 = False
-    fig07 = False
-    fig08 = True
-    
-    # Other possible, optional, plots
-    opt01 = False # assimilation of a single observation
-    opt02 = False # assimilation of profiles at two times
-
     # Whether or not to run experiments without parameter estimation
     # Applies only to sets B&C; no-PE run is always computed for experiments A&D
     noPE_runs = False
@@ -423,6 +409,20 @@ if __name__ == '__main__':
 
     ########################################################################
 
+    # Decide what figures to plot
+    fig01 = False
+    fig02 = False
+    fig03 = False
+    fig04 = False
+    fig05 = False
+    fig06 = False
+    fig07 = False
+    fig08 = True
+    
+    # Other possible, optional, plots
+    opt01 = False # assimilation of a single observation
+    opt02 = False # assimilation of profiles at two times
+
     if fig01:
 
         # Create a copy of the default settings
-- 
GitLab