;+ ; NAME: ; AAvt_README ; PURPOSE ; Print the file 'AAvt_README.pro' ; CATEGORY: ; Volatile transport and thermophysical modeling (vt) ; CALLING SEQUENCE: ; AAvt_README ; ; --------------------------------------------------------------------------- ; FILES AND ENVIRONMENT VARIABLES ; --------------------------------------------------------------------------- ; ; None ; ; --------------------------------------------------------------------------- ; FUNCTIONS ; --------------------------------------------------------------------------- ; ; A help file was ; ; mk_html_help,['.','vty16'],'AAvt.html' ; ; --------------------------------------------------------------------------- ; VARIABLES ; --------------------------------------------------------------------------- ; ; VT16 ; ---- ; In vty16, there are some common variable names used in multiple ; functions. ; ARRAY LENGTHS ; n_z : number of layers ; ; --------------------------------------------------------------------------- ; FUNCTIONS FROM ELSEWHERE IN THE LAYOUNG LIBRARY ; --------------------------------------------------------------------------- ; general/physconstants ; --------------------------------------------------------------------------- ;- pro AAvt_README findpro, 'AAvt_README', dirlist=dirlist, /noprint tmp = ' ' openr, lun, dirlist[0]+'/AAvt_README.pro', /get_lun while not eof(lun) do begin readf,lun,tmp print, tmp endwhile free_lun,lun end