mirror of
https://github.com/triqs/dft_tools
synced 2024-11-07 06:33:48 +01:00
Replace pytriqs with python.
There are still some more occurances of pytriqs. Is on my list to be checked.
This commit is contained in:
parent
e187958774
commit
ad3a23196a
@ -27,15 +27,3 @@ x optic does not write a case.pmat file
|
|||||||
Make sure that you set line 6 to "ON" and put a "1" to the following line.
|
Make sure that you set line 6 to "ON" and put a "1" to the following line.
|
||||||
The "1" is undocumented in Wien2k, but needed to have `case.pmat` written.
|
The "1" is undocumented in Wien2k, but needed to have `case.pmat` written.
|
||||||
However, we are working on reading directly the `case.mommat2` file.
|
However, we are working on reading directly the `case.mommat2` file.
|
||||||
|
|
||||||
No module named pytriqs.*** error when running a script
|
|
||||||
-------------------------------------------------------
|
|
||||||
|
|
||||||
Make sure that have properly build, tested and installed TRIQS and DFTTools
|
|
||||||
using, make, make test and make install. Additionally, you should always
|
|
||||||
use pytriqs to call your scripts, e.g. pytriqs yourscript.py
|
|
||||||
|
|
||||||
Why is my calculation not working?
|
|
||||||
----------------------------------
|
|
||||||
|
|
||||||
Are you running in the right shell?
|
|
||||||
|
@ -67,7 +67,7 @@ def main():
|
|||||||
This function should not be called directly but via a bash script
|
This function should not be called directly but via a bash script
|
||||||
'plovasp' invoking the main function as follows:
|
'plovasp' invoking the main function as follows:
|
||||||
|
|
||||||
pytriqs -m applications.dft.converters.plovasp.converter $@
|
python -m applications.dft.converters.plovasp.converter $@
|
||||||
"""
|
"""
|
||||||
narg = len(sys.argv)
|
narg = len(sys.argv)
|
||||||
if narg < 2:
|
if narg < 2:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
@CMAKE_INSTALL_PREFIX@/bin/pytriqs -m triqs_dft_tools.converters.plovasp.converter $@
|
python -m triqs_dft_tools.converters.plovasp.converter $@
|
||||||
|
|
||||||
|
@ -81,7 +81,6 @@ echo " Script name: $DMFT_SCRIPT"
|
|||||||
rm -f vasp.lock
|
rm -f vasp.lock
|
||||||
stdbuf -o 0 $MPIRUN_CMD -np $NPROC "$VASP_DIR" &
|
stdbuf -o 0 $MPIRUN_CMD -np $NPROC "$VASP_DIR" &
|
||||||
|
|
||||||
PYTRIQS=@CMAKE_INSTALL_PREFIX@/bin/pytriqs
|
|
||||||
|
|
||||||
$MPIRUN_CMD -np $NPROC $PYTRIQS -m triqs_dft_tools.converters.plovasp.sc_dmft $(jobs -p) $NITER $DMFT_SCRIPT 'plo.cfg' || kill %1
|
$MPIRUN_CMD -np $NPROC python -m triqs_dft_tools.converters.plovasp.sc_dmft $(jobs -p) $NITER $DMFT_SCRIPT 'plo.cfg' || kill %1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user