Custom Query (964 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (490 - 492 of 964)

Ticket Owner Reporter Resolution Summary
#600 arango arango Fixed Corrected bug in inital.F when runing 4D-PSAS and friends
Description

The array SporadicImpulse was used outside of an ng DO-loop. This was giving segmentation faults.

Many thanks to Andy Moore and the 4D-Var training class for bringing this to my attention.

#601 arango arango Fixed Corrected bug in obs_sen_is4dvar.h
Description

Several indices were not initialized in obs_sen_is4dvar.h when activating IS4DVAR_SENSITIVITY. We need to add:

      DO ng=1,Ngrids
#if defined ADJUST_BOUNDARY || defined ADJUST_STFLUX || \
    defined ADJUST_WSTRESS
        Lfinp(ng)=1         ! forcing index for input
        Lfout(ng)=1         ! forcing index for output history files
#endif
#ifdef ADJUST_BOUNDARY
        Lbinp(ng)=1         ! boundary index for input
        Lbout(ng)=1         ! boundary index for output history files
#endif
        ...
      END DO

We also need to turn off !readNLmod in obs_read.F when IS4DVAR_SENSITIVITY is activated:

# if defined TLM_OBS
#  if defined IS4DVAR_SENSITIVITY
        readNLmod=.FALSE.
#  else
        readNLmod=.TRUE.
#  endif
        readTLmod=.TRUE.
# else
        readNLmod=.FALSE.
        readTLmod=.FALSE.
# endif

Many thanks to Andy Moore and the 4D-Var training class for bringing this to my attention.

#602 arango arango Fixed Corrected few typos in several adjoint files
Description

Corrected several adjoint files that missed including module:

       USE mod_ncparam

Many thanks to Alan Berry for bringing this to my attention. I also corrected coupled of typos.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.