Skip to content

Commit 258c388

Browse files
authored
Merge pull request CrawfordGroup#13 from kcpearce/add-hints
Finish Early Projects
2 parents b8ca5bb + f23d2df commit 258c388

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+411
-220
lines changed

.DS_Store

2 KB
Binary file not shown.

Project#01/.DS_Store

8 KB
Binary file not shown.

Project#01/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ After downloading the file to your computer (to a file called “geom.dat”, fo
2727
## Step 2: Bond Lengths
2828
Calculate the interatomic distances using the expression:
2929

30-
<img src="./figures/distances.png" width="400">
30+
<img src="./figures/distances.png" height="40">
3131

3232
where x, y, and z are Cartesian coordinates and i and j denote atomic indices.
3333

@@ -40,11 +40,11 @@ where x, y, and z are Cartesian coordinates and i and j denote atomic indices.
4040
## Step 3: Bond Angles
4141
Calculate all possible bond angles. For example, the angle, &phi;<sub>ijk</sub>, between atoms i-j-k, where j is the central atom is given by:
4242

43-
<img src="./figures/bond-angle.png" width="150">
43+
<img src="./figures/bond-angle.png" height="25">
4444

45-
where the e&#8407;<sub>ij</sub> are unit vectors between the atoms, e.g.,
45+
where the e<sub>ij</sub> are unit vectors between the atoms, e.g.,
4646

47-
<img src="./figures/unit-vectors.png" width="600">
47+
<img src="./figures/unit-vectors.png" height="30">
4848

4949
- [Hint 1](./hints/hint3-1.md): Memory allocation for the unit vectors
5050
- [Hint 2](./hints/hint3-2.md): Avoiding a divide-by-zero
@@ -56,7 +56,7 @@ where the e&#8407;<sub>ij</sub> are unit vectors between the atoms, e.g.,
5656
## Step 4: Out-of-Plane Angles
5757
Calculate all possible out-of-plane angles. For example, the angle &theta;<sub>ijkl</sub> for atom i out of the plane containing atoms j-k-l (with k as the central atom, connected to i) is given by:
5858

59-
<img src="./figures/oop-angle.png" width="200">
59+
<img src="./figures/oop-angle.png" height="60">
6060

6161
- [Hint 1](./hints/hint4-1.md): Memory allocation?
6262
- [Hint 2](./hints/hint4-2.md): Cross products
@@ -67,7 +67,7 @@ Calculate all possible out-of-plane angles. For example, the angle &theta;<sub>i
6767
## Step 5: Torsion/Dihedral Angles
6868
Calculate all possible torsional angles. For example, the torsional angle &tau;<sub>ijkl</sub> for the atom connectivity i-j-k-l is given by:
6969

70-
<img src="./figures/torsion-angle.png" width="250">
70+
<img src="./figures/torsion-angle.png" height="60">
7171

7272
Can you also determine the sign of the torsional angle?
7373

Project#02/README.md

+26-50
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,72 @@
11
# Project #2: Harmonic Vibrational Analysis
22

3-
The purpose of this project is to extend your fundamental C-language programming techniques through a normal coordinate/harmonic vibrational frequency calculation. The theoretical background and a concise set of instructions for this project may be found [here](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/project2-instructions.pdf)
3+
The purpose of this project is to extend your fundamental C-language programming techniques through a normal coordinate/harmonic vibrational frequency calculation. The theoretical background and a concise set of instructions for this project may be found [here](./project2-instructions.pdf)
44

55
We thank Dr. Yukio Yamaguchi of the University of Georgia for the original version of this project.
66

77
## Step 1: Read the Coordinate Data
88

9-
The coordinate data are given in a format identical to that for [Project#1](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2301). The test case
9+
The coordinate data are given in a format identical to that for [Project #1](../Project%2301). The test case
1010
for the remainder of this project is the water molecule, optimized at the SCF/DZP level of theory. You can find the coordinates (in bohr) in the input directory.
1111

1212
## Step 2: Read the Cartesian Hessian Data
1313

1414
The primary input data for the harmonic vibrational calculation is the Hessian matrix,
1515
which consists of second derivatives of the energy with respect to atomic positions.
1616

17-
```
18-
EQUATION
19-
F_{ij} = \frac{\partial^{2}V}{\partial q_i \partial q_j}
20-
```
21-
The Hessian matrix (in units of Eh/a02) can be downloaded here for the H2O test case.
17+
<img src="./figures/hessian.png" height="50">
18+
19+
The Hessian matrix (in units of E<sub>h</sub>/a<sub>0</sub><sup>2</sup>) can be downloaded [here](./input/h2o_hessian.txt) for the H<sub>2</sub>O test case.
2220
The first integer in the file is the number of atoms (which you should compare to the corresponding value from the geometry file as a test of consistency),
2321
while the remaining values have the following format:
2422

25-
```
26-
EQUATION
27-
\begin{array}{ccc}
28-
F_{x_1,x_1} & F_{x_1,y_1} & F_{x_1,z_1} \\
29-
F_{x_1,x_2} & F_{x_1,y_2} & F_{x_1,z_2} \\
30-
& \\
31-
\ldots & \ldots & \dots \\
32-
& \\
33-
F_{x_2,x_1} & F_{x_2,y_1} & F_{x_2,z_1} \\
34-
& \\
35-
\ldots & \ldots & \ldots \\
36-
\end{array}
37-
```
38-
39-
* Hint 1: Reading the Hessian
23+
<img src="./figures/hessian-file-format.png" width="200">
24+
25+
* [Hint 1](./hints/hint1.md): Reading the Hessian
4026

4127
## Step 3: Mass-Weight the Hessian Matrix
4228

4329
Divide each element of the Hessian matrix by the product of square-roots of the masses of the atoms associated with the given coordinates:
4430

45-
```
46-
EQUATION
47-
F^{M}_{ij} = \frac{F_{ij}}{\sqrt{m_i m_j}}
31+
<img src="./figures/mass-weighted-hessian.png" height="50">
4832

49-
```
5033
where m<sub>i</sub> represents the mass of the atom corresponding to atom *i*. Use atomic mass units (amu) for the masses, just as
51-
for [Project #1](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2301).
34+
for [Project #1](../Project%2301).
5235

53-
* Hint 2: Solution
36+
* [Hint 2](./hints/hint2.md): Solution
5437

5538
## Step 4: Diagonalize the Mass-Weighted Hessian Matrix
5639

5740
Compute the eigenvalues of the mass-weighted Hessian:
5841

59-
```
60-
EQUATION
61-
62-
F^{M}\mathbf{L} = \mathbf{L}\Lambda
63-
```
42+
<img src="./figures/diag-mass-weighted-hessian.png" height="20">
6443

6544
You should consider using the same canned diagonalization function
66-
you used in [Project #1](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2301).
45+
you used in [Project #1](../Project%2301).
6746

68-
* Hint 3: Solution
47+
* [Hint 3](./hints/hint3.md): Solution
6948

7049
## Step 5: Compute the Harmonic Vibrational Frequencies
7150

7251
The vibrational frequencies are proportional to the squareroot of the eigenvalues of the mass-weighted Hessian:
7352

74-
```
75-
EQUATION
76-
\omega_{i}= {\rm_constant} \times \sqrt{\lambda_i}
77-
```
53+
<img src="./figures/vib-freq.png" height="25">
7854

7955
The most common units to use for vibrational frequencies is cm<sup>-1</sup>.
8056

81-
* Hint 4: Solution
57+
* [Hint 4](./hints/hint4.md): Solution
8258

8359
## Reference
84-
E.B. Willson, J.C. Decius, and P.C. Cross, *Molecular Vibrations*, McGraw-Hill, 1955.
60+
E.B. Willson, J.C. Decius, and P.C. Cross, __Molecular Vibrations__, McGraw-Hill, 1955.
8561

8662
## Test Cases
8763

88-
* Water: [Coordinates](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/input/h2o_geom.txt)
89-
| [Hessian](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/input/h2o_hessian.txt)
90-
| [Output](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/output/h2o_vib_out.txt)
91-
* Benzene: [Coordinates](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/input/benzene_geom.txt)
92-
| [Hessian](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/input/benzene_hessian.txt)
93-
| [Output](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/output/benzene_vib_out.txt)
94-
* 3-chloro-1-butene: [Coordinates](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/input/3c1b_geom.txt)
95-
| [Hessian](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/input/3c1b_hessian.txt)
96-
| [Output](https://github.com/CrawfordGroup/ProgrammingProjects/blob/master/Project%2302/input/3c1b_vib_out.txt)
64+
* Water: [Coordinates](./input/h2o_geom.txt)
65+
| [Hessian](./input/h2o_hessian.txt)
66+
| [Output](./output/h2o_vib_out.txt) (see the note at the bottom of [Hint 4](./hints/hint4.md))
67+
* Benzene: [Coordinates](./input/benzene_geom.txt)
68+
| [Hessian](./input/benzene_hessian.txt)
69+
| [Output](./output/benzene_vib_out.txt)
70+
* 3-chloro-1-butene: [Coordinates](./input/3c1b_geom.txt)
71+
| [Hessian](./input/3c1b_hessian.txt)
72+
| [Output](./output/3c1b_vib_out.txt)

Project#02/figures/.DS_Store

6 KB
Binary file not shown.
Loading
9.89 KB
Loading

Project#02/figures/hessian.png

5.38 KB
Loading
5.68 KB
Loading

Project#02/figures/vib-freq.png

5.36 KB
Loading

Project#02/hints/hint1.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
The Hessian stored in memory should be a square matrix, while the format of the input file is rectangular. Understanding the translation between the two takes a bit of thinking. Here's a partial code block that works for this purpose:
2+
```c++
3+
...
4+
FILE *hessian;
5+
int natom;
6+
...
7+
8+
double **H = new double* [natom*3];
9+
for(int i=0; i < natom*3; i++)
10+
H[i] = new double[natom*3];
11+
12+
for(int i=0; i < natom*3; i++) {
13+
for(int j=0; j < natom; j++) {
14+
fscanf(hessian, "%lf %lf %lf", &H[i][3*j], &H[i][3*j+1], &H[i][3*j+2]);
15+
}
16+
}
17+
```

Project#02/hints/hint2.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
For the H<sub>2</sub>O test case, the 9×9 mass-weighted Hessian is:
2+
```
3+
1 2 3 4 5 6 7 8 9
4+
5+
1 0.0057996 0.0000000 0.0000000 -0.0115523 0.0000000 0.0000000 -0.0115523 0.0000000 0.0000000
6+
2 0.0000000 0.0198271 0.0000000 0.0000000 -0.0394937 0.0199304 0.0000000 -0.0394937 -0.0199304
7+
3 0.0000000 0.0000000 0.0175112 0.0000000 0.0086617 -0.0348807 0.0000000 -0.0086617 -0.0348807
8+
4 -0.0115523 0.0000000 0.0000000 0.0510672 0.0000000 0.0000000 -0.0050452 0.0000000 0.0000000
9+
5 0.0000000 -0.0394937 0.0086617 0.0000000 0.1716643 -0.0569527 0.0000000 -0.0143291 0.0224462
10+
6 0.0000000 0.0199304 -0.0348807 0.0000000 -0.0569527 0.1258526 0.0000000 -0.0224462 0.0131055
11+
7 -0.0115523 0.0000000 0.0000000 -0.0050452 0.0000000 0.0000000 0.0510672 0.0000000 0.0000000
12+
8 0.0000000 -0.0394937 -0.0086617 0.0000000 -0.0143291 -0.0224462 0.0000000 0.1716643 0.0569527
13+
9 0.0000000 -0.0199304 -0.0348807 0.0000000 0.0224462 0.0131055 0.0000000 0.0569527 0.1258526
14+
```

Project#02/hints/hint3.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
The eigenvalues of the mass-weighted Hessian for the H<sub>2</sub>O test case (in atomic units) are:
2+
```
3+
8 0.2351542439
4+
7 0.2107113210
5+
6 0.1317512832
6+
5 0.0561123974
7+
4 0.0547551476
8+
3 0.0518216614
9+
2 0.0000000000
10+
1 0.0000000000
11+
0 0.0000000000
12+
```

Project#02/hints/hint4.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
The harmonic vibrational frequencies for the H<sub>2</sub>O test case (in cm<sup>-1</sup>) are:
2+
```
3+
8 2492.7600
4+
7 2359.6522
5+
6 1865.8704
6+
5 1217.6808
7+
4 1202.8640
8+
3 1170.1990
9+
2 0.0210
10+
1 0.0000
11+
0 0.0000
12+
```
13+
Note that there are only three zero frequencies in this case when there should be six. This is because the structure used in the computation is not a stationary point on the potential energy surface, and thus the three “rotational frequencies” are non-zero.

Project#02/project2-instructions.pdf

98.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)