Opened 17 years ago

Closed 17 years ago

#84 closed bug (Fixed)

regrid wrong dimension

Reported by: jcwarner Owned by: arango
Priority: major Milestone: Release ROMS/TOMS 3.1
Component: Nonlinear Version: 3.1
Keywords: Cc:

Description (last modified by arango)

regrid.F, bottom, has:

      IF (iflag.eq.linear) THEN
        CALL linterp2d (ng, 1, Nx, 1, Nx,                 
              &
         ............
      ELSE IF (iflag.eq.cubic) THEN
        CALL cinterp2d (ng, 1, Nx, 1, Nx,                               &
         .......
      END IF

I think this should be

        CALL linterp2d (ng, 1, Nx, 1, Ny,                               &
        CALL cinterp2d (ng, 1, Nx, 1, Ny,                               &

Change History (1)

comment:1 by arango, 17 years ago

Description: modified (diff)
Resolution: Fixed
Status: newclosed

Yes. Good catch.

Note: See TracTickets for help on using tickets.