VASP-MGCM

From Wiki
Revision as of 09:06, 23 June 2017 by 10.0.7.17 (talk) (New page: The VASP-MGCM (Vasp-Multigrid Continuum Model) was compiled in the VASP 5.3.3 version (normal and gamma version). To perform a calculation of a solvated system PLEASE read first the attach...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The VASP-MGCM (Vasp-Multigrid Continuum Model) was compiled in the VASP 5.3.3 version (normal and gamma version). To perform a calculation of a solvated system PLEASE read first the attached pdf guide. After that, one needs to slightly modify the running script. The two only lines to be changed are those corresponding to the module and executable calls. For some reason (most likely due to the different fortran libraries used in the queues) the code runs at a reasonable computational cost in the c8m24.q. If there is enough space in this queue run your calculation there, otherwise use the c24m128ib.q although the speed is much lower there at this moment.

Example of a script to launch a VASP-MGCM calculation in the c8m24.q with the VASP 5.3.3 version:


  1. !/bin/bash
  2. - Dr. Nuria Lopez Group -
  3. SGE Parameters
  4. $ -S /bin/bash
  5. $ -N example1
  6. $ -cwd
  7. $ -masterq c8m24.q
  8. $ -pe c8m24_mpi 8
  9. $ -m ae
  10. $ -o o_$JOB_NAME.$JOB_ID
  11. $ -e e_$JOB_NAME.$JOB_ID
  12. Load Evironment Variables

. /etc/profile.d/modules.sh module load vasp/5.3.3-mgarciar

  1. Running Job

export OMP_NUM_THREADS=1

echo $PWD >> o_$JOB_NAME.$JOB_ID echo $TMP >> o_$JOB_NAME.$JOB_ID

mpirun -np $NSLOTS vasp_mgcm


Example of a script to launch a VASP-MGCM calculation in the c8m24.q with the VASP 5.3.3 version (gamma-version):


  1. !/bin/bash
  2. - Dr. Nuria Lopez Group -
  3. SGE Parameters
  4. $ -S /bin/bash
  5. $ -N example2
  6. $ -cwd
  7. $ -masterq c8m24.q
  8. $ -pe c8m24_mpi 8
  9. $ -m ae
  10. $ -o o_$JOB_NAME.$JOB_ID
  11. $ -e e_$JOB_NAME.$JOB_ID
  12. Load Evironment Variables

. /etc/profile.d/modules.sh module load vasp/5.3.3-mgarciar-GAMMA

  1. Running Job

export OMP_NUM_THREADS=1

echo $PWD >> o_$JOB_NAME.$JOB_ID echo $TMP >> o_$JOB_NAME.$JOB_ID

mpirun -np $NSLOTS vasp_mgcm