[816] | 1 | program tem |
---|
| 2 | |
---|
| 3 | ! SL 01/2010: |
---|
| 4 | ! This program reads 4D (lon-lat-alt-time) fields recast in log P coordinates |
---|
| 5 | ! Developed from the tool built by Audrey Crespin during her PhD. |
---|
| 6 | ! |
---|
| 7 | ! it computes TransEulerianMean variables: |
---|
| 8 | ! |
---|
| 9 | ! vtem -- 3D -- Residual meridional speed (m s-1) |
---|
| 10 | ! wtem -- 3D -- Residual vertical speed (Pa s-1) |
---|
| 11 | ! psitem -- 3D -- Residual stream function (kg s-1) |
---|
| 12 | ! epfy -- 3D -- meridional component of Eliassen-Palm flux |
---|
| 13 | ! epfz -- 3D -- vertical component of Eliassen-Palm flux |
---|
| 14 | ! divepf -- 3D -- Divergence of Eliassen-Palm flux |
---|
| 15 | ! ammctem - 3D -- Acc due to residual MMC |
---|
| 16 | ! |
---|
| 17 | ! Minimal requirements and dependencies: |
---|
| 18 | ! The dataset must include the following data: |
---|
| 19 | ! - pressure vertical coordinate |
---|
| 20 | ! - surface pressure |
---|
| 21 | ! - atmospheric temperature |
---|
| 22 | ! - zonal, meridional and vertical (Pa/s) winds |
---|
| 23 | ! - altitude above areoid |
---|
| 24 | |
---|
| 25 | implicit none |
---|
| 26 | |
---|
| 27 | include "netcdf.inc" ! NetCDF definitions |
---|
| 28 | |
---|
| 29 | character (len=128) :: infile ! input file name (name_P.nc) |
---|
| 30 | character (len=128) :: outfile ! output file name |
---|
| 31 | |
---|
| 32 | character (len=64) :: text ! to store some text |
---|
| 33 | integer infid ! NetCDF input file ID |
---|
| 34 | integer outfid ! NetCDF output file ID |
---|
| 35 | integer lon_dimid,lat_dimid,alt_dimid,time_dimid ! NetCDF dimension IDs |
---|
| 36 | integer lon_varid,lat_varid,alt_varid,time_varid |
---|
| 37 | integer,dimension(3) :: datashape3d ! shape of 3D datasets |
---|
| 38 | |
---|
[1454] | 39 | real :: miss_val ! special "missing value" to specify missing data |
---|
| 40 | real,parameter :: miss_val_def=-9.99e+33 ! default value for "missing value" |
---|
[816] | 41 | real :: pi |
---|
| 42 | real,dimension(:),allocatable :: lon ! longitude |
---|
| 43 | integer lonlength ! # of grid points along longitude |
---|
| 44 | real,dimension(:),allocatable :: lat ! latitude |
---|
[1454] | 45 | real,dimension(:),allocatable :: coslat ! cos of latitude |
---|
[816] | 46 | integer latlength ! # of grid points along latitude |
---|
| 47 | real,dimension(:),allocatable :: plev ! Pressure levels (Pa) |
---|
| 48 | integer altlength ! # of grid point along altitude (of input datasets) |
---|
| 49 | real,dimension(:),allocatable :: time ! time |
---|
| 50 | integer timelength ! # of points along time |
---|
| 51 | real,dimension(:,:,:),allocatable :: ps ! surface pressure |
---|
| 52 | real,dimension(:,:,:,:),allocatable :: temp ! atmospheric temperature |
---|
| 53 | real,dimension(:,:,:,:),allocatable :: vitu ! zonal wind (in m/s) |
---|
| 54 | real,dimension(:,:,:,:),allocatable :: vitv ! meridional wind (in m/s) |
---|
| 55 | real,dimension(:,:,:,:),allocatable :: vitw ! vertical wind (in Pa/s, then converted in m/s) |
---|
| 56 | real,dimension(:,:,:,:),allocatable :: za ! above areoid levels (m) |
---|
| 57 | |
---|
| 58 | !!! output variables |
---|
| 59 | real,dimension(:,:,:),allocatable :: epy ! merid component of EP flux |
---|
| 60 | real,dimension(:,:,:),allocatable :: epz ! verti component of EP flux |
---|
| 61 | real,dimension(:,:,:),allocatable :: divep ! divergence of EP flux |
---|
| 62 | real,dimension(:,:,:),allocatable :: ammctem ! acc by residual mmc |
---|
| 63 | real,dimension(:,:,:),allocatable :: uzon ! mean zonal wind |
---|
| 64 | real,dimension(:,:,:),allocatable :: vtem ! residual merid wind |
---|
| 65 | real,dimension(:,:,:),allocatable :: wtem ! residual verti wind |
---|
| 66 | real,dimension(:,:,:),allocatable :: psitem ! residual stream function |
---|
| 67 | |
---|
| 68 | ! variables prepared for computation (4D) |
---|
| 69 | real,dimension(:,:,:,:),allocatable :: rayon ! distance to center (m) |
---|
| 70 | real,dimension(:,:,:,:),allocatable :: grav ! gravity field (m s-2) |
---|
| 71 | real,dimension(:,:,:,:),allocatable :: dmass ! mass in cell (kg) |
---|
| 72 | |
---|
| 73 | ! variables prepared for computation inside timeloop |
---|
| 74 | real,dimension(:,:,:),allocatable :: r3d ! distance to center (m) |
---|
| 75 | real,dimension(:,:,:),allocatable :: rsurg ! rayon/grav |
---|
| 76 | real,dimension(:,:,:),allocatable :: t3d ! temp |
---|
| 77 | real,dimension(:,:,:),allocatable :: u3d ! zonal wind |
---|
| 78 | real,dimension(:,:,:),allocatable :: v3d ! merid wind |
---|
| 79 | real,dimension(:,:,:),allocatable :: w3d ! verti wind |
---|
| 80 | real,dimension(:,:,:),allocatable :: pk3d ! Exner function |
---|
| 81 | real,dimension(:,:,:),allocatable :: teta ! potential temp |
---|
| 82 | ! variables obtained from computation inside timeloop |
---|
| 83 | real,dimension(:,:),allocatable :: epy2d ! merid component of EP flux |
---|
| 84 | real,dimension(:,:),allocatable :: epz2d ! verti component of EP flux |
---|
| 85 | real,dimension(:,:),allocatable :: div2d ! divergence of EP flux |
---|
| 86 | real,dimension(:,:),allocatable :: ammc2d ! acc by residual mmc |
---|
| 87 | real,dimension(:,:),allocatable :: ubar ! mean zonal wind |
---|
| 88 | real,dimension(:,:),allocatable :: vtem2d ! residual merid wind |
---|
| 89 | real,dimension(:,:),allocatable :: wtem2d ! residual verti wind |
---|
| 90 | |
---|
| 91 | real,dimension(:,:),allocatable :: rbar ! distance to center (zonal ave) |
---|
| 92 | real,dimension(:,:),allocatable :: rsurgbar ! rayon/grav |
---|
| 93 | real,dimension(:,:),allocatable :: vm ! merid mass flux (zonal ave) |
---|
| 94 | real,dimension(:,:),allocatable :: psi ! residual stream function |
---|
| 95 | real :: deltalat,deltalon ! lat and lon intervals in radians |
---|
| 96 | real,dimension(:,:,:),allocatable :: deltap ! pressure thickness of each layer (Pa) |
---|
| 97 | |
---|
| 98 | integer ierr,ierr1,ierr2 ! NetCDF routines return codes |
---|
| 99 | integer i,j,ilon,ilat,ilev,itim ! for loops |
---|
| 100 | logical :: lmdflag |
---|
| 101 | |
---|
| 102 | include "planet.h" |
---|
| 103 | |
---|
| 104 | !=============================================================================== |
---|
| 105 | ! 1. Input parameters |
---|
| 106 | !=============================================================================== |
---|
| 107 | |
---|
| 108 | pi = 2.*asin(1.) |
---|
[1454] | 109 | miss_val = miss_val_def |
---|
[816] | 110 | |
---|
| 111 | write(*,*) "" |
---|
| 112 | write(*,*) "You are working on the atmosphere of ",planet |
---|
| 113 | |
---|
| 114 | !=============================================================================== |
---|
| 115 | ! 1.1 Input file |
---|
| 116 | !=============================================================================== |
---|
| 117 | |
---|
| 118 | write(*,*) "" |
---|
| 119 | write(*,*) "Program valid for files with pressure axis (*_P.nc)" |
---|
| 120 | write(*,*) "Enter input file name:" |
---|
| 121 | |
---|
| 122 | read(*,'(a128)') infile |
---|
| 123 | write(*,*) "" |
---|
| 124 | |
---|
| 125 | ! open input file |
---|
| 126 | |
---|
| 127 | ierr = NF_OPEN(infile,NF_NOWRITE,infid) |
---|
| 128 | if (ierr.ne.NF_NOERR) then |
---|
| 129 | write(*,*) 'ERROR: Pb opening file ',trim(infile) |
---|
| 130 | stop "" |
---|
| 131 | endif |
---|
| 132 | |
---|
| 133 | !=============================================================================== |
---|
| 134 | ! 1.2 Get grids in lon,lat,alt(pressure),time |
---|
| 135 | !=============================================================================== |
---|
| 136 | |
---|
| 137 | call get_iddim(infid,lat_varid,latlength,lon_varid,lonlength,& |
---|
| 138 | alt_varid,altlength,time_varid,timelength,lmdflag ) |
---|
| 139 | |
---|
| 140 | allocate(lon(lonlength)) |
---|
| 141 | ierr=NF_GET_VAR_REAL(infid,lon_varid,lon) |
---|
| 142 | if (ierr.ne.NF_NOERR) stop "Error: Failed reading longitude" |
---|
| 143 | |
---|
| 144 | allocate(lat(latlength)) |
---|
| 145 | ierr=NF_GET_VAR_REAL(infid,lat_varid,lat) |
---|
| 146 | if (ierr.ne.NF_NOERR) stop "Error: Failed reading lat" |
---|
| 147 | |
---|
[1454] | 148 | allocate(coslat(latlength)) |
---|
| 149 | ! Beware of rounding problems at poles... |
---|
| 150 | coslat(:) = max(0.,cos(lat(:)*pi/180.)) |
---|
[816] | 151 | |
---|
| 152 | ! Lat, lon pressure intervals |
---|
[1454] | 153 | deltalat = abs(lat(2)-lat(1))*pi/180. |
---|
[816] | 154 | deltalon = abs(lon(2)-lon(1))*pi/180. |
---|
| 155 | |
---|
| 156 | allocate(plev(altlength)) |
---|
| 157 | ierr=NF_GET_VAR_REAL(infid,alt_varid,plev) |
---|
| 158 | if (ierr.ne.NF_NOERR) stop "Error: Failed reading altitude (ie pressure levels)" |
---|
| 159 | |
---|
| 160 | allocate(time(timelength)) |
---|
| 161 | ierr=NF_GET_VAR_REAL(infid,time_varid,time) |
---|
| 162 | if (ierr.ne.NF_NOERR) stop "Error: Failed reading time" |
---|
| 163 | |
---|
| 164 | !=============================================================================== |
---|
| 165 | ! 1.3 Get output file name |
---|
| 166 | !=============================================================================== |
---|
| 167 | write(*,*) "" |
---|
| 168 | !write(*,*) "Enter output file name" |
---|
| 169 | !read(*,*) outfile |
---|
| 170 | outfile=infile(1:len_trim(infile)-3)//"_TEM.nc" |
---|
| 171 | write(*,*) "Output file name is: "//trim(outfile) |
---|
| 172 | |
---|
| 173 | |
---|
| 174 | |
---|
| 175 | !=============================================================================== |
---|
| 176 | ! 2.1 Store needed fields |
---|
| 177 | !=============================================================================== |
---|
| 178 | |
---|
| 179 | !=============================================================================== |
---|
| 180 | ! 2.1.1 Surface pressure |
---|
| 181 | !=============================================================================== |
---|
| 182 | allocate(ps(lonlength,latlength,timelength)) |
---|
| 183 | |
---|
| 184 | text="ps" |
---|
| 185 | call get_var3d(infid,lonlength,latlength,timelength,text,ps,ierr1,ierr2) |
---|
| 186 | if (ierr1.ne.NF_NOERR) then |
---|
| 187 | write(*,*) " looking for psol instead... " |
---|
| 188 | text="psol" |
---|
| 189 | call get_var3d(infid,lonlength,latlength,timelength,text,ps,ierr1,ierr2) |
---|
| 190 | if (ierr1.ne.NF_NOERR) stop "Error: Failed to get psol ID" |
---|
| 191 | endif |
---|
| 192 | if (ierr2.ne.NF_NOERR) stop "Error: Failed reading surface pressure" |
---|
| 193 | |
---|
| 194 | !=============================================================================== |
---|
| 195 | ! 2.1.2 Atmospheric temperature |
---|
| 196 | !=============================================================================== |
---|
| 197 | allocate(temp(lonlength,latlength,altlength,timelength)) |
---|
| 198 | |
---|
| 199 | text="temp" |
---|
[1454] | 200 | call get_var4d(infid,lonlength,latlength,altlength,timelength,text,temp,miss_val,ierr1,ierr2) |
---|
[816] | 201 | if (ierr1.ne.NF_NOERR) then |
---|
| 202 | write(*,*) " looking for t instead... " |
---|
| 203 | text="t" |
---|
[1454] | 204 | call get_var4d(infid,lonlength,latlength,altlength,timelength,text,temp,miss_val,ierr1,ierr2) |
---|
[816] | 205 | if (ierr1.ne.NF_NOERR) stop "Error: Failed to get temperature ID" |
---|
| 206 | endif |
---|
| 207 | if (ierr2.ne.NF_NOERR) stop "Error: Failed reading temperature" |
---|
| 208 | |
---|
| 209 | !=============================================================================== |
---|
| 210 | ! 2.1.3 Winds |
---|
| 211 | !=============================================================================== |
---|
| 212 | allocate(vitu(lonlength,latlength,altlength,timelength)) |
---|
| 213 | allocate(vitv(lonlength,latlength,altlength,timelength)) |
---|
| 214 | allocate(vitw(lonlength,latlength,altlength,timelength)) |
---|
| 215 | |
---|
| 216 | ! zonal wind vitu (in m/s) |
---|
| 217 | text="vitu" |
---|
[1454] | 218 | call get_var4d(infid,lonlength,latlength,altlength,timelength,text,vitu,miss_val,ierr1,ierr2) |
---|
[816] | 219 | if (ierr1.ne.NF_NOERR) stop "Error: Failed to get vitu ID" |
---|
| 220 | if (ierr2.ne.NF_NOERR) stop "Error: Failed reading zonal wind" |
---|
| 221 | |
---|
| 222 | ! meridional wind vitv (in m/s) |
---|
| 223 | text="vitv" |
---|
[1454] | 224 | call get_var4d(infid,lonlength,latlength,altlength,timelength,text,vitv,miss_val,ierr1,ierr2) |
---|
[816] | 225 | if (ierr1.ne.NF_NOERR) stop "Error: Failed to get vitv ID" |
---|
| 226 | if (ierr2.ne.NF_NOERR) stop "Error: Failed reading meridional wind" |
---|
| 227 | |
---|
| 228 | ! vertical wind vitw (in Pa/s) |
---|
| 229 | text="vitw" |
---|
[1454] | 230 | call get_var4d(infid,lonlength,latlength,altlength,timelength,text,vitw,miss_val,ierr1,ierr2) |
---|
[816] | 231 | if (ierr1.ne.NF_NOERR) stop "Error: Failed to get vitw ID" |
---|
| 232 | if (ierr2.ne.NF_NOERR) stop "Error: Failed reading vertical wind" |
---|
| 233 | |
---|
| 234 | !=============================================================================== |
---|
| 235 | ! 2.1.4 Altitude above areoide |
---|
| 236 | !=============================================================================== |
---|
| 237 | ! Only needed if g(z) on Titan... |
---|
| 238 | |
---|
| 239 | ! allocate(za(lonlength,latlength,altlength,timelength)) |
---|
| 240 | |
---|
| 241 | ! text="zareoid" |
---|
[1454] | 242 | ! call get_var4d(infid,lonlength,latlength,altlength,timelength,text,za,miss_val,ierr1,ierr2) |
---|
[816] | 243 | ! if (ierr1.ne.NF_NOERR) stop "Error: Failed to get za ID" |
---|
| 244 | ! if (ierr2.ne.NF_NOERR) stop "Error: Failed reading zareoid" |
---|
| 245 | |
---|
| 246 | !=============================================================================== |
---|
| 247 | !!! Allocations before timeloop |
---|
| 248 | !=============================================================================== |
---|
| 249 | |
---|
| 250 | ! latlength correspond a jjm+1 |
---|
| 251 | ! mais lonlength correspond a iim |
---|
| 252 | ! pour boucler en longitude, on a besoin du point iim+1 (= 1) |
---|
| 253 | |
---|
| 254 | allocate(rayon(lonlength+1,latlength,altlength,timelength)) |
---|
| 255 | allocate(grav(lonlength+1,latlength,altlength,timelength)) |
---|
| 256 | allocate(dmass(lonlength+1,latlength,altlength,timelength)) |
---|
| 257 | |
---|
| 258 | allocate(r3d(lonlength+1,latlength,altlength)) |
---|
| 259 | allocate(rsurg(lonlength+1,latlength,altlength)) |
---|
| 260 | allocate(rbar(latlength,altlength)) |
---|
| 261 | allocate(rsurgbar(latlength,altlength)) |
---|
| 262 | |
---|
| 263 | allocate(t3d(lonlength+1,latlength,altlength)) |
---|
| 264 | allocate(u3d(lonlength+1,latlength,altlength)) |
---|
| 265 | allocate(v3d(lonlength+1,latlength,altlength)) |
---|
| 266 | allocate(w3d(lonlength+1,latlength,altlength)) |
---|
| 267 | allocate(pk3d(lonlength+1,latlength,altlength)) |
---|
| 268 | allocate(teta(lonlength+1,latlength,altlength)) |
---|
| 269 | |
---|
| 270 | allocate(epy(latlength,altlength,timelength)) |
---|
| 271 | allocate(epz(latlength,altlength,timelength)) |
---|
| 272 | allocate(divep(latlength,altlength,timelength)) |
---|
| 273 | allocate(ammctem(latlength,altlength,timelength)) |
---|
| 274 | allocate(uzon(latlength,altlength,timelength)) |
---|
| 275 | allocate(vtem(latlength,altlength,timelength)) |
---|
| 276 | allocate(wtem(latlength,altlength,timelength)) |
---|
| 277 | |
---|
| 278 | allocate(epy2d(latlength,altlength)) |
---|
| 279 | allocate(epz2d(latlength,altlength)) |
---|
| 280 | allocate(div2d(latlength,altlength)) |
---|
| 281 | allocate(ammc2d(latlength,altlength)) |
---|
| 282 | allocate(ubar(latlength,altlength)) |
---|
| 283 | allocate(vtem2d(latlength,altlength)) |
---|
| 284 | allocate(wtem2d(latlength,altlength)) |
---|
| 285 | |
---|
| 286 | allocate(vm(latlength,altlength)) |
---|
| 287 | allocate(psi(latlength,altlength)) |
---|
| 288 | allocate(psitem(latlength,altlength,timelength)) |
---|
| 289 | |
---|
| 290 | !=============================================================================== |
---|
| 291 | ! 2.2.2 Mass in cells |
---|
| 292 | !=============================================================================== |
---|
| 293 | |
---|
| 294 | do itim=1,timelength |
---|
| 295 | do ilon=1,lonlength |
---|
| 296 | do ilat=1,latlength |
---|
| 297 | do ilev=1,altlength |
---|
| 298 | ! Need to be consistent with GCM computations |
---|
| 299 | ! if (za(ilon,ilat,ilev,itim).ne.miss_val) then |
---|
| 300 | rayon(ilon,ilat,ilev,itim) = a0 |
---|
| 301 | ! rayon(ilon,ilat,ilev,itim) = za(ilon,ilat,ilev,itim) + a0 |
---|
| 302 | grav(ilon,ilat,ilev,itim) = g0*a0*a0 & |
---|
| 303 | /(rayon(ilon,ilat,ilev,itim)*rayon(ilon,ilat,ilev,itim)) |
---|
| 304 | ! else |
---|
| 305 | ! rayon(ilon,ilat,ilev,itim) = miss_val |
---|
| 306 | ! grav(ilon,ilat,ilev,itim) = miss_val |
---|
| 307 | ! endif |
---|
| 308 | enddo |
---|
| 309 | enddo |
---|
| 310 | enddo |
---|
| 311 | enddo ! timelength |
---|
| 312 | |
---|
| 313 | rayon(lonlength+1,:,:,:) = rayon(1,:,:,:) |
---|
| 314 | grav(lonlength+1,:,:,:) = grav(1,:,:,:) |
---|
| 315 | |
---|
[1454] | 316 | call cellmass(infid,latlength,lonlength+1,altlength,timelength,lmdflag, & |
---|
| 317 | miss_val,deltalon,deltalat,coslat,plev,ps,grav,rayon, & |
---|
[816] | 318 | dmass ) |
---|
| 319 | |
---|
| 320 | !=============================================================================== |
---|
| 321 | !!! GLOBAL TIME LOOP !!! |
---|
| 322 | !=============================================================================== |
---|
| 323 | do itim=1,timelength |
---|
| 324 | |
---|
| 325 | !=============================================================================== |
---|
| 326 | ! 2.2 Computations |
---|
| 327 | !=============================================================================== |
---|
| 328 | |
---|
| 329 | !=============================================================================== |
---|
| 330 | ! 2.2.3 Init of 3D variables |
---|
| 331 | !=============================================================================== |
---|
| 332 | |
---|
| 333 | do ilon=1,lonlength |
---|
| 334 | do ilat=1,latlength |
---|
| 335 | do ilev=1,altlength |
---|
| 336 | r3d(ilon,ilat,ilev) = rayon(ilon,ilat,ilev,itim) |
---|
| 337 | t3d(ilon,ilat,ilev) = temp(ilon,ilat,ilev,itim) |
---|
| 338 | u3d(ilon,ilat,ilev) = vitu(ilon,ilat,ilev,itim) |
---|
| 339 | v3d(ilon,ilat,ilev) = vitv(ilon,ilat,ilev,itim) |
---|
| 340 | w3d(ilon,ilat,ilev) = vitw(ilon,ilat,ilev,itim) |
---|
| 341 | pk3d(ilon,ilat,ilev) = cp0*(plev(ilev)/psref)**(R0/cp0) |
---|
| 342 | enddo |
---|
| 343 | enddo |
---|
| 344 | enddo |
---|
| 345 | |
---|
| 346 | t3d(lonlength+1,:,:) = t3d(1,:,:) |
---|
| 347 | u3d(lonlength+1,:,:) = u3d(1,:,:) |
---|
| 348 | v3d(lonlength+1,:,:) = v3d(1,:,:) |
---|
| 349 | w3d(lonlength+1,:,:) = w3d(1,:,:) |
---|
| 350 | pk3d(lonlength+1,:,:) = pk3d(1,:,:) |
---|
| 351 | |
---|
| 352 | call t2tpot((lonlength+1)*latlength*altlength,t3d,teta,pk3d) |
---|
| 353 | |
---|
| 354 | !=============================================================================== |
---|
| 355 | ! 2.2.4 TEM and Eliassen-Palm |
---|
| 356 | !=============================================================================== |
---|
| 357 | |
---|
| 358 | print*,"eliasflu_meridien",itim |
---|
| 359 | |
---|
| 360 | call moyzon(lonlength,latlength,altlength,miss_val,r3d,rbar) |
---|
| 361 | call moyzon(lonlength,latlength,altlength,miss_val,u3d,ubar) |
---|
| 362 | |
---|
[1454] | 363 | call epflux(lonlength+1,latlength,altlength,miss_val,lat,rbar & |
---|
[816] | 364 | ,teta,u3d,v3d,w3d,plev & |
---|
| 365 | ,epy2d,epz2d,div2d,vtem2d,wtem2d,ammc2d & |
---|
| 366 | ! ,vpupbar2d,wpupbar2d,vpvpbar2d,wpvpbar2d & |
---|
| 367 | ! ,vptetapbar2d,wptetapbar2d & |
---|
| 368 | ) |
---|
| 369 | |
---|
| 370 | !=============================================================================== |
---|
| 371 | ! 2.2.5 Stream function |
---|
| 372 | !=============================================================================== |
---|
| 373 | |
---|
| 374 | do ilon=1,lonlength+1 |
---|
| 375 | do ilat=1,latlength |
---|
| 376 | do ilev=1,altlength |
---|
| 377 | if (dmass(ilon,ilat,ilev,itim).ne.miss_val) then |
---|
| 378 | ! rsurg: r*dp/g = dm/(r cos(lat) dlon dlat) !!! |
---|
| 379 | rsurg(ilon,ilat,ilev) = dmass(ilon,ilat,ilev,itim) & |
---|
[1454] | 380 | / (r3d(ilon,ilat,ilev)*coslat(ilat)*deltalon*deltalat) |
---|
[816] | 381 | else |
---|
| 382 | rsurg(ilon,ilat,ilev) = miss_val |
---|
| 383 | endif |
---|
| 384 | enddo |
---|
| 385 | enddo |
---|
| 386 | enddo |
---|
| 387 | |
---|
| 388 | call moyzon(lonlength,latlength,altlength,miss_val,rsurg,rsurgbar) |
---|
| 389 | |
---|
| 390 | do ilat=1,latlength |
---|
| 391 | do ilev=1,altlength |
---|
| 392 | if ( (vtem2d(ilat,ilev).ne.miss_val).and. & |
---|
| 393 | (rsurgbar(ilat,ilev).ne.miss_val) ) then |
---|
| 394 | vm(ilat,ilev) = vtem2d(ilat,ilev) & |
---|
[1454] | 395 | * 2.*pi*rsurgbar(ilat,ilev)*coslat(ilat) |
---|
[816] | 396 | else |
---|
| 397 | vm(ilat,ilev) = miss_val |
---|
| 398 | endif |
---|
| 399 | enddo |
---|
| 400 | enddo |
---|
| 401 | |
---|
| 402 | |
---|
| 403 | do ilat=1,latlength |
---|
| 404 | psi(ilat,altlength) = 0. |
---|
| 405 | if (vm(ilat,altlength).ne.miss_val) then |
---|
| 406 | psi(ilat,altlength) = psi(ilat,altlength) & |
---|
| 407 | + vm(ilat,altlength) |
---|
| 408 | endif |
---|
| 409 | do ilev=altlength-1,1,-1 |
---|
| 410 | psi(ilat,ilev) = psi(ilat,ilev+1) |
---|
| 411 | if (vm(ilat,ilev).ne.miss_val) then |
---|
| 412 | psi(ilat,ilev) = psi(ilat,ilev) & |
---|
| 413 | + vm(ilat,ilev) |
---|
| 414 | endif |
---|
| 415 | enddo |
---|
| 416 | enddo |
---|
| 417 | |
---|
| 418 | !=============================================================================== |
---|
| 419 | ! 2.2.6 Building 2D+time variables |
---|
| 420 | !=============================================================================== |
---|
| 421 | |
---|
| 422 | epy(:,:,itim) = epy2d(:,:) |
---|
| 423 | epz(:,:,itim) = epz2d(:,:) |
---|
| 424 | divep(:,:,itim) = div2d(:,:) |
---|
| 425 | ammctem(:,:,itim) = ammc2d(:,:) |
---|
| 426 | uzon(:,:,itim) = ubar(:,:) |
---|
| 427 | vtem(:,:,itim) = vtem2d(:,:) |
---|
| 428 | wtem(:,:,itim) = wtem2d(:,:) |
---|
| 429 | psitem(:,:,itim) = psi(:,:) |
---|
| 430 | |
---|
| 431 | |
---|
| 432 | enddo ! timelength |
---|
| 433 | !=============================================================================== |
---|
| 434 | !!! END GLOBAL TIME LOOP !!! |
---|
| 435 | !=============================================================================== |
---|
| 436 | |
---|
| 437 | print*,"End of computations" |
---|
| 438 | |
---|
| 439 | !=============================================================================== |
---|
| 440 | ! 3. Create output file |
---|
| 441 | !=============================================================================== |
---|
| 442 | |
---|
| 443 | ! Create output file |
---|
| 444 | ierr=NF_CREATE(outfile,NF_CLOBBER,outfid) |
---|
| 445 | if (ierr.ne.NF_NOERR) then |
---|
| 446 | write(*,*)"Error: could not create file ",outfile |
---|
| 447 | stop |
---|
| 448 | endif |
---|
| 449 | |
---|
| 450 | !=============================================================================== |
---|
| 451 | ! 3.1. Define and write dimensions |
---|
| 452 | !=============================================================================== |
---|
| 453 | |
---|
| 454 | call write_dim(outfid,lonlength,latlength,altlength,timelength, & |
---|
| 455 | lon,lat,plev,time,lon_dimid,lat_dimid,alt_dimid,time_dimid) |
---|
| 456 | |
---|
| 457 | !=============================================================================== |
---|
| 458 | ! 3.2. Define and write variables |
---|
| 459 | !=============================================================================== |
---|
| 460 | |
---|
| 461 | datashape3d(1)=lat_dimid |
---|
| 462 | datashape3d(2)=alt_dimid |
---|
| 463 | datashape3d(3)=time_dimid |
---|
| 464 | |
---|
| 465 | call write_var3d(outfid,datashape3d,latlength,altlength,timelength,& |
---|
| 466 | "epy ", "EP flux on lat ","m3 s-2 ",miss_val,& |
---|
| 467 | epy ) |
---|
| 468 | |
---|
| 469 | call write_var3d(outfid,datashape3d,latlength,altlength,timelength,& |
---|
| 470 | "epz ", "EP flux on press ","m3 s-2 ",miss_val,& |
---|
| 471 | epz ) |
---|
| 472 | |
---|
| 473 | call write_var3d(outfid,datashape3d,latlength,altlength,timelength,& |
---|
| 474 | "divep ", "Div of EP flux ","m s-2 ",miss_val,& |
---|
| 475 | divep ) |
---|
| 476 | |
---|
| 477 | call write_var3d(outfid,datashape3d,latlength,altlength,timelength,& |
---|
| 478 | "ammctem ", "acc by residual mmc ","m s-2 ",miss_val,& |
---|
| 479 | ammctem ) |
---|
| 480 | |
---|
| 481 | call write_var3d(outfid,datashape3d,latlength,altlength,timelength,& |
---|
| 482 | "uzon ", "Mean zonal wind ","m s-1 ",miss_val,& |
---|
| 483 | uzon ) |
---|
| 484 | |
---|
| 485 | call write_var3d(outfid,datashape3d,latlength,altlength,timelength,& |
---|
| 486 | "vtem ", "Resid TEM merid wind","m s-1 ",miss_val,& |
---|
| 487 | vtem ) |
---|
| 488 | |
---|
| 489 | call write_var3d(outfid,datashape3d,latlength,altlength,timelength,& |
---|
| 490 | "wtem ", "Resid TEM verti wind","Pa s-1 ",miss_val,& |
---|
| 491 | wtem ) |
---|
| 492 | |
---|
| 493 | call write_var3d(outfid,datashape3d,latlength,altlength,timelength,& |
---|
| 494 | "psitem ", "Resid stream funct ","kg s-1 ",miss_val,& |
---|
| 495 | psitem ) |
---|
| 496 | |
---|
| 497 | |
---|
| 498 | !!!! Close output file |
---|
| 499 | ierr=NF_CLOSE(outfid) |
---|
| 500 | if (ierr.ne.NF_NOERR) write(*,*) 'Error, failed to close output file ',outfile |
---|
| 501 | |
---|
| 502 | |
---|
| 503 | end program |
---|