Commit Graph

564 Commits

Author SHA1 Message Date
Paolo Giannozzi cf088926d6 Small fixes for XLF compilation 2019-08-22 09:11:55 +02:00
Paolo Giannozzi ea0d58461b XML and FoX cleanup and simplification
No need to set a unit for I/O
2019-08-10 09:33:39 +02:00
fabrizio22 48ef4e0f01 init_xc removed and some clean-up 2019-06-25 14:44:26 +02:00
fabrizio22 5a51ead3db minor fixes on rho signs 2019-06-17 16:23:21 +02:00
Fabrizio Ferrari dfddf86119 init_xc removed except in funct.f90 and other adjustments 2019-06-10 16:00:23 +00:00
Pietro Delugas 8b84aaeade non matching dims of arrays could cause segfault 2019-06-06 09:31:53 +00:00
Fabrizio Ferrari 9a5bc8d5a8 GGA vectorized and libxc functionals included 2019-06-04 07:26:24 +00:00
fabrizio22 5e5884bf6a master updated 2019-05-08 12:08:43 +02:00
fabrizio22 69780af0f3 Aligned with develop 2019-04-18 18:03:44 +02:00
giannozz 0463c2aefc misspells 2019-04-18 12:58:34 +02:00
fabrizio22 d6917bb0bc dmxc routines extracted from funct 2019-03-11 12:55:50 +01:00
fabrizio22 cfd2d4571a align with develop 2019-03-04 17:06:34 +01:00
fabrizio22 a62adae6b8 Merge branch 'develop' of https://gitlab.com/fabrizio22/q-e 2019-03-04 16:49:55 +01:00
fabrizio22 df10e23ed6 dmxc routines vectorized 2019-03-04 16:39:28 +01:00
Tone Kokalj af580b5874 A few more changes so that "make gui" creates a functional PWgui. 2019-03-01 23:44:12 +01:00
Paolo Giannozzi 6ab7abb6f6 html and txt manuals updated 2019-03-01 18:00:27 +01:00
Paolo Giannozzi 6834a502ef [Skip-CI] Obsolete version 'svn' replaced by 'git'; various .PHONY of questionable
usefulness, referring to no longer existing procedure devised for svn, removed
2019-03-01 17:42:56 +01:00
Pietro Delugas 958e1ca535 updating pdf files doc files 2019-02-28 18:46:00 +01:00
fabrizio22 d9d8edee9d Merge branch 'develop' of https://gitlab.com/fabrizio22/q-e 2019-02-28 14:14:03 +01:00
Lorenzo Paulatto 463b8507fa More bugfixes, syntax that xlf90 does not like:
1. FLUSH is an intrisic function
2. to continuate a string, you must end the firt line AND start the second with an '&'
3. missing comma in format string
2019-02-28 09:53:04 +00:00
fabrizio22 343cd6bfac Internal library for LDA xc functionals 2019-02-21 14:47:18 +01:00
Paolo Giannozzi e256a3e8dc [Skip-CI] Makefile and documentation cleanup 2019-02-14 09:45:46 +01:00
Paolo Giannozzi cebb7c1765 Initialization of "ortho" (or "diag") group taken out from mp_startup routine. The reasons for this are
- to avoid unneeded dependencies: currently each and every code that initializes mpi depends upon LAXlib,
  including those that never diagonalize a matrix (e.g., ld1.x). This is completely ridiculous.
- to be free to choose the parallelization of linear algebra after data is read and metabolized.
  It used to be done like that some time ago, by the way.
IMPORTANT NOTICE: all codes that use parallelization of linear algebra MUST explicitly call mp_start_diag.
Currently this is done by: cp.x, pw.x, neb.x, ph.x, projwfc.x. All other codes cannot currently use linear
algebra parallelization (linear algebra will run on 1 processor).
2019-02-07 21:06:21 +01:00
Paolo Giannozzi e82cf997de More minor fixes 2019-01-03 16:06:50 +01:00
Paolo Giannozzi 30b1cfe753 Some (very) old gfortran versions do not like F2007 syntax "open(newunit=..."
Replaced with old-style call to "open(unit=..." + find_free_unit
2018-08-23 10:39:06 +02:00
Paolo Giannozzi f5fa63f300 Miscellaneous cleanup of dependencies: some unneeded ones removed,
some needed for parallel make added. Maybe the latter works again.
2018-08-06 16:26:02 +02:00
Paolo Giannozzi 46a61bb91f Some compilers do not like that a variable has the same name of a module 2018-08-06 16:25:11 +02:00
Stefano de Gironcoli bc59e529d8 more missing dependencies for libppcg.a added to Makefiles 2018-08-03 04:15:56 +02:00
Stefano De Gironcoli 3c5389add6 more changes to add a ppcg option to c_bands.f90 diagonalization 2018-08-03 04:15:56 +02:00
Miguel Carvajal 3d822928ab Add definition for KLI on funct 2018-07-18 12:12:18 +02:00
Miguel Carvajal 9f0541c9c7 Add missing setting 2018-07-17 18:41:49 +02:00
Miguel Carvajal af3851fe76 Add KLI implementation and examples 2018-07-17 18:31:44 +02:00
Paolo Giannozzi 7f32483fff IN all Makefiles, LIBS replaced by QELIBS, to prevent unlikely but not
impossible clashes with LIBS as defined by the OS or as used by the configure's
of external libraries (e.g. FoX, for which one such problem has been reported)
2018-07-11 19:58:41 +02:00
Paolo Giannozzi a929525d7b No valid reason to re-defined IFLAGS inside Makefiles 2018-07-04 16:42:12 +02:00
Paolo Giannozzi ae635622db Added compiled documentation files in *.pdf. *txt, *html format.
Since github and gitlab just distribute a snapshot of the git repository,
these files must be in the repository as well. NOTA BENE:
All changes MUST GO TO *.tex or *.def FILES, NOT to these files!
Also note that the "make doc" machinery produces also *.xml files and
latex2html converted html versions of latex files. I don't think they belong
to the repository (latex files should maybe be replaced by md files)
2018-06-22 17:41:44 +02:00
Pietro Delugas a0e50a5bd8 ios variable was checked before initialization
in ld1_writeout a ios variable was passed to
errore as IERR flag without initialization. When  the program is
compiled with PGI this usually causes an unwanted stop.
2018-04-30 11:27:26 +02:00
Pietro Delugas d8cb0187c3 Upf IO 2018-02-07 13:09:37 +00:00
Pietro Delugas e31685e139 Squashed commit of the following:
Added write out of upf files with pp_pseudo schema:
    ld1 can now write with the pp_pseudo schema if the use_xsd logical
    variable is given in the inputp namelist  with value .true.

    writing routines have been somewhat reorganized, the write_upf_module
    provides now the interface for both writing routines, actual code is
    instead in two specific modules. The pseudo_config type and the
    nullify_pseudo config subroutine have been moved in pseudo_types.f90

    write_upf_v2.f90 modified to use FoX libraries instead of iotk

    cleanup and documentation added.
2018-01-25 19:06:59 +01:00
Paolo Giannozzi 9af0317f8d Once again, a problem with modules in Makefiles. In order to simplify things,
after the proliferarion of modules and libraries, I have collected into a
single variable BASEMOD_FLAGS, defined in make.inc, the list of directories
for modules, to be included by all codes. IMPORTANT NOTICE: re-run "configure",
the new Makefiles work in conjunction with the new make.inc
2018-01-08 22:28:48 +01:00
degironc a8340b4d40 Duplicate routines cdiaghg and rdiaghg moved from KS_Solvers/XX to LAXlib.
Duplicate module mp_bands.f90 moved from KS_Solvers/XX to UtilXlib/mp_bands_util.f90
Makefiles and makedepend.sh updated
 
that should take care of the duplicate symbols




git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@13712 c92efa57-630b-4861-b058-cf58834340f0
2017-08-08 21:44:44 +00:00
degironc 4636bca635 KS_Solvers directory has been created with three subdirectories:
KS_Solvers/CG, KS_Solvers/Davidson, KS_Solvers/Davidson_RCI.
Two are currently used by QE, the third one implements the Davidson
diagonalization within the Reverse Communication Interface paradigm,
courtesy of Micael Oliveira.

KS_Solvers routines depend only on lower level libraries, notably UtilXlib, 
LAXlib, (SCA)LAPACK, and BLAS.

reorganization can be improved. For instance some duplicated routines like
cdiaghg and rdiaghg could/should be moved in LAXlib. This could reduce the need
to include  KS_Solvers directories in the link step of many codes.    

Minimal changes to calling sequence have been made, essentially just adding
h_psi,s_psi,g_psi and h_1psi,s_1psi routines names as arguments (with a
specific calling sequence ihardcode inside the routines that agree with PWSCF one). 
This could be avoided adopting the RCI paradigm.

Compiled in serial and parallel, 177/182 pw tests passed (3 that were failing 
even before on my laptop pw-berry, pw-langevin, pw-pawatom + 2 unknown==not tested), 
12 /17 cp tests passed (some o2-us-para-pbe-X fail but the same was for the 
original version)

I assume the modified calling procedure is working and the problem lies somewhere else.
 
Randomly tested some examples in pw, ph, pwcond and it seams to work.

Please report any problem.





git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@13644 c92efa57-630b-4861-b058-cf58834340f0
2017-07-29 12:19:19 +00:00
degironc 7fd27ba0ad UtilXlib directory created to contain a library (libutil.a) for
basic operations: error handling, timing clocks, interfaces to basic mpi 
calls, find free units...
These routines are moved from Modules and dependencies to other modules
are removed. 

MANY files are updated to comply with the move.



git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@13629 c92efa57-630b-4861-b058-cf58834340f0
2017-07-26 11:15:20 +00:00
giannozz 7967f0ce7a Documentation updated
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@13159 c92efa57-630b-4861-b058-cf58834340f0
2016-11-17 07:00:30 +00:00
spigafi 0b71c41c4e Protective if
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@13046 c92efa57-630b-4861-b058-cf58834340f0
2016-10-01 13:46:12 +00:00
kokalj 36efa19456 Improved handling of dependencies between input_xx.xsl and resulting INPUT_*.html|txt
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@13021 c92efa57-630b-4861-b058-cf58834340f0
2016-09-26 14:11:09 +00:00
spigafi 332a0f368c Ifdef preprocessor macro refactoring (atomic)
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12976 c92efa57-630b-4861-b058-cf58834340f0
2016-09-18 15:08:19 +00:00
giannozz 95cf2364ef Too many hyphens in "helpdoc --version", the correct syntax is "-version"
Now "make doc" works again


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12886 c92efa57-630b-4861-b058-cf58834340f0
2016-08-30 16:54:59 +00:00
giannozz 7ce7d161bf Makefile simplification: TOPDIR is used to define the same LIBOBJS everywhere.
In case of trouble, see instruction in the make.inc file.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12840 c92efa57-630b-4861-b058-cf58834340f0
2016-08-25 19:27:31 +00:00
kokalj 46995ee4b7 - adding QE version number to INPUT_LD1.*
- some minor stylistic changes ...








git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12797 c92efa57-630b-4861-b058-cf58834340f0
2016-08-18 19:03:01 +00:00
giannozz ecc67b8508 flib/ is no more: documentation updated
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12586 c92efa57-630b-4861-b058-cf58834340f0
2016-07-19 16:18:04 +00:00
giannozz 02ce4df8d6 make.sys => make.inc. All other codes using make.sys should modify their build
mechanism accordingly.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12539 c92efa57-630b-4861-b058-cf58834340f0
2016-06-25 07:26:50 +00:00
giannozz df30a665aa Explicit preprocessing produces *_tmp.f90 files instead of *.F90 files, to
prevent trouble with OS-X. May or may not work (it won't unless configure
is updated: please somebody with v.2.63 of autoconf do it), may turn out to
be obsolete anyway.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12364 c92efa57-630b-4861-b058-cf58834340f0
2016-04-27 14:53:38 +00:00
giannozz d41ea95171 First cleanup of the short/long/dftname mess in module funct: clumsy routine
"dft_name", used in just one place (apparently for no good reason), replaced 
by two simpler versions, analogous to "get_dft_name"


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12363 c92efa57-630b-4861-b058-cf58834340f0
2016-04-26 18:27:19 +00:00
giannozz 1fea499fae Since we are in the process of moving stuff around, I think it is a good
moment to get rid of flib/, whose usefulness is far from obvious. The content
of flib/ is now in Modules/. Many makefiles updated and little more. 

Packages using QE routines should just remove links to flib/flib.a.



git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12072 c92efa57-630b-4861-b058-cf58834340f0
2016-01-26 12:51:02 +00:00
ccavazzoni b543af9416 - changes for LAXlib
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12057 c92efa57-630b-4861-b058-cf58834340f0
2016-01-23 20:04:50 +00:00
giannozz e193710eaa Routines invmat, invmat_complex, dinv_matrix, zinv_matrix merged into a small
module invmat. Should be harmless, but please check.



git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@12028 c92efa57-630b-4861-b058-cf58834340f0
2016-01-20 10:34:27 +00:00
spigafi a63293fa90 shorname len must comply (20 instead of 6, see Modules/funct.f90)
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11925 c92efa57-630b-4861-b058-cf58834340f0
2015-12-29 07:23:17 +00:00
spigafi 6a3c54be1d Fixes -- Thanks to Bruce Becker (CSIR, South Africa).
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11898 c92efa57-630b-4861-b058-cf58834340f0
2015-12-06 15:09:29 +00:00
ccavazzoni fdf7766648 - FFT Modules replaced by FFTXlib
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11857 c92efa57-630b-4861-b058-cf58834340f0
2015-11-21 10:37:48 +00:00
giannozz de20984a52 Minor updates to documentation, misspell
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11822 c92efa57-630b-4861-b058-cf58834340f0
2015-11-02 10:27:46 +00:00
giannozz bf643c0fd5 A few more small fixes for NAG compilers; '' replaced by " in formats
for readability


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11731 c92efa57-630b-4861-b058-cf58834340f0
2015-09-17 06:11:44 +00:00
paulatto 583d3a9d62 Last fix for gipaw+test+relativistic calculation was not fixing all.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11410 c92efa57-630b-4861-b058-cf58834340f0
2015-02-24 14:06:26 +00:00
paulatto 198cd5d568 ld1inc.f90 : a small bug was preventing the generation of non-PAW pseudopotentials with GIPAw reconstruction data
ld1.f90    : running the pseudopotential test when also including GIPAW reconstruction data is not advisable, as the test configuration may not make sense and produce random and unrelated error message. The possible workaround is to test the pseudopotential first and only include the gipaw data later. A real solution would be to not recycle the test configuration to do other stuff.

LP



git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11296 c92efa57-630b-4861-b058-cf58834340f0
2014-12-15 16:05:07 +00:00
giannozz 820374c16e Corrected various badly spelled "Angstrom"
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11128 c92efa57-630b-4861-b058-cf58834340f0
2014-08-04 10:15:48 +00:00
giannozz 903200ce58 Cleanup: function exc_t rather useless
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11086 c92efa57-630b-4861-b058-cf58834340f0
2014-07-15 14:50:37 +00:00
giannozz 27f52fd1c8 There are too many interface functions computing exchange and correlation.
Functions exc_t, vxc_t moved out of module funct to the only package where 
they are used (atomic). They should be replaced by xc, xc_spin sooner or
later. 


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11084 c92efa57-630b-4861-b058-cf58834340f0
2014-07-14 20:14:34 +00:00
giannozz 6163ac94d0 Meta-GGA functionals have their own index, distinct from the one used to
classify GGA ones. Some cleanup in functionals-related stuff. Much more is
badly needed.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11083 c92efa57-630b-4861-b058-cf58834340f0
2014-07-14 15:56:02 +00:00
giannozz 32a66f3def Harmless bug: a return value should be set also in case of error exit
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@11073 c92efa57-630b-4861-b058-cf58834340f0
2014-07-04 16:15:55 +00:00
dalcorso d189c985ab Small corrections.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10620 c92efa57-630b-4861-b058-cf58834340f0
2013-11-25 16:44:44 +00:00
giannozz 7c01062ba0 Final (?) set of changes to the build system, especially for Windows (Axel)
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10590 c92efa57-630b-4861-b058-cf58834340f0
2013-11-07 21:06:06 +00:00
giannozz 54aa35ab00 More changes to the build system for MinGW by Axel, more Makefile cleanup
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10586 c92efa57-630b-4861-b058-cf58834340f0
2013-11-06 20:45:58 +00:00
giannozz 1976e0715c Removal of tabulators. There are many more in iotk and QHA, though
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10525 c92efa57-630b-4861-b058-cf58834340f0
2013-10-10 12:59:30 +00:00
ccavazzoni b1fabb0fd9 - more clean-up about mp call without communicator
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10498 c92efa57-630b-4861-b058-cf58834340f0
2013-09-28 23:32:46 +00:00
dalcorso da9cdbde59 qmin slightly increased to fit f states.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10479 c92efa57-630b-4861-b058-cf58834340f0
2013-09-26 13:41:50 +00:00
dalcorso 66a5da2666 The point at which the scattering state is equal to 1 is chosen in the
same way in the US and PAW cases.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10478 c92efa57-630b-4861-b058-cf58834340f0
2013-09-26 13:31:30 +00:00
giannozz e0086b6882 The IFLAGS variable is set in make.sys to a value that works if sources are
one directory down, not two directories down. Now it is explicitly set to
something (hopefully) appropriate everywhere. Note that include/f_defs.h 
is obsolete and shouldn't be included (it is still in GWW and TDDFPT).


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10446 c92efa57-630b-4861-b058-cf58834340f0
2013-08-26 16:36:27 +00:00
giannozz 866be5743b Misspells
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10344 c92efa57-630b-4861-b058-cf58834340f0
2013-07-03 14:41:35 +00:00
dalcorso 37b1b13777 Correction of previous commit.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10332 c92efa57-630b-4861-b058-cf58834340f0
2013-06-24 08:30:22 +00:00
dalcorso 9292630fd4 Start to search q at slightly larger values.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10324 c92efa57-630b-4861-b058-cf58834340f0
2013-06-18 15:25:17 +00:00
dalcorso 08c13af989 Too large wavefunctions at arbitrary energies might introduce numerical
noise in the atomic code. Set these wavefunctions to zero.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10323 c92efa57-630b-4861-b058-cf58834340f0
2013-06-18 15:22:52 +00:00
giannozz c484334976 Fixed an out-of-bounds condition, courtesy of Vittorio Zecca. I am not sure
that the treatment of the first point is really correct, though, but it cannot
be any worse than before 


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10304 c92efa57-630b-4861-b058-cf58834340f0
2013-06-10 08:55:48 +00:00
dalcorso 3bf30db6b5 Small change to previous commit.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10239 c92efa57-630b-4861-b058-cf58834340f0
2013-05-09 17:04:29 +00:00
dalcorso 827e7808ad Gipaw reconstruction introduced as a default in the ld1 code.
Not available in the FR case.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10238 c92efa57-630b-4861-b058-cf58834340f0
2013-05-09 16:17:13 +00:00
dalcorso 4abe617cb1 Add a ! on output when the difference between AE and PS eigenvalues
are higher than 5 mRy.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10088 c92efa57-630b-4861-b058-cf58834340f0
2013-03-29 17:32:24 +00:00
giannozz 14f86f7cdf RAM buffers extended to atomic wavefunctions and to other wavefunction arrays
used in DFT+U and in electric-field calculations. The few tests I made seem to
work.


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10075 c92efa57-630b-4861-b058-cf58834340f0
2013-03-21 15:44:29 +00:00
dalcorso 2398d8d45d Added info to download pslibrary in the atomic README file.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10058 c92efa57-630b-4861-b058-cf58834340f0
2013-03-15 08:35:03 +00:00
paulatto c4545cdfc3 ld1.x was not reading input any more
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10018 c92efa57-630b-4861-b058-cf58834340f0
2013-02-26 16:21:02 +00:00
giannozz 2f1d6fe097 Numeric constant given a name (ry_to_ghz) and moved to constants.f90;
make.depend updated; misc. minor things


git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10015 c92efa57-630b-4861-b058-cf58834340f0
2013-02-26 10:03:47 +00:00
giannozz 8a83c41a9a Compilation errors after recent changes in I/O routines
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10004 c92efa57-630b-4861-b058-cf58834340f0
2013-02-24 20:41:45 +00:00
giannozz f0e2f5a47c Minor corrections
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@10000 c92efa57-630b-4861-b058-cf58834340f0
2013-02-21 08:26:04 +00:00
dalcorso 1ddcaecc26 Small change to output of ld1.x, and compilation problem.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9721 c92efa57-630b-4861-b058-cf58834340f0
2012-12-17 08:45:42 +00:00
kokalj 61d5fe322c typo correction
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9651 c92efa57-630b-4861-b058-cf58834340f0
2012-11-22 13:23:58 +00:00
sclauzer 76f9328eaa Spelling
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9607 c92efa57-630b-4861-b058-cf58834340f0
2012-11-07 14:09:34 +00:00
paulatto 686da708fa lnc2paw uses Troullier-Martin method when tm is true. I'm 100% it makes sense, but I'm 100% sure nobody uses this feature anyway.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9568 c92efa57-630b-4861-b058-cf58834340f0
2012-10-24 08:45:25 +00:00
paulatto 85ae080d88 I do not know what the default rmatch_augfun was before, but it was not a good idea
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9551 c92efa57-630b-4861-b058-cf58834340f0
2012-10-18 15:54:54 +00:00
dalcorso 2b0fb4dbd2 Several misleading error messages.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9491 c92efa57-630b-4861-b058-cf58834340f0
2012-10-08 13:10:07 +00:00
dalcorso a44414897d The maximum number of pseudo wave functions increased.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9490 c92efa57-630b-4861-b058-cf58834340f0
2012-10-08 12:53:27 +00:00
dalcorso 3266643e09 Misleading error messages.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9489 c92efa57-630b-4861-b058-cf58834340f0
2012-10-08 12:45:55 +00:00
spigafi f9fd698334 Now make_clean is correctly called -> examples is cleaned -> atomic is cleaned.
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9480 c92efa57-630b-4861-b058-cf58834340f0
2012-10-04 21:28:19 +00:00
giannozz b046034620 Added printout of DFT with all details, as suggested by Guido
git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@9421 c92efa57-630b-4861-b058-cf58834340f0
2012-09-12 10:12:07 +00:00