Fortran runtime error: End of file?why?

Post any questions or comments regarding the LINUX version of HYSPLIT. This includes the model execution, GUIs, results, or graphics. Be sure to mention the version of LINUX you are using.
Post Reply
mlc
Posts: 6
Joined: June 23rd, 2015, 9:16 am
Registered HYSPLIT User: No

Fortran runtime error: End of file?why?

Post by mlc »

Hi,
I am outputting trajectory tdump from 2.5*2.5 GP******.gbl data using HYSPLIT for LINUX. The error is:
At line 301 of file runset.f
Fortran runtime error: End of file


and my script is:

#!/bin/ksh
#-------------------------------------------------------------
# set default directory structure if not passed through

MDL="/public/home/hysplit/trunk" #exec path
OUT="/public/home/hysplit/trunk/pollution/outtdump" #out path
MET="/public/home/hysplit/trunk/pollution/alldata/2005" #data path
cd $OUT
#--------------------------------------------------------------
# set model simulation variables
syr=2005
smo=03
sda=05
shr=06
olat=43.88 #lat
olon=125.35 #lon
olvl=500 #hight
run=-72 #run hour
ztop=10000.0
met1=RP200503.gbl
#----------------------------------------------------------
# set up control file for dispersion/concentration simulation
echo "$syr $smo $sda $shr " >CONTROL
echo "1 ">>CONTROL
echo "$olat $olon $olvl ">>CONTROL
echo "$run ">>CONTROL
echo "0 ">>CONTROL
echo "$ztop ">>CONTROL
echo "12 ">>CONTROL
echo "$MET/ ">>CONTROL
echo "$met1 ">>CONTROL
echo "$OUT/ ">>CONTROL
echo "tdump ">>CONTROL
#----------------------------------------------------------
# run the concentration simulation
if [ -f tdump ];then rm tdump; fi
${MDL}/exec/hyts_std
mv $OUT/tdump $OUT/tdump_${olvl}_${syr}${smo}${sda}${shr}
#----------------------------------------------------------

Is there a setting problem that can be changed to correct this issue?

Thanks,

yours mlc
ariel.stein
Posts: 660
Joined: November 7th, 2012, 3:14 pm
Registered HYSPLIT User: Yes

Re: Fortran runtime error: End of file?why?

Post by ariel.stein »

Try running it manually.
/public/home/hysplit/trunk/exec/hyts_std

If it still does not work, make sure you have downloaded the whole meteorological file. It should be 120226 KB in size.
mlc
Posts: 6
Joined: June 23rd, 2015, 9:16 am
Registered HYSPLIT User: No

Re: Fortran runtime error: End of file?why?

Post by mlc »

thank you!
Post Reply

Return to “HYSPLIT for LINUX”