horizontal interpolation of ROMS forcing files

Discussion of how to use ROMS on different regional and basin scale applications.

Moderators: arango, robertson

Post Reply
Message
Author
isabelmonteiro
Posts: 39
Joined: Wed Feb 18, 2004 3:50 pm
Location: Instituto de Meteorologia

horizontal interpolation of ROMS forcing files

#1 Unread post by isabelmonteiro »

Hello,

I would like to know what is the horizontal interpolation method that ROMS uses for putting input forcing files in ROMS grid. If I use 3 different resolution forcing files and plot Y-wind stress as a function of longitude for a given latitude and a given time I get a very different profile using the nearest point from the original forcing file or the nearest point from ROMS interpolated svstr from History file.
Thanks

Isabel

User avatar
kate
Posts: 4088
Joined: Wed Jul 02, 2003 5:29 pm
Location: CFOS/UAF, USA

Re: horizontal interpolation of ROMS forcing files

#2 Unread post by kate »

ROMS uses either bilinear or bicubic interpolation. You set it in mod_scalars.F:

Code: Select all

!  Interpolation scheme.
!
        integer, parameter :: linear = 0        ! linear interpolation
        integer, parameter :: cubic  = 1        ! cubic  interpolation
!
        integer :: InterpFlag = cubic          ! interpolation flag

Post Reply