Package schrodinger :: Package application :: Package jaguar :: Module results :: Class ThermoCollection
[hide private]
[frames] | no frames]

Class ThermoCollection

object --+
         |
        ThermoCollection


A class to store a full set of calculated thermodynamic properties at a
given temperature.

Attributes:

temp (float)
    The temperature at which the properties were calculated.

U  (ThermoProp object, kcal/mol)
    Internal energy

Cv (ThermoProp object, cal/(mol K))
    Heat capacity

S  (ThermoProp object, cal/(mol K))
    Entropy

H  (ThermoProp object, kcal/mol)
    Enthalpy

G  (ThermoProp object, kcal/mol)
    Free energy

UTotal (float, Hartrees)
    Total internal energy (SCFE + ZPE + U)

HTotal (float, Hartrees)
    Total enthalpy (UTotal + pV)

GTotal (float, Hartrees)
    Total Gibbs free energy (HTotal - T*S)

Instance Methods [hide private]
 
__init__(self, temp, U, Cv, S, H, G, UTotal, HTotal, GTotal)
x.__init__(...) initializes x; see help(type(x)) for signature
 
__eq__(self, other)
 
__ne__(self, other)
 
__str__(self)
str(x)
 
__sub__(self, other)

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]
  precision = 1e-06
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, temp, U, Cv, S, H, G, UTotal, HTotal, GTotal)
(Constructor)

 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)