Computer Lab: Difference between revisions
From cmpb
Jump to navigationJump to search
| Line 24: | Line 24: | ||
==OpenMX input files== | ==OpenMX input files== | ||
*[https://wiki.physics.udel.edu/wiki_cmpb/images/a/a6/Hands-On.pdf Silicon using OpenMX] | |||
*[https://wiki.physics.udel.edu/wiki_cmpb/images/8/89/Hands-On-Fe.pdf Magnons in Fe using OpenMX] | *[https://wiki.physics.udel.edu/wiki_cmpb/images/8/89/Hands-On-Fe.pdf Magnons in Fe using OpenMX] | ||
*[https://t-ozaki.issp.u-tokyo.ac.jp/lectures-2023/OpenMX-2.pdf Structure of OpenMX input files explained] | *[https://t-ozaki.issp.u-tokyo.ac.jp/lectures-2023/OpenMX-2.pdf Structure of OpenMX input files explained] | ||
Revision as of 18:15, 17 August 2024
Basic Unix
- Hands-on Linux Introduction
- How to submit parallel VASP jobs over 4 cores of keldysh:
$ module load vasp/5.4.4-intel-2023 $ mpirun -n 4 vasp_std
- How to submit parallel openmx jobs over 16 cores of keldysh:
$ module load openmx $ mpirun -np 16 openmx material.dat -nt 4 > material.std
Note that OpenMX has hybrid MPI/OpenMP parallelization, so nt specifies the number of threads in each process managed by MPI. If '-nt' is not specified, then the number of threads is set to 1, which corresponds to the flat MPI parallelization.
VASP input files
- H2O relaxation using VASP
- H2O vibrations using VASP
- Band structure of graphene
- Band structure of NiO
OpenMX input files