From ee5b6b8d3405b18c168238d8bb6bbe304cd94466 Mon Sep 17 00:00:00 2001 From: Tomas Torsvik Date: Tue, 10 Dec 2024 11:26:50 +0100 Subject: [PATCH] Replace CO2 range check ERROR with WARNING This is required when running idealized cases where CO2 levels can fall outside the expected limits. --- src/cpl/lnd_import_export.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpl/lnd_import_export.F90 b/src/cpl/lnd_import_export.F90 index 4923b721af..7dca45046b 100644 --- a/src/cpl/lnd_import_export.F90 +++ b/src/cpl/lnd_import_export.F90 @@ -248,7 +248,7 @@ subroutine lnd_import( bounds, x2l, glc_present, atm2lnd_inst, glc2lnd_inst) co2_ppmv_val = co2_ppmv end if if ( (co2_ppmv_val < 10.0_r8) .or. (co2_ppmv_val > 15000.0_r8) )then - call endrun( sub//' ERROR: CO2 is outside of an expected range' ) + write(iulog,*)'WARNING: CO2 outside expected range: ', co2_ppmv_val, co2_type_idx end if atm2lnd_inst%forc_pco2_grc(g) = co2_ppmv_val * 1.e-6_r8 * forc_pbot if (use_c13) then