-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
87a69cc
commit 87c1742
Showing
1 changed file
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,23 @@ | ||
# >>> QC2 >>> | ||
# !! Contents within this block is provided by your lab assistents !! | ||
# Add Turbomole to PATH | ||
TURBODIR=/software/turbomole702 | ||
PATH=$PATH:$TURBODIR/bin/$(sysname):$TURBODIR/scripts | ||
# Add Orca to PATH | ||
PATH=$PATH:/home/software/orca-4.0.0 | ||
# Add local bin and Grimme workgroup bin | ||
PATH=$HOME/bin:$HOME/.local/bin:$PATH:/home/abt-grimme/AK-bin | ||
export PATH TURBODIR | ||
# unlimit the system stack to prevent stackoverflows | ||
|
||
# Make environment modules available | ||
export BASH_ENV=/usr/share/lmod/lmod/init/bash | ||
. ${BASH_ENV} > /dev/null | ||
|
||
module use /home/abt-grimme/modulefiles | ||
module load turbomole orca | ||
module load fpm | ||
|
||
# Add AKbin and personal bin to PATH (for utility and programs) | ||
export PATH=/home/abt-grimme/AK-bin:$PATH | ||
export PATH=/home/$USER/bin:$PATH | ||
|
||
# Settings for shared memory parallelism | ||
export OMP_NUM_THREADS=2 | ||
export MKL_NUM_THREADS=2 | ||
export OMP_STACKSIZE=500m | ||
|
||
# Unlimit the system stack to prevent stackoverflows | ||
ulimit -s unlimited | ||
# <<< QC2 <<< |