Changeset 819 for trunk/LMDZ.TITAN/Tools


Ignore:
Timestamp:
Oct 26, 2012, 11:31:16 AM (12 years ago)
Author:
slebonnois
Message:
  • newstart-VT.F and start2archive-VT.F added in dyn3d/, their name indicating that they are tools for Venus and Titan.
  • doc for these tools added
  • correction of a bug on angmom (Venus and Titan postprocessing tools)
  • one tool (lat_torques) removed because not updated until further needed
  • correction of a bug in phyetat0 (Venus)
Location:
trunk/LMDZ.TITAN/Tools
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/Tools/README

    r816 r819  
    22DOC/documentation/vt-tools.pdf
    33
     4List of tools:
     5zrecast
     6angmom
     7energy
     8fft
     9psi
     10stability
     11tem
     12tmc
     13
    414Known bugs:
    5 - when using a file histmth_P.nc, missing surface pressure...
    6 I need to add it in zrecast.
    715
  • trunk/LMDZ.TITAN/Tools/angmom.F90

    r816 r819  
    236236allocate(phis(lonlength,latlength))
    237237
     238if(lmdflag) then
     239text="psol"
     240else
    238241text="PS"
     242endif
    239243call get_var3d(infid,lonlength,latlength,timelength,text,ps,ierr1,ierr2)
    240244if (ierr1.ne.NF_NOERR) then
    241   write(*,*) "  looking for psol instead... "
    242   text="psol"
     245  write(*,*) "  looking for ps instead... "
     246  text="ps"
    243247  call get_var3d(infid,lonlength,latlength,timelength,text,ps,ierr1,ierr2)
    244   if (ierr1.ne.NF_NOERR) stop "Error: Failed to get psol ID"
     248  if (ierr1.ne.NF_NOERR) stop "Error: Failed to get ps ID"
    245249endif
    246250if (ierr2.ne.NF_NOERR) stop "Error: Failed reading surface pressure"
Note: See TracChangeset for help on using the changeset viewer.