GitXplorerGitXplorer
s

Bench_MRCC

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
8da3ca982b900e6551c3977d7523d44af2ab1a76

H2O

sscemama committed 8 years ago
Unverified
3eb8a9cb1b6ae3296b2e9347e4c098681be1dbbd

H2O

sscemama committed 8 years ago
Unverified
5629553dccc6534a46a763465c36505af56376c0

H2O

sscemama committed 8 years ago
Unverified
73bec4b4c406d5f92ab582798886349c6e9b0c68

F2_3 still wrong

sscemama committed 8 years ago
Unverified
1052c1c5bc1b54718e3d954da3b15c65dd8ee40d

Fixed HF

sscemama committed 8 years ago
Unverified
df90da800d9f45f52cdfeadda324c83833df0132

Forgot data

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.