Custom Query (964 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (133 - 135 of 964)

Ticket Owner Reporter Resolution Summary
#187 arango kate Fixed bug in shapiro filter option for LMD_BKPP
Description

Some indexing problems - see attached patch.

#188 arango m.hadfield Fixed Misplaced #endif in def_floats.F
Description

In ROMS/Utility/def_floats.F, lines 493-501 are

# ifdef SOLVE3D
          ELSE IF (TRIM(var_name(i)).eq.'depth') THEN
            got_var(iddpth)=.TRUE.
            fltVid(iddpth,ng)=var_id(i)
          ELSE IF (TRIM(var_name(i)).eq.TRIM(Vname(1,idDano))) THEN
            got_var(idDano)=.TRUE.
            fltVid(idDano,ng)=var_id(i)
          END IF
# endif

This leads to the END IF being omitted when SOLVE3D is undefined. The last two lines need to be swapped, ie:

# ifdef SOLVE3D
          ELSE IF (TRIM(var_name(i)).eq.'depth') THEN
            got_var(iddpth)=.TRUE.
            fltVid(iddpth,ng)=var_id(i)
          ELSE IF (TRIM(var_name(i)).eq.TRIM(Vname(1,idDano))) THEN
            got_var(idDano)=.TRUE.
            fltVid(idDano,ng)=var_id(i)
# endif
          END IF
#189 arango arango Fixed Few corrections to big IO update
Description

Corrected few typos and bugs to the big IO update in src:ticket:184. Many thanks to Mark Hadfield, Gordon Zhang and Bin Zhang for reporting these problems.

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