CFOUR/en: Difference between revisions
(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
Line 24: | Line 24: | ||
= Module = | = Module = | ||
You | You can access the MPI version of CFOUR by loading a [[Utiliser des modules/en|module]]. | ||
<source lang="bash"> | <source lang="bash"> | ||
module load | module load intel/2020.1.217 openmpi/4.0.3 cfour-mpi/2.1 | ||
</source> | </source> | ||
For the serial version, use: | |||
= | <source lang="bash"> | ||
module load intel/2020.1.217 cfour/2.1 | |||
</source> | |||
There is a mailing list as a forum for user experiences with the CFOUR program system. For how to subscribe and other information, see [http://slater.chemie.uni-mainz.de/cfour/index.php?n=Main.MailingList this page]. | There is a mailing list as a forum for user experiences with the CFOUR program system. For how to subscribe and other information, see [http://slater.chemie.uni-mainz.de/cfour/index.php?n=Main.MailingList this page]. | ||
Line 38: | Line 40: | ||
== Examples and job scripts == | == Examples and job scripts == | ||
<tabs> | |||
<tab name="INPUT"> | |||
{{File | |||
|name=INPUT | |||
|lang="txt" | |||
|contents= | |||
# | |||
# End of the Input file. | |||
}} | |||
</tab> | |||
<tab name="Serial job"> | |||
{{File | |||
|name=run_cfour_serial.sh | |||
|lang="bash" | |||
|contents= | |||
#!/bin/bash | |||
#SBATCH --ntasks=1 | |||
#SBATCH --mem-per-cpu=2500M # memory; default unit is megabytes. | |||
#SBATCH --time=0-00:30 # time (DD-HH:MM). | |||
# Load the module: | |||
echo "Starting run at: `date`" | |||
In the process of editing | |||
echo "Program finished with exit code $? at: `date`" | |||
}} | |||
</tab> | |||
<tab name="MPI job"> | |||
{{File | |||
|name=run_cfour_mpi.sh | |||
|lang="bash" | |||
|contents= | |||
#!/bin/bash | |||
# Load the module: | |||
echo "Starting run at: `date`" | |||
In the process of editing | |||
echo "Program finished with exit code $? at: `date`" | |||
}} | |||
</tab> | |||
</tabs> | |||
= Related links = <!--T:12--> | |||
== Mailing list == <!--T:13--> |
Revision as of 20:15, 29 March 2021
Introduction
"CFOUR (Coupled-Cluster techniques for Computational Chemistry) is a program package for performing high-level quantum chemical calculations on atoms and molecules. The major strength of the program suite is its rather sophisticated arsenal of high-level ab-initio methods for the calculation of atomic and molecular properties. Virtually all approaches based on Møller-Plesset (MP) perturbation theory and the coupled-cluster approximation (CC) are available; most of these have complementary analytic derivative approaches within the package as well."
"CFOUR is not a commercial code. It is rather a program that is undergoing development; new techniques and improvements are constantly being made." See the CFOUR web site for more information.
License limitations
Compute Canada has signed a license agreement with Prof. Dr. J. Gauss who acts for the developers of the CFOUR Software.
In order to use the current installed version on Compute Canada systems, each user must agree to certain conditions. Please contact support with a copy of the following statement:
- I will use CFOUR only for academic research.
- I will not copy the CFOUR software, nor make it available to anyone else.
- I will properly acknowledge original papers related to CFOUR and to Compute Canada in my publications (see the license form for more details).
- I understand that the agreement for using CFOUR can be terminated by one of the parties: CFOUR developers or Compute Canada.
- I will notify Compute Canada of any change in the above acknowledgement.
When your statement is received, we will allow you to access the program.
Module
You can access the MPI version of CFOUR by loading a module.
module load intel/2020.1.217 openmpi/4.0.3 cfour-mpi/2.1
For the serial version, use:
module load intel/2020.1.217 cfour/2.1
There is a mailing list as a forum for user experiences with the CFOUR program system. For how to subscribe and other information, see this page.
Examples and job scripts
#
# End of the Input file.
#!/bin/bash
#SBATCH --ntasks=1
#SBATCH --mem-per-cpu=2500M # memory; default unit is megabytes.
#SBATCH --time=0-00:30 # time (DD-HH:MM).
# Load the module:
echo "Starting run at: `date`"
In the process of editing
echo "Program finished with exit code $? at: `date`"
#!/bin/bash
# Load the module:
echo "Starting run at: `date`"
In the process of editing
echo "Program finished with exit code $? at: `date`"