Perturbation

Table of Contents

"Perturbation theory"

1 MP2

1.1 Type

type t

1.2 Creation

val make : frozen_core:Mo.Frozen_core.t -> Mo.Basis.t -> t
make Creates an MP2 data structure
let mp2 =
  Mp2.make ~frozen_core:(Mo.Frozen_core.(make Small molecule)) mo_basis
  ;;
- : Mp2.t : <abstr>

1.3 Access

val energy      : t -> float
val mo_basis    : t -> Mo.Basis.t
val frozen_core : t -> Mo.Frozen_core.t
energy Returns the MP2 energy
mo_basis Returns the MO basis on which the MP2 energy was computed
frozen_core Returns the frozencore scheme used to compute the MP2 energy

1.4 Printers

val pp : Format.formatter -> t -> unit

1.5 Tests

Author: Anthony Scemama

Created: 2021-01-01 Fri 17:04

Validate