source: ThirdParty/mpqc_open/src/bin/mpqc/sample/fixed.in

Candidate_v1.6.1
Last change on this file was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 1.2 KB
Line 
1% emacs should use -*- KeyVal -*- mode
2% molecule specification
3molecule<Molecule>: (
4 symmetry = CS
5 { atoms geometry } = {
6 H [ 3.04 -0.69 -1.59 ]
7 H [ 3.04 -0.69 1.59 ]
8 N [ 2.09 -0.48 -0.00 ]
9 C [ -0.58 -0.15 0.00 ]
10 H [ -1.17 1.82 0.00 ]
11 H [ -1.41 -1.04 -1.64 ]
12 H [ -1.41 -1.04 1.64 ]
13 }
14)
15% basis set specification
16basis<GaussianBasisSet>: (
17 name = "3-21G*"
18 molecule = $:molecule
19)
20mpqc: (
21 checkpoint = no
22 savestate = no
23 % molecular coordinates for optimization
24 coor<SymmMolecularCoor>: (
25 molecule = $:molecule
26 generator<IntCoorGen>: (
27 molecule = $:molecule
28 )
29 have_fixed_values = yes
30 fixed<SetIntCoor>: [
31 <OutSimpleCo>: ( value = -0.1
32 label = "N-inversion"
33 atoms = [4 3 2 1] )
34 ]
35 )
36 % method for computing the molecule's energy
37 mole<CLHF>: (
38 molecule = $:molecule
39 basis = $:basis
40 coor = $..:coor
41 memory = 16000000
42 )
43 % optimizer object for the molecular geometry
44 opt<QNewtonOpt>: (
45 max_iterations = 20
46 function = $..:mole
47 update<BFGSUpdate>: ()
48 convergence<MolEnergyConvergence>: (
49 cartesian = yes
50 energy = $..:..:mole
51 )
52 )
53)
Note: See TracBrowser for help on using the repository browser.