| 1 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 2 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 3 | ;ntime = 7 ;; le vrai indice IDL |
|---|
| 4 | nlevel = 0 |
|---|
| 5 | filename = '/donnees/aslmd/MODELES/LMD_MM_MARS/OUTILS_CONVERSION/wrfout_d03_2024-06-20_06:00:00_zabg' |
|---|
| 6 | filename = '/donnees/aslmd/MODELES/LMD_MM_MARS/OUTILS_CONVERSION/wrfout_d03_2024-06-20_06:00:00_z' |
|---|
| 7 | filename = '/donnees/aslmd/MODELES/LMD_MM_MARS/OUTILS_CONVERSION/wrfout_d03_2024-06-20_06:00:00_z' & nlevel=1 |
|---|
| 8 | save_ps = 'nest_polar_winds' |
|---|
| 9 | ;filename = '/donnees/aslmd/MODELES/LMD_MM_MARS/OUTILS_CONVERSION/wrfout_d01_2024-06-20_06:00:00_z' |
|---|
| 10 | ;save_ps = 'single_polar_winds' |
|---|
| 11 | ;filename = '/tmp7/aslmd/one_more_nest/test/wrfout_d02_2024-06-19_06:00:00_zabg' |
|---|
| 12 | ;save_ps = '2nest_polar_winds' |
|---|
| 13 | |
|---|
| 14 | ;coord2d = 'false' ;; si on veut grid point coordinates ;;CHANGER windowx and windowy |
|---|
| 15 | ;field1 = 'HGT' ;; omettre trace vitesse horizontale |
|---|
| 16 | ;field2 = 'XLAT' ;; contour |
|---|
| 17 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 18 | format = '(I0)' ;'(F4.1)' ;'(I0)' |
|---|
| 19 | colors = 32 |
|---|
| 20 | pal = 22 ;19 ;22 ;33 ;39 ;6 ;11 ;0 ;11 ;6 ;0 ;6 ;39 ;19 |
|---|
| 21 | title_user = 'Horizontal wind (m s!U-1!N) 20m AGL' |
|---|
| 22 | title_user = 'Horizontal wind (m s!U-1!N) 6km AMR' |
|---|
| 23 | title_user = 'Horizontal wind (m s!U-1!N) 20km AMR' |
|---|
| 24 | subtitle_user = 'LMD Mars Mesoscale' |
|---|
| 25 | subtitle_user = subtitle_user + ' / UTC!D0!N = 06:00am' |
|---|
| 26 | subtitle_user = subtitle_user + ' / Ls = 160!Uo!N' |
|---|
| 27 | subtitle_user = subtitle_user + ' / dx = 12km' |
|---|
| 28 | subtitle_user = subtitle_user + ' / nest 3' |
|---|
| 29 | poscb=0.95 |
|---|
| 30 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 31 | ;;; FILL LIMITS ;;; |
|---|
| 32 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 33 | minfield_init= 30. ;0. |
|---|
| 34 | maxfield_init= 60. ;30. |
|---|
| 35 | missing_value=1.e30 |
|---|
| 36 | lim_max = maxfield_init & w=where((what_I_plot ge lim_max) and (what_I_plot le 1e9)) & if (w[0] ne -1) then what_I_plot[w]=lim_max |
|---|
| 37 | lim_min = minfield_init & w=where(what_I_plot le lim_min) & if (w[0] ne -1) then what_I_plot[w]=lim_min |
|---|
| 38 | ;;lim_blank = 0.2 & w=where(abs(what_I_plot) le lim_blank) & if (w[0] ne -1) then what_I_plot[w]=missing_value |
|---|
| 39 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 40 | ;;; WINDS ;;; |
|---|
| 41 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 42 | windex=50. ;25. ;; default: 20. |
|---|
| 43 | stride=5. ;; default: 5. |
|---|
| 44 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 45 | ;;; CONTOUR ;;; |
|---|
| 46 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 47 | ;overcontour=overcontour-mean(overcontour) |
|---|
| 48 | overcontour=overcontour/1000. |
|---|
| 49 | lev=-10. + 0.5*findgen(50) |
|---|
| 50 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 51 | ;;; AXIS ;;; |
|---|
| 52 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 53 | ;isotropic='false' ;; default: true |
|---|
| 54 | intervalx=2. |
|---|
| 55 | intervaly=2. |
|---|
| 56 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 57 | ;;; MAP LIMITS ;;; |
|---|
| 58 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 59 | windowx=[-42.,-26.] |
|---|
| 60 | windowy=[-34.,-20.] |
|---|
| 61 | |
|---|