Changeset 819 for trunk/LMDZ.TITAN/Tools
- Timestamp:
- Oct 26, 2012, 11:31:16 AM (12 years ago)
- Location:
- trunk/LMDZ.TITAN/Tools
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/Tools/README
r816 r819 2 2 DOC/documentation/vt-tools.pdf 3 3 4 List of tools: 5 zrecast 6 angmom 7 energy 8 fft 9 psi 10 stability 11 tem 12 tmc 13 4 14 Known bugs: 5 - when using a file histmth_P.nc, missing surface pressure...6 I need to add it in zrecast.7 15 -
trunk/LMDZ.TITAN/Tools/angmom.F90
r816 r819 236 236 allocate(phis(lonlength,latlength)) 237 237 238 if(lmdflag) then 239 text="psol" 240 else 238 241 text="PS" 242 endif 239 243 call get_var3d(infid,lonlength,latlength,timelength,text,ps,ierr1,ierr2) 240 244 if (ierr1.ne.NF_NOERR) then 241 write(*,*) " looking for ps olinstead... "242 text="ps ol"245 write(*,*) " looking for ps instead... " 246 text="ps" 243 247 call get_var3d(infid,lonlength,latlength,timelength,text,ps,ierr1,ierr2) 244 if (ierr1.ne.NF_NOERR) stop "Error: Failed to get ps olID"248 if (ierr1.ne.NF_NOERR) stop "Error: Failed to get ps ID" 245 249 endif 246 250 if (ierr2.ne.NF_NOERR) stop "Error: Failed reading surface pressure"
Note: See TracChangeset
for help on using the changeset viewer.