How to set the boundary in an idealized topography?

Report or discuss software problems and other woes

Moderators: arango, robertson

Post Reply
Message
Author
zhaoyun

How to set the boundary in an idealized topography?

#1 Unread post by zhaoyun »

Dear all,
I want to set up an idealized upwelling model with shelf shope of 0.001 and wind stress of 0.1. But I confused with the boundary condition. I want to set the western boundary to be land; eastern, northern,southern boundary to be sea. So my boundary defines are as following :
#define NS_PERIODIC
# define WESTERN_WALL
And I don't know how to set the eastern boundary. When I study the upwelling case in ROMS/include files, it just defines EW_PERIODIC, and doesn't deal with the nothern and southern boundary.
Attachments are the model results, but I find the water can't flow out of the eastern boudary, and the high temperature in the surface goes eastward and downwelles in the eastern boudary. I have define: # define SPONGE and # define RADIATION_2D. I don't know why this phenomenan happens. Could any kind person give me some suggestions? Thank you very much!
Attachments
vertical cross-section of cross-shore velocity(u)
vertical cross-section of cross-shore velocity(u)
u.jpg (22.74 KiB) Viewed 2468 times
vertical cross-section of vertical velocity(w)
vertical cross-section of vertical velocity(w)
w.jpg (19.5 KiB) Viewed 2468 times
vertical cross-section of temperature(T)
vertical cross-section of temperature(T)
temp.jpg (23.49 KiB) Viewed 2468 times
temperature and current at 5m depth
temperature and current at 5m depth

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

Re: How to set the boundary in an idealized topography?

#2 Unread post by kate »

ROMS no longer has EASTERN_WALL as something it pays attention to. Instead,a wall is the default if no other boundary condition has been set. You need to explicitly tell it to use an open boundary condition. The UPWELLING case ROMS comes with has two walls, upwelling on one, downwelling on the other - this was intentional so as to avoid the open boundary problem.

Try:

Code: Select all

#  define EAST_M2RADIATION
#  define EAST_FSRADIATION
#  define EAST_M3RADIATION
#  define EAST_TRADIATION
The 2D_RADIATION is a modifier on the other radiation options.

zhaoyun

Re: How to set the boundary in an idealized topography?

#3 Unread post by zhaoyun »

Dear Prof. Kate, you are always so kind. After I follow your suggestion, The results seem to be all right. Thanks again.
By the way, I attachs the results.
Attachments
current+temperature
current+temperature
uv+temp2.jpg (76.42 KiB) Viewed 2418 times
w
w
w2.jpg (18.46 KiB) Viewed 2418 times
u
u
u2.jpg (22.46 KiB) Viewed 2418 times
temperature
temperature
temp2.jpg (22.34 KiB) Viewed 2418 times

Post Reply