Dear Users,<br><br>I have successfully compile MAP_PLOT with gfortran and gcc and Map.exe is created<br><br clear="all">$ls -l Map.exe <br><b>-rwxr-xr-x 1 root root 2661008 Oct 20 18:35 Map.exe</b><br><br>But when running the on tutorial observation data it is giving <b>"Segmentation fault"</b><br>
<br>here is my Map.csh script <br><br>cat Map.csh <br>#! /bin/csh<br>##################################################################<br># This deck is used to produce a map of mesoscale observations<br># sites, and produce the data files for 4DVAR.<br>
#<br># Yong-Run Guo<br># 07/28/1999<br># modified on 06/07/2002<br>###################################################################<br>
#set echo<br> unalias mv rm<br><br> set Map_plot = /root/WRF/WRFDA_V3.1.1/var/obsproc/MAP_plot<br><br> set TIME_WINDOW_MIN = '2008020511'<br> set TIME_ANALYSIS = '2008020512'<br> set TIME_WINDOW_MAX = '2008020513'<br>
<br> set OBSDATA = /root/WRF/WRFDA_V3.1.1/var/obsproc/obs_gts_2008-02-05_12:00:00.3DVAR<br><br>#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br># ============== END OF CHANGES =================<br>
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br> echo " "<br><br> if (-e $OBSDATA) then<br><br> if ( -e gmeta ) rm -f gmeta<br> if ( -e namelist.file ) rm -f namelist.file<br>
cat >! namelist.file << EOF<br> &TIME_WINDOW<br> TIME_WINDOW_MIN = '$TIME_WINDOW_MIN', ; beginning of time window<br> TIME_WINDOW_MAX = '$TIME_WINDOW_MAX', ; end of time window<br> &<br>
<br> &SKEW_PLOTS<br> skewt_plot = .FALSE.,<br> &<br>EOF<br><br>if (! -e no_comment.sed ) ln -sf ${Map_plot}/no_comment.sed no_comment.sed<br>if (! -e mapco.tbl ) ln -sf ${Map_plot}/mapco.tbl mapco.tbl<br>
if (! -e Map.exe ) ln -sf ${Map_plot}/Map.exe Map.exe<br><br> sed -f no_comment.sed namelist.file >! tmp.file<br> mv tmp.file namelist.file<br># ==========================================================================<br>
<br> ln -s -f $OBSDATA fort.99<br> ln -s -f namelist.file fort.15<br><br> echo " "<br> echo "Map.exe >&! Map.out.${TIME_ANALYSIS}"<br>./Map.exe >&! Map.out.${TIME_ANALYSIS}<br> echo " "<br>
<br> if (-e gmeta) \<br> echo "Generate plots in metafile gmeta.${TIME_ANALYSIS}"<br> mv gmeta gmeta.${TIME_ANALYSIS}<br><br>else<br> echo "Cannot find input file $OBSDATA"<br>endif<br> echo " "<br>
<br><br><b>Can Any body please help to find out, why it is behaving so</b> ?<br><br>Thanks inadvance<br><br>M.SureshKumar<br><br><br>