New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
xxx_Eq_U.pro in branches/nemo_v3_3_beta/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/xxx_Eq_U.pro @ 2281

Last change on this file since 2281 was 2281, checked in by smasson, 14 years ago

set proper svn properties to all files...

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1pro xxx_Eq_U, U1, U2, sEXP1, sEXP2, start_end, POSTSCRIPT = postscript, _extra = ex
2 
3  compile_opt idl2, strictarrsubs
4 
5  if KEYWORD_SET(POSTSCRIPT) then begin
6     openps, '022_Eq_U_'+sEXP1+'_'+sEXP2+'_y'+start_end+'.ps', portrait = 1
7  endif
8                                ;
9  title = sEXP1+' Equatorial U_zonal / year '+start_end
10  pltz, U1, MININ = -1., MAXIN = 1., INTER = .1, typein = 'xz', STYLE = 'so0so', UNIT = varunit $
11        , small = [1,2,1], COAST_THICK = 2, TITLE = title, boxzoom = [20., 380., -1., 1., 0., 500.], ZOOM = 500, /PORTRAIT, _extra = ex
12
13  if sEXP1 ne sEXP2 then begin
14                                ;
15     title = sEXP1+' - '+sEXP2+' U_zonal / year '+start_end
16     pltz, U1.arr-U2.arr, MININ = -.5, MAXIN = .5, INTER = .1, typein = 'xz', STYLE = 'so0so', UNIT = varunit $
17           , small = [1,2,2], COAST_THICK = 2, TITLE = title, boxzoom = [20., 380., -1., 1., 0., 500.], ZOOM = 500, /PORTRAIT, _extra = ex
18                                ;
19  endif
20 
21  title ='Equatorial differences with Levitus and '+sEXP2+'of zonal velocity U'
22  text = [   title, '<img width="80%" src=/Users/sflod/TOOLS/my_IDL/PS/v32colib_v32colib/ps/021_Eq_U_'+sEXP1+'_'+sEXP2+'_y'+start_end+'.png  />  ' ]
23  putfile, '/tmp/prova.txt', text
24 
25  if KEYWORD_SET(POSTSCRIPT) then begin
26     closeps
27  endif
28
29  return
30end
Note: See TracBrowser for help on using the repository browser.