Skip to content

Small fixes in namelist_cfg

Hi,

I was playing with namelists in the workflow (branch experiment/control-100y-1990-debug-configuration) and I realized that 2 missing/extra points in booleans make f90nml interpret them as strings instead of booleans.

These are the changes needed:

diff --git a/nemo/V40/eORCA1_Z75/1990010100/namelist_cfg b/nemo/V40/eORCA1_Z75/1990010100/namelist_cfg
index 963b430..625c593 100755
--- a/nemo/V40/eORCA1_Z75/1990010100/namelist_cfg
+++ b/nemo/V40/eORCA1_Z75/1990010100/namelist_cfg
@@ -42,11 +42,11 @@ rn_isfhmin=1.00,
 rn_rdt=3600,
 /
 &nambias
-ln_bias=.false..           
+ln_bias=.false.              
@@ -105,7 +105,7 @@ sn_vcur='vcurrent',-1,'v_current',.false.,.true.,'monthly','','Vme',
-ln_dm2dc=.false,
+ln_dm2dc=.false.,

I'll probably see more of these and probably they are in different branches, I'm not sure about the best way of fixing it.

No rush, just FYI.