The problem about creating an idealized warm ocean eddy

Cool Findings and Plots

Moderators: arango, robertson

Post Reply
Message
Author
Alex5
Posts: 12
Joined: Tue Oct 08, 2013 4:46 pm
Location: HongKong

The problem about creating an idealized warm ocean eddy

#1 Unread post by Alex5 »

Dear all,

I want to create an idealized warm ocean eddy (symmetric structure in terms of temperature). I used several temperature profiles to make the initial condition, but the structure was a square area as shown in following figure. Do you have any idea about how to create the initial condition to get a more realistic eddy (circular).

Thanks in advance.

Alex
Attachments
woe_ini.png
woe_ini.png (9.63 KiB) Viewed 6597 times

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

Re: The problem about creating an idealized warm ocean eddy

#2 Unread post by kate »

This solves a different problem but creates an initial shape with circular symmetry:

Code: Select all

! Linear background
      DO k=1,N(ng)
        DO j=JstrT,JendT
          DO i=IstrT,IendT
            val1 = -0.02*z_r(i,j,k)
            t(i,j,k,1,itemp)=val1
            t(i,j,k,1,isalt)=0.0
          END DO
        END DO
      END DO
      DO k=1,N(ng)
        DO j=JstrT,JendT
            DO i=IstrT,IendT
            val1 = sqrt( ((xr(i,j)-40.e+3_r8)/10000.)**2 + & 
     &                   ((yr(i,j)-40.e+3_r8)/10000.)**2 + & 
     &                   ((z_r(i,j,k) + 500.)/200.)**2 )
            IF (val1 .le. 1) THEN
              t(i,j,k,1,itemp)=10.
              t(i,j,k,1,isalt)=1.0
            END IF
          END DO
        END DO
      END DO
Did you take geometry courses?

User avatar
patrickm
Posts: 26
Joined: Fri Apr 30, 2004 6:41 pm
Location: IRD, FRANCE
Contact:

Re: The problem about creating an idealized warm ocean eddy

#3 Unread post by patrickm »

a square vortex is possible, but you need some resonant vortex Rossby waves. See this plot by Schubert et al. (1999). I also heard that G. Roullet (LPO, France) has presented some results at the Ocean Sciences meeting where he could make a square vortex using some flux-corrected advection schemes ...
Attachments
Fig.3 from Schubert et al., JAS, 1999
Fig.3 from Schubert et al., JAS, 1999
Schubert_etal_JAS1999_fig3.png (404.23 KiB) Viewed 6573 times

rduran
Posts: 152
Joined: Fri Jan 08, 2010 7:22 pm
Location: Theiss Research

Re: The problem about creating an idealized warm ocean eddy

#4 Unread post by rduran »

I recall my undergrad adviser (physical oceanography) saying: I am sure you can find a square wave in the ocean. That actually makes sense if one thinks in terms of representing waves as a linear combination of trigonometric functions (Fourier series) -- you get a square with two step functions and you can approximate a step function by adding the right sines and cosines (i.e. the right waves) and in fact you don't even need too many terms in the series to get a decent convergence. Thus in physical ocean it is conceivable that if the right waves add up and you get a square. The question is how much will the square last?

That is a very interesting example Patrick, it proves my adviser right, and it looks like it lasted for about an hour or two ...

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

Re: The problem about creating an idealized warm ocean eddy

#5 Unread post by kate »

Patrick's example is pretty cool, but Alex could try starting from his square and seeing what happens - might be fun!

Alex5
Posts: 12
Joined: Tue Oct 08, 2013 4:46 pm
Location: HongKong

Re: The problem about creating an idealized warm ocean eddy

#6 Unread post by Alex5 »

Guys, thanks very much for all your suggestions :D . I will try it.

Post Reply