Opened 18 years ago
Closed 18 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 )
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 , 18 years ago
| Description: | modified (diff) |
|---|---|
| Resolution: | → Fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

Yes. Good catch.