Page 1 of 1

How do you specify more than one meteorological file in the ‘set Meteo_file’ line of the Auto_traj.tcl script so the

Posted: July 22nd, 2021, 11:58 am
by sonny.zinn
[Note that the question and the answer below are recreated from a HYSPLIT FAQ site that predates this forum site. The original posting date is unknown.]

Question:
How do you specify more than one meteorological file in the ‘set Meteo_file’ line of the Auto_traj.tcl script so the loop can run through many months of data?

Answer:

Code: Select all

file delete Control
   set f [open Control w]
   puts $f "$Start_time"
   puts $f "1"
   puts $f "$Start_loc"
   puts $f "$Run_hours"
   puts $f "$Vert_coord"
   puts $f "$Top_model"
   puts $f "2"
   puts $f "$Meteo_path"
   puts $f "$Meteo_file"
   puts $f "$Meteo_path2"
   puts $f "$Meteo_file2"
   puts $f "$Output_path"
   puts $f "$Output_file"
   close $f 
Roland Draxler