Skip to content

Commit 7809ef5

Browse files
committed
Correct equation sizes again
1 parent 1b37397 commit 7809ef5

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

Project#02/README.md

+5-9
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ for the remainder of this project is the water molecule, optimized at the SCF/DZ
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-
<img src="./figures/hessian.png" height="60">
17+
<img src="./figures/hessian.png" height="50">
1818

1919
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.
2020
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),
2121
while the remaining values have the following format:
2222

23-
<img src="./figures/hessian-file-format.png" width="250">
23+
<img src="./figures/hessian-file-format.png" width="200">
2424

2525
* [Hint 1](./hints/hint1.md): Reading the Hessian
2626

2727
## Step 3: Mass-Weight the Hessian Matrix
2828

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

31-
<img src="./figures/mass-weighted-hessian.png" height="60">
31+
<img src="./figures/mass-weighted-hessian.png" height="50">
3232

3333
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
3434
for [Project #1](../Project%2301).
@@ -39,7 +39,7 @@ for [Project #1](../Project%2301).
3939

4040
Compute the eigenvalues of the mass-weighted Hessian:
4141

42-
<img src="./figures/diag-mass-weighted-hessian.png" height="25">
42+
<img src="./figures/diag-mass-weighted-hessian.png" height="20">
4343

4444
You should consider using the same canned diagonalization function
4545
you used in [Project #1](../Project%2301).
@@ -50,11 +50,7 @@ you used in [Project #1](../Project%2301).
5050

5151
The vibrational frequencies are proportional to the squareroot of the eigenvalues of the mass-weighted Hessian:
5252

53-
<img src="./figures/vib-freq.png" height="30">
54-
```
55-
EQUATION
56-
\omega_{i}= {\rm_constant} \times \sqrt{\lambda_i}
57-
```
53+
<img src="./figures/vib-freq.png" height="25">
5854

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

0 commit comments

Comments
 (0)