Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions doc/tutorial/data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,18 @@ VASP

**TODO**

Molpro 2012/2015
~~~~~~~~~~~~~~~~

See https://www.molpro.net/

By default Molpro will print all need information but the mass weighted Hessian.
Use the following input card to get mass-weighted Hessian::

{frequencies,analytic
print,hessian}

The output file ``*.out`` can then be used for TAMkin analysing.

Loading data into TAMkin
========================
Expand Down Expand Up @@ -270,6 +282,18 @@ internal units, i.e. Hartree)::

molecule = load_molecule_g03fchk("freq.fchk", energy=-135.12597)

Molpro 2012/2015
~~~~~~~~~~~~~~~~

For the details, see :func:`tamkin.io.molpro.load_molecule_molpro`.

Given a Molpro output file, it is loaded as follows::

molecule = load_molecule_molpro("ch3oh.out")

where ``"ch3oh.out"`` is the name of the Molpro file of a
frequency computation.

Torsional potentials
--------------------

Expand Down
Loading