-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrunMultiwfn.rc
48 lines (35 loc) · 1.36 KB
/
runMultiwfn.rc
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
#!/bin/bash
#
# This is an example set-up file for runMultiwfn
#
# Print all information by default
stay_quiet=0
# Specify default Walltime, this is only relevant for remote
# execution as a header line for the queueing system.
# Format [[HH:]MM:]SS
requested_walltime="24:00:00"
# Specify a default value for the memory
requested_KMP_STACKSIZE=64000000
# This corresponds to nthreads=<digit(s)> in the settings.ini
# <digit(s)> is equal to the number of processes to be used
requested_numCPU=4
# Use the graphical interface (yes/no)
# This needs a different binary
request_gui_version="yes"
# The following two lines give the location of the installation
installpath_Multiwfn_gui="$HOME/local/multiwfn/multiwfn.current"
installpath_Multiwfn_nogui=""
# No-GUI mode is disabled if the variable is left empty
# Request default execution mode (i.e. could be set to remote)
# (Setting this here is not tested yet; be careful.)
execmode="default"
# Select a queueing system (pbs-gen/bsub-rwth/slurm-rwth)
request_qsys="pbs-gen"
# Account to project (only for rwth)
bsub_project="default"
# By default clean up the temporary setting.ini
settingsini_nocleanup="false"
# Set a default pdfviewer (needs to be an executable command found through PATH)
# Tested in that order are: "$use_pdfviewer" xdg-open gvfs-open evince okular less
use_pdfviewer="xpdf"
# (Martin; 0.6.0; 2019-09-10)