Bug in 'sbcrnf.F90' ?
When activated ln_rnf = .true., and running AMM12 regional config experiments (nn_hls = 1), I found that the nemo is interrupted by an error: " sbc_rnf_init: runoff depth not positive, and not -999 or -1, rnf value in file fort.999".
I identified that the problem is comes from DO-loop on module 'sbcrnf.F90', line 370. The runoff depth is taken as zero in the halo area. If you replace " DO_2D( nn_hls, nn_hls, nn_hls, nn_hls )" with "DO_2D( 0, 0, 0, 0 )" the problem is solved. Is this the correct solution or is it a problem with the input files?