From 0269c2023ea458d8f1fcd27de4fc1c2332d7e221 Mon Sep 17 00:00:00 2001 From: Ben-Choat Date: Mon, 8 Jan 2024 11:36:58 -0700 Subject: [PATCH] Update cfe.py - remove QINSUR as default variable name mapping When cfe is ran with PET (PET->CFE) QINSUR is not an output file of PET and including this as a default mapping breaks the calibration either immediately or after the first iteration when the ngen configuration file (e.g., Realization_pet_cfe_calibNC.json) is updated. --- python/ngen_conf/src/ngen/config/cfe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ngen_conf/src/ngen/config/cfe.py b/python/ngen_conf/src/ngen/config/cfe.py index 29eea7cc..03532f06 100644 --- a/python/ngen_conf/src/ngen/config/cfe.py +++ b/python/ngen_conf/src/ngen/config/cfe.py @@ -27,5 +27,5 @@ class CFE(BMIC): #will also include these mappings _variable_names_map = { #"water_potential_evaporation_flux": "EVAPOTRANS", - "atmosphere_water__liquid_equivalent_precipitation_rate": "QINSUR" + #"atmosphere_water__liquid_equivalent_precipitation_rate": "QINSUR" }