Thank you, Prof. Blaha and Prof. Marks !<div><br></div><div>   I will ask them about the libraries order.</div><div>  </div><div>   All the best,</div><div>                  Luis</div><div><br></div><div><br></div><div>
<br><br><div class="gmail_quote">2013/3/22 Laurence Marks <span dir="ltr">&lt;<a href="mailto:L-marks@northwestern.edu" target="_blank">L-marks@northwestern.edu</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Peter may want to know the full list (his email crossed as I composed<br>
this); if there is anything on the mixer or mini please send those to<br>
me.<br>
<br>
One thing as I have been working with someone else who also has aix.<br>
The essl library has some routines with the same names as those in<br>
lapack but different arguments. For certain parts of the mixer do not<br>
work if they are linked against essl first, so compilation options<br>
need to have (if essl is used)  &quot;-llapack and -lessl&quot; so lapack is<br>
searched first. They probably already know this.<br>
<div class="HOEnZb"><div class="h5"><br>
On Fri, Mar 22, 2013 at 8:41 AM, Luis Ogando &lt;<a href="mailto:lcodacal@gmail.com">lcodacal@gmail.com</a>&gt; wrote:<br>
&gt; Dear Prof. Blaha, Marks and WIEN2k community,<br>
&gt;<br>
&gt;    First of all, I would like to thank your comments on my IBM/XLF problem.<br>
&gt;    About the suggestion given by Prof. Blaha, people from RES believe that<br>
&gt; the problem is in the writing of case.energy (number of lines, ...) and not<br>
&gt; in the reading. Could you please indicate &quot;who&quot; writes case.energy ?<br>
&gt;<br>
&gt;    About the changes made in the code (asked by Prof. Marks), they sent me<br>
&gt; some information:<br>
&gt;<br>
&gt; ===================================================================================================<br>
&gt;<br>
&gt; SRC_lapw0:<br>
&gt;<br>
&gt; lapw0.F<br>
&gt;<br>
&gt; *line 256: line break inside a string, solution:<br>
&gt;<br>
&gt; if ((alphax .lt. 0d0) .or. (alphax .gt. 1d0)) stop &#39;error in case.inhf:&amp;<br>
&gt; &amp; the fraction of HF exchange should be between 0 and 1&#39;<br>
&gt;<br>
&gt; *several lines: comparison among logical values<br>
&gt;  .neq. and .eq. changed by .neqv. and .eqv.<br>
&gt;<br>
&gt; vx_screened.f:<br>
&gt;<br>
&gt; * line 47: .eqv.<br>
&gt;<br>
&gt; SRC_lapw1:<br>
&gt;<br>
&gt; inilpw.f<br>
&gt;<br>
&gt; *line 229: comment with # changed by !<br>
&gt;<br>
&gt; SRC_hf:<br>
&gt;<br>
&gt; calc_exhf.f<br>
&gt;<br>
&gt; several lines : line break inside a format: solution:<br>
&gt;<br>
&gt;<br>
&gt; write(6,&#39;(&quot;valence-valence HF exchange energy in sphere &quot;,i4,&amp;<br>
&gt; &amp; &quot; (mult=&quot;,i4,&quot;) = &quot;,f22.8,&quot; Ry&quot;)&#39;) &amp;<br>
&gt;<br>
&gt; calc_exhfvv_tmp_.F<br>
&gt;<br>
&gt; line 138.40: 1512-050 (W) Field separator is missing, in literal FMT<br>
&gt; specifier, after edit descriptor &quot;.  A comma is assumed.<br>
&gt;<br>
&gt; WE DO NOT UNDERSTAND THIS ASSUMPTION<br>
&gt;<br>
&gt; * line 269: changed<br>
&gt; igv = (/ 1:ng /) by<br>
&gt;<br>
&gt; igv = (/ (i,i=1,ng) /)<br>
&gt;<br>
&gt; * line 272: changed<br>
&gt; igv = (/ 1:(igs-1),(igs+1):ng /) by<br>
&gt;<br>
&gt; igv = (/ (i,i=1,igs-1),(i,i=igs+1,ng) /)<br>
&gt;<br>
&gt; calc_h.F:<br>
&gt;<br>
&gt; * line 290:<br>
&gt;<br>
&gt; indexb(1:nbf,1) = (/1:nbf/) by<br>
&gt;<br>
&gt; indexb(1:nbf,1) = (/ (i,i=1,nbf) /)<br>
&gt;<br>
&gt; * line 421:<br>
&gt;<br>
&gt; the same<br>
&gt;<br>
&gt; * line 424:<br>
&gt;<br>
&gt; again<br>
&gt;<br>
&gt; * problems with line break (&amp;) in many lines<br>
&gt; (1037,1038,1039, 1053, 1054, 1055)<br>
&gt;<br>
&gt; calc_rhovalvxsl.F<br>
&gt;<br>
&gt; * line breaks<br>
&gt;<br>
&gt; * line 25:<br>
&gt; r(1:nr) = r0(iat)*exp(dx(iat)*(dble((/1:nr/))-1d0)) by<br>
&gt;<br>
&gt; r(1:nr) = r0(iat)*exp(dx(iat)*(dble((/ (i,i=1,nr) /))-1d0))<br>
&gt;<br>
&gt; calc_ucuchucuc.f<br>
&gt;<br>
&gt; line 33:<br>
&gt;<br>
&gt;<br>
&gt; r(1:nr) = r0(iat)*exp(dx(iat)*(dble((/ (j,j=1,nr) /))-1d0)<br>
&gt;<br>
&gt;<br>
&gt; calc_uu.f<br>
&gt;<br>
&gt; line 23:<br>
&gt;<br>
&gt;<br>
&gt;  r(1:nr) = r0(iat)*exp(dx(iat)*(dble((/ (i,i=1,nr) /))-1d0))<br>
&gt;<br>
&gt; calc_uuchucu.f<br>
&gt;<br>
&gt; line 33:<br>
&gt;<br>
&gt;<br>
&gt; r(1:nr) = r0(iat)*exp(dx(iat)*(dble((/ (j,j=1,nr) /))-1d0))<br>
&gt;<br>
&gt;<br>
&gt; calc_uuchucuh.f<br>
&gt;<br>
&gt; line 35:<br>
&gt;<br>
&gt;<br>
&gt; r(1:nr) = r0(iat)*exp(dx(iat)*(dble((/ (j,j=1,nr) /))-1d0))<br>
&gt;<br>
&gt; calc_uuguu.f<br>
&gt;<br>
&gt; line 33<br>
&gt;<br>
&gt;<br>
&gt; r(1:nr) = r0(iat)*exp(dx(iat)*(dble((/ (j,j=1,nr) /))-1d0))<br>
&gt;<br>
&gt; calc_uuguuh.f<br>
&gt;<br>
&gt; line 35: the same<br>
&gt;<br>
&gt; calc_uui.f<br>
&gt;<br>
&gt; line 33: the same<br>
&gt;<br>
&gt; calc_uuih.f.<br>
&gt;<br>
&gt; line 35: the same<br>
&gt;<br>
&gt; calc_uvxslug.f<br>
&gt;<br>
&gt;<br>
&gt;    And it goes on repeating these kinds of problems !!!<br>
&gt;<br>
&gt; ===================================================================================================<br>
&gt;<br>
&gt;    Now, they are compiling WIEN2k with lower optimization flags. Let&#39;s see<br>
&gt; if anything changes.<br>
&gt;    All the best,<br>
&gt;                   Luis<br>
<br>
<br>
<br>
</div></div><div class="im HOEnZb">--<br>
Professor Laurence Marks<br>
Department of Materials Science and Engineering<br>
Northwestern University<br>
<a href="http://www.numis.northwestern.edu" target="_blank">www.numis.northwestern.edu</a> <a href="tel:1-847-491-3996" value="+18474913996">1-847-491-3996</a><br>
&quot;Research is to see what everybody else has seen, and to think what<br>
nobody else has thought&quot;<br>
Albert Szent-Gyorgi<br>
</div><div class="HOEnZb"><div class="h5">_______________________________________________<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></div>