You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Raman off-resonant activity calculator,
using VASP as a back-end.
Contributors: Alexandr Fonari (Georgia Tech)
Shannon Stauffer (UT Austin)
MIT License, 2013
URL: http://raman-sc.github.io
Started at: 2019-10-22 13:46
[main]: Mode #1: frequency 504.5795270 cm-1; norm: 0.1886973
[main]: File OUTCAR.0001.-1.out not found, preparing displaced POSCAR
[main]: Running VASP...
[main]: File OUTCAR.0001.+1.out not found, preparing displaced POSCAR
[main]: Running VASP...
[main]: ERROR Couldn't find OUTCAR file, exiting...
the above error is shown. The sript is
#!/bin/bash
#PBS -l nodes=1:ppn=16
#PBS -l walltime=300:00:00
#PBS -N USPEXvariation
#PBS -q blade_x
#PBS -j oe
#PBS -V
source /public/software/profile.d/compiler_intel-composer_xe_2016.3.210.sh
source /public/software/profile.d/mpi_openmpi-1.6.5-intel.sh
#The program we want to execute (modify to suit your setup)
EXEC=/public/software/vasp/5.2.12/openmpi/intel/vasp
#setup hostfile
echo "host: "
#cat $PBS_JOBID-$PBS_JOBCOOKIE.hosts
echo "--------Begin-------------------------------------------"
#This jobs working directory
echo Working directory is $PBS_O_WORKDIR
#go to work dir
cd $PBS_O_WORKDIR
echo "Beginning time is: "
echo Time is date
echo Directory is pwd
NP=cat $PBS_NODEFILE|wc -l
echo "Numbers of Processors: $NP"
echo "---------------------------------------------------"
#running
ulimit -s unlimited # remove limit on stack size
#clean
echo "--------Finish-------------------------------------------"
echo "Finishing time is: "
echo Time is date
echo "--------Finish-------------------------------------------"
Is this problem solve?
The text was updated successfully, but these errors were encountered:
[main]: VASP_RAMAN_RUN='mpirun -np $NP -machinefile $PBS_NODEFILE --mca btl self,sm,openib --bind-to-core $EXEC >> test.out'
[main]: VASP_RAMAN_PARAMS='01_21_2_0.01'
[[4.7828934262654972, 4.7828934262654972, 4.7828934262654972], [4.7828934262654972, 2.0498114683994988, 2.0498114683994988], [2.0498114683994988, 4.7828934262654972, 2.0498114683994988], [2.0498114683994988, 2.0498114683994988, 4.7828934262654972], [0.6832704894664996, 0.6832704894664996, 0.6832704894664996], [0.6832704894664996, 3.416352447332498, 3.416352447332498], [3.416352447332498, 0.6832704894664996, 3.416352447332498], [3.416352447332498, 3.416352447332498, 0.6832704894664996]]
[main]: Mode #1: frequency 504.5795270 cm-1; norm: 0.1886973
[main]: File OUTCAR.0001.-1.out not found, preparing displaced POSCAR
[main]: Running VASP...
[main]: File OUTCAR.0001.+1.out not found, preparing displaced POSCAR
[main]: Running VASP...
[main]: ERROR Couldn't find OUTCAR file, exiting...
the above error is shown. The sript is
#!/bin/bash
#PBS -l nodes=1:ppn=16
#PBS -l walltime=300:00:00
#PBS -N USPEXvariation
#PBS -q blade_x
#PBS -j oe
#PBS -V
source /public/software/profile.d/compiler_intel-composer_xe_2016.3.210.sh
source /public/software/profile.d/mpi_openmpi-1.6.5-intel.sh
#The program we want to execute (modify to suit your setup)
EXEC=/public/software/vasp/5.2.12/openmpi/intel/vasp
#setup hostfile
echo "host: "
#cat $PBS_JOBID-$PBS_JOBCOOKIE.hosts
echo "--------Begin-------------------------------------------"
#This jobs working directory
echo Working directory is $PBS_O_WORKDIR
#go to work dir
cd $PBS_O_WORKDIR
echo "Beginning time is: "
echo Time is
date
echo Directory is
pwd
NP=
cat $PBS_NODEFILE|wc -l
echo "Numbers of Processors: $NP"
echo "---------------------------------------------------"
#running
ulimit -s unlimited # remove limit on stack size
#export VASP_RAMAN_RUN='time mpirun -np $NP -machinefile $PBS_NODEFILE --mca btl self,sm,openib --bind-to-core $EXEC >> test.out'
export VASP_RAMAN_RUN='mpirun -np $NP -machinefile $PBS_NODEFILE --mca btl self,sm,openib --bind-to-core $EXEC >> test.out'
export VASP_RAMAN_PARAMS='01_21_2_0.01'
python vasp_raman.py > vasp_raman.out
#time mpirun -np $NP -machinefile $PBS_NODEFILE --mca btl self,sm,openib --bind-to-core $EXEC >> test.out
#clean
echo "--------Finish-------------------------------------------"
echo "Finishing time is: "
echo Time is
date
echo "--------Finish-------------------------------------------"
Is this problem solve?
The text was updated successfully, but these errors were encountered: