Custom Query (986 matches)
Results (490 - 492 of 986)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#599 | Done | Updated few Matlab scripts | ||
Description |
Several Matlab scripts were updated to process 4D-Var observations. The d_sst_obs.m and load_sst_pfeg.m were updated to use various NOAA CoastWatch SST products. The load_sst_pfeg.m also have the option to use the native NetCDF interface to process the OpenDAP files. |
|||
#600 | 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 | 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. |