Q-Chem is a general purpose ab initio electronic structure program. Its latest version emphasizes Self-Consistent Field, especially Density Functional Theory, post Hartree-Fock, and innovative algorithms for fast performance and reduced scaling calculations. Geometry optimizations, vibrational frequencies, thermodynamic properties, and solution modeling are available. It performs reasonably well within its single reference paradigm on open shell and excited state systems. The Q-Chem Home Page has additional information.
Availability and Restrictions
Versions
Q-Chem is available on the OSC clusters. These are the versions currently available:
Version | Owens | Pitzer | Notes |
---|---|---|---|
4.4.1 | X | ||
4.4.1-openmp | X | X | |
5.4 | X | X | Default parallelization changed** |
5.4.2 | X* | X* | Default parallelization changed** |
6.0.0 | X | X | MPI support removed |
6.0.2 | X | X | MPI support removed |
** Starting from version 5.2, a flag '-mpi' is requied for running a MPI job, e.g. qchem -mpi -np 2. Without the flag, OpenMP is the default parallelization.
You can use module spider qchem
to view available modules for a given machine. Feel free to contact OSC Help if you need other versions for your work.
Access
Q-chem is available to academic OSC users only. Please review the Q-Chem license agreement carefully before use. If you have any questions, please contact OSC Help.
Publisher/Vendor/Repository and License Type
Q-Chem, Inc., Commercial
Usage
For MPI jobs that request multiple nodes the qchem script must be run from a globally accessible working directory, e.g., project or home directories
Starting with 5.1, QCSCRATCH is automatically set to $TMPDIR which is removed upon the job is completed. This is for saving scratch space and better job performance. If you need to save Q-Chem scratch files from a job and use them later, set QCSCRATCH to globally accessible working directory and QCLOCALSCR to $TMPDIR.
Usage on Owens
Set-up on Owens
Q-Chem usage is controlled via modules. Load one of the Q-Chem modulefiles at the command line, in your shell initialization script, or in your batch scripts. To load the default version of Q-Chem module, usemodule load qchem
. To select a particular software version, use module load qchem/version
. For example, use module load qchem/4.4.1
to load Q-Chem version 4.4.1 on Owens.
Examples
- The root of the Q-Chem directory tree is /usr/local/qchem/
- Example Q-Chem input files are in the samples subdirectory
Batch Usage on Owens
When you log into owens.osc.edu you are actually logged into a linux box referred to as the login node. To gain access to the mutiple processors in the computing environment, you must submit your job to the batch system for execution. Batch jobs can request mutiple nodes/cores and compute time up to the limits of the OSC systems. Refer to Queues and Reservations and Batch Limit Rules for more info. Batch jobs run on the compute nodes of the system and not on the login node. It is desirable for big problems since more resources can be used.
Interactive Batch Session
For an interactive batch session one can run the following command:
sinteractive -A <project-account> -N 1 -n 1 -t 00:20:00
which requests one core (-N 1 -n 1
), for a walltime of 20 minutes (-t 00:20:00
). You may adjust the numbers per your need.
Usage on Pitzer
Set-up on Pitzer
Q-Chem usage is controlled via modules. Load one of the Q-Chem modulefiles at the command line, in your shell initialization script, or in your batch scripts. To load the default version of Q-Chem module, usemodule load qchem
.
Examples
- The root of the Q-Chem directory tree is /apps/qchem/
- Example Q-Chem input files are in the samples subdirectory
Batch Usage on Pitzer
When you log into pitzer.osc.edu you are actually logged into a linux box referred to as the login node. To gain access to the mutiple processors in the computing environment, you must submit your job to the batch system for execution. Batch jobs can request mutiple nodes/cores and compute time up to the limits of the OSC systems. Refer to Queues and Reservations and Batch Limit Rules for more info. Batch jobs run on the compute nodes of the system and not on the login node. It is desirable for big problems since more resources can be used.
Interactive Batch Session
For an interactive batch session one can run the following command:
sinteractive -A <project-account> -N 1 -n 1 -t 00:20:00
which requests one node (-N 1) and one core (-n 1), for a walltime of 20 minutes (-t 00:20:00
). You may adjust the numbers per your need.