<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Dear All,&nbsp;<div><br></div><div>The command provided by Tomohiko</div><div><br></div><div><blockquote type="cite"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin-top: 0pt; margin-right: 0pt; margin-bottom: 0pt; margin-left: 0.8ex; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding-left: 1ex; position: static; z-index: auto; ">$ grep -lI "set data style" * | xargs sed -i -e s/set\ data\ style/set\ style\ data/g</blockquote></div></blockquote></div><div><br></div><div>changes "set data style" to "set data style" in most of the files, like Curve, Curve-e, etc.).&nbsp;</div><div><br></div><div>But there are still several files with "set data style" unchanged, and they are</div><div><br></div><div><div>Curve_lapw-e</div><div>dosplot2_lapw-e</div><div>dosplot_lapw-e</div><div>eplot2D_lapw-e</div><div>eplot_lapw-e</div><div>opticplot_lapw-e</div><div>rhoplot_lapw-e</div><div>specplot_lapw-e</div></div><div><br></div><div>Should these files also be modified?</div><div><br></div><div>Thanks,&nbsp;</div><div><br></div><div>Jianxin</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br><div><div>On Aug 2, 2010, at 1:28 AM, Donghui Guo wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Dear Tomas and Tasaka-san,<br>Thanks for your kind replies.<br>I took the suggestion provided by Tomohiko Tasaka<span> and it works perfect.<br>Thanks everyone.<br>best regards,<br>Donghui Guo<br></span><span class="hb"></span><br>

<div class="gmail_quote">On Fri, Jul 30, 2010 at 10:14 PM, Tomohiko Tasaka <span dir="ltr">&lt;<a href="mailto:tasaka@affinity-science.com">tasaka@affinity-science.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin-top: 0pt; margin-right: 0pt; margin-bottom: 0pt; margin-left: 0.8ex; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding-left: 1ex; position: static; z-index: auto; ">

Hi,<br>
<br>
"set data style" command is deprecated in gnuplot v4.4.<br>
so, you should change it to "set style data" in some scripts.<br>
<br>
For example,<br>
$ cd ${WIENROOT}<br>
$ grep -lI "set data style" * | xargs sed -i -e s/set\ data\ style/set\ style\ data/g<br>
<br>
<br>
here is transcript for gnuplot's help.<br>
<br>
$ gnuplot<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;G N U P L O T<br>
 &nbsp; &nbsp; &nbsp; &nbsp;Version 4.4 patchlevel 0-rc1<br>
 &nbsp; &nbsp; &nbsp; &nbsp;last modified Sat Nov 28 14:34:01 PST 2009<br>
 &nbsp; &nbsp; &nbsp; &nbsp;System: Linux 2.6.32.14-127.fc12.x86_64<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;Copyright (C) 1986-1993, 1998, 2004, 2007-2009<br>
 &nbsp; &nbsp; &nbsp; &nbsp;Thomas Williams, Colin Kelley and many others<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;gnuplot home: &nbsp; &nbsp; <a href="http://www.gnuplot.info/" target="_blank">http://www.gnuplot.info</a><br>
 &nbsp; &nbsp; &nbsp; &nbsp;faq, bugs, etc: &nbsp; type "help seeking-assistance"<br>
 &nbsp; &nbsp; &nbsp; &nbsp;immediate help: &nbsp; type "help"<br>
 &nbsp; &nbsp; &nbsp; &nbsp;plot window: &nbsp; &nbsp; &nbsp;hit 'h'<br>
<br>
Terminal type set to 'x11'<br>
gnuplot&gt; help set data<br>
&nbsp;This form of the command is deprecated. Please see `set style data`.<br>
<br>
gnuplot&gt; help set style data<br>
&nbsp;The `set style data` command changes the default plotting style for data<br>
&nbsp;plots.<br>
<br>
&nbsp;Syntax:<br>
 &nbsp; &nbsp; &nbsp; set style data &lt;plotting-style&gt;<br>
 &nbsp; &nbsp; &nbsp; show style data<br>
<br>
&nbsp;See `plotting styles` for the choices. &nbsp;If no choice is given, the choices are<br>
&nbsp;listed. &nbsp;`show style data` shows the current default data plotting style.<br>
<br>
gnuplot&gt;<br>
<br>
HTH<br>
Tomo<br>
<div><div></div><div class="h5"><br>
<br>
-----Original Message-----<br>
From: <a href="mailto:wien-bounces@zeus.theochem.tuwien.ac.at">wien-bounces@zeus.theochem.tuwien.ac.at</a> [mailto:<a href="mailto:wien-bounces@zeus.theochem.tuwien.ac.at">wien-bounces@zeus.theochem.tuwien.ac.at</a>] On Behalf Of<br>


Tomas Kana<br>
Sent: Friday, July 30, 2010 9:32 PM<br>
To: A Mailing list for WIEN2k users<br>
Subject: Re: [Wien] problem in plotting result by gnuplot<br>
<br>
Hello Donghui,<br>
&nbsp;The problem is probably not connected with WIEN2k, but with the Gnuplot code<br>
/or better to say in the second line of the file with gnuplot commands).<br>
In order to know more about &nbsp;how to set terminal in Gnuplot<br>
&nbsp;Just type<br>
gnuplot<br>
then type<br>
help set<br>
or<br>
help set terminal<br>
and then<br>
quit<br>
&nbsp;Probably the best solution would be to to copy :rho2 &nbsp;to &nbsp;myfileRho2<br>
&nbsp;and in the &nbsp;myfileRho2 replace the (probably second) line containing<br>
&nbsp;set term blablablabla<br>
to<br>
&nbsp;set terminal x11<br>
(this means you want to plot on screen)<br>
Then type<br>
gnuplot -persist &nbsp;myfileRho2<br>
<br>
 &nbsp; Hope this helps &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Tomas<br>
<br>
Dear Wien2k users,<br>
I met problem during plot the result by gnuplot (4.4).<br>
In command line after I input "rhoplot" or "dosplot", it is replied<br>
"":rho2" (:dos2), line 2: unrecognized option. See 'help set'."<br>
The problem is I don't know where can I find the 'help set' and resolve it.<br>
Can you generously give me any suggestion?<br>
The wien2k is WIEN2K.10, the compilers I used are ifort and gcc. The OS is<br>
ubuntu 10.04 (AMD64)<br>
Thank you.<br>
Donghui Guo<br>
Tsukuba University<br>
<br>
<br>
_______________________________________________<br>
Wien mailing list<br>
<a href="mailto:Wien@zeus.theochem.tuwien.ac.at">Wien@zeus.theochem.tuwien.ac.at</a><br>
<a href="http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien" target="_blank">http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien</a><br>
<br>
_______________________________________________<br>
Wien mailing list<br>
<a href="mailto:Wien@zeus.theochem.tuwien.ac.at">Wien@zeus.theochem.tuwien.ac.at</a><br>
<a href="http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien" target="_blank">http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien</a><br>
</div></div></blockquote></div><br>
_______________________________________________<br>Wien mailing list<br><a href="mailto:Wien@zeus.theochem.tuwien.ac.at">Wien@zeus.theochem.tuwien.ac.at</a><br>http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien<br></blockquote></div><div><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><br></div></div></span><br class="Apple-interchange-newline"></div></span><br class="Apple-interchange-newline"></div><br class="Apple-interchange-newline"><br class="Apple-interchange-newline">
</div>
<br></div></body></html>