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>&quot;Segmentation fault&quot;</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 = &#39;2008020511&#39;<br> set TIME_ANALYSIS   = &#39;2008020512&#39;<br> set TIME_WINDOW_MAX = &#39;2008020513&#39;<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 &quot; &quot;<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 &gt;! namelist.file &lt;&lt; EOF<br> &amp;TIME_WINDOW<br>  TIME_WINDOW_MIN = &#39;$TIME_WINDOW_MIN&#39;, ; beginning of time window<br>  TIME_WINDOW_MAX = &#39;$TIME_WINDOW_MAX&#39;, ; end of time window<br> &amp;<br>
<br> &amp;SKEW_PLOTS<br>  skewt_plot = .FALSE.,<br> &amp;<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 &gt;! 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 &quot; &quot;<br> echo &quot;Map.exe &gt;&amp;! Map.out.${TIME_ANALYSIS}&quot;<br>./Map.exe &gt;&amp;! Map.out.${TIME_ANALYSIS}<br> echo &quot; &quot;<br>
<br> if (-e gmeta) \<br> echo &quot;Generate plots in metafile gmeta.${TIME_ANALYSIS}&quot;<br> mv gmeta gmeta.${TIME_ANALYSIS}<br><br>else<br> echo &quot;Cannot find input file $OBSDATA&quot;<br>endif<br> echo &quot; &quot;<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>