GitXplorerGitXplorer
s

Bench_MRCC

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
a58c49b4d0c6bc3d18d8535e7c026ea0764c4e1f

F2 N2 TZ

sscemama committed 6 years ago
Unverified
995a41cb68138ec3b64dcf3a818717ab4f79b422

Added results for F2 and N2 DZ

sscemama committed 6 years ago
Unverified
e15c679dc3eb6a47c926f2f29e41f5e3aa2c6c00

F2

sscemama committed 6 years ago
Unverified
c0a236d35a768b72e17b15de5fb9cb74899f381b

Fixed scripts for QP2

sscemama committed 6 years ago
Unverified
d190f0d9e6b37e21c915cff032f977bd7ea33327

F2

sscemama committed 8 years ago
Unverified
e3c8b8cd94e86ac14d824391a0d547439d34df17

F2_3 FCI

sscemama committed 8 years ago

README

The README file for this repository.

Bench_MRCC

Benchmark generator that I use for multi-reference coupled cluster calculations. It produces CAS-SCF potential energy surfaces with GAMESS, and then runs the Quantum Package.

Configuration

Edit the config file. $X={X:-"value"} means that if the environment variable X is not already defined, it will be defined by value.

Creating a new benchmark bash script

List of available environment variables

  • RUNGMS : Command to run GAMESS
  • TMPDIR : Temporary directory for GAMESS calculations
  • ZVARIABLES : changing variables of the z-matrix
  • GEOMETRY : Z-matrix without definition of the changing variables
  • MULT : Spin multiplicity
  • CHARGE : Total charge

List of variables to define

  • BASIS : Basis set in GAMESS format (CCD,CCT,...)
  • METHOD : argument to be passed to create_gamess_input : HF | MP2 | CAS(n,m)
  • DISTANCES : Geometries for diatomic separations
  • EQUILIBRIUM : Equilibrium distance
  • GEOMETRY : z-matrix without the changing variables

List of functions to define

  • update_z_variables : How to modify the variables of the Z-matrix
  • iteration : What to do at every geometry
  • initialization : What to do for the 1st point

List of available functions

  • distance_loop : loops over all distances and calls iteration
  • left_distance_loop : loops over all distances before the EQUILIBRIUM distance
  • right_distance_loop : loops over all distances after the EQUILIBRIUM distance

Writing the script

The script should source the src/bench_mrcc.sh file which contains all the helpful bash functions.