1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
#!/bin/sh
###############################################################################
##
## HIGH VERBOSITY EXAMPLE
##
###############################################################################
# run from directory where this script is
cd `echo $0 | sed 's/\(.*\)\/.*/\1/'` # extract pathname
EXAMPLE_DIR=`pwd`
# check whether echo has the -e option
if test "`echo -e`" = "-e" ; then ECHO=echo ; else ECHO="echo -e" ; fi
$ECHO
$ECHO "$EXAMPLE_DIR : starting"
$ECHO
$ECHO "This example calculates the phonon modes of relativistic Au"
$ECHO "at the gamma and X points with PAW in the noncollinear and "
$ECHO "spin-orbit case."
$ECHO
# set the needed environment variables
. ../../../environment_variables
# required executables and pseudopotentials
BIN_LIST="pw.x ph.x"
PSEUDO_LIST="Au.rel-pz-kjpaw.UPF"
$ECHO
$ECHO " executables directory: $BIN_DIR"
$ECHO " pseudo directory: $PSEUDO_DIR"
$ECHO " temporary directory: $TMP_DIR"
$ECHO " checking that needed directories and files exist...\c"
# check for directories
for DIR in "$BIN_DIR" "$PSEUDO_DIR" ; do
if test ! -d $DIR ; then
$ECHO
$ECHO "ERROR: $DIR not existent or not a directory"
$ECHO "Aborting"
exit 1
fi
done
for DIR in "$TMP_DIR" "$EXAMPLE_DIR/results" ; do
if test ! -d $DIR ; then
mkdir $DIR
fi
done
cd $EXAMPLE_DIR/results
# check for executables
for FILE in $BIN_LIST ; do
if test ! -x $BIN_DIR/$FILE ; then
$ECHO
$ECHO "ERROR: $BIN_DIR/$FILE not existent or not executable"
$ECHO "Aborting"
exit 1
fi
done
# check for pseudopotentials
for FILE in $PSEUDO_LIST ; do
if test ! -r $PSEUDO_DIR/$FILE ; then
$ECHO
$ECHO "Downloading $FILE to $PSEUDO_DIR...\c"
$WGET $PSEUDO_DIR/$FILE $NETWORK_PSEUDO/$FILE 2> /dev/null
fi
if test $? != 0; then
$ECHO
$ECHO "ERROR: $PSEUDO_DIR/$FILE not existent or not readable"
$ECHO "Aborting"
exit 1
fi
done
$ECHO " done"
# how to run executables
PW_COMMAND="$PARA_PREFIX $BIN_DIR/pw.x $PARA_POSTFIX"
PH_COMMAND="$PARA_PREFIX $BIN_DIR/ph.x $PARA_POSTFIX"
$ECHO
$ECHO " running pw.x as: $PW_COMMAND"
$ECHO " running ph.x as: $PH_COMMAND"
$ECHO
# clean TMP_DIR
$ECHO " cleaning $TMP_DIR...\c"
rm -rf $TMP_DIR/gold*
rm -rf $TMP_DIR/_ph0/gold*
$ECHO " done"
# self-consistent calculation for Au with PAW-PP
cat > Au.scf_pz.in << EOF
&control
calculation='scf',
restart_mode='from_scratch',
prefix='gold',
pseudo_dir = '$PSEUDO_DIR/',
outdir='$TMP_DIR/'
/
&system
ibrav = 2, celldm(1) =7.666, nat= 1, ntyp= 1,
noncolin=.true.,
lspinorb=.true.,
occupations='smearing',
smearing='mv',
degauss=0.04,
ecutwfc = 35.0
ecutrho = 300.0
/
&electrons
mixing_beta = 0.7
conv_thr = 1.0d-9
/
ATOMIC_SPECIES
Au 0.0 Au.rel-pz-kjpaw.UPF
ATOMIC_POSITIONS (alat)
Au 0.00 0.00 0.00
K_POINTS AUTOMATIC
4 4 4 1 1 1
EOF
$ECHO " running the scf calculation for Au with PAW and spin-orbit...\c"
$PW_COMMAND < Au.scf_pz.in > Au.scf_pz.out
check_failure $?
$ECHO " done"
# phonon calculation at G
cat > Au.phG_pz.in << EOF
phonons of Au at Gamma
&inputph
tr2_ph=1.0d-14,
prefix='gold',
fildyn='Aug.dyn',
outdir='$TMP_DIR/'
/
0.0 0.0 0.0
EOF
$ECHO " running ph.x for Au at Gamma with PAW and spin-orbit...\c"
$PH_COMMAND < Au.phG_pz.in > Au.phG_pz.out
check_failure $?
$ECHO " done"
# phonon calculation at X
cat > Au.phX_pz.in << EOF
phonons of Au at X
&inputph
tr2_ph=1.0d-14,
prefix='gold',
fildyn='AuX.dyn',
outdir='$TMP_DIR/'
/
1.0 0.0 0.0
EOF
$ECHO " running ph.x for Au at X with PAW and spin-orbit...\c"
$PH_COMMAND < Au.phX_pz.in > Au.phX_pz.out
check_failure $?
$ECHO " done"
$ECHO
$ECHO "$EXAMPLE_DIR: done"
|