While working on correcting wind forcing in IS4DVAR, I found something suspicious.
Utility/normalization.F looks like
Code: Select all
# if defined ADJUST_WSTRESS || defined ADJUST_STFLUX  (line 2236)
          ......
          ......
      IF (LwrtNRM(ifile,ng)) THEN                     (line 2244)
          ......
          ......
# endif                                               (line 2488)
# if defined ADJUST_STFLUX && defined SOLVE3D         (line 2489)
          ......
          ......
      END IF                                          (line 2636)
# endif                                               (line 2637)I can see the same suspicious structure later in this code.
Code: Select all
# if defined ADJUST_WSTRESS || defined ADJUST_STFLUX  (line 4527)
          ......
          ......
      IF (LwrtNRM(ifile,ng)) THEN                     (line 4535)
          ......
          ......
# endif                                               (line 4722)
# if defined ADJUST_STFLUX && defined SOLVE3D         (line 4724)
          ......
          ......
      END IF                                          (line 4855)
# endif                                               (line 4856)Thank you.
Hajoon

 It only appeared when the
  It only appeared when the  
 