Skip to content

Commit

Permalink
Update example bashrc
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinfriede committed Apr 8, 2024
1 parent 87a69cc commit 87c1742
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions config/.bashrc
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 <<<

0 comments on commit 87c1742

Please sign in to comment.