#include <BALL/SOLVATION/poissonBoltzmann.h>
Finite Difference Poisson Boltzmann Solver.
Definition at line 36 of file poissonBoltzmann.h.
typedef struct FastAtomStruct BALL::FDPB::FastAtom |
Definition at line 635 of file poissonBoltzmann.h.
Error codes: these are the possible error codes that can be produced by FDPB.
ERROR__NONE |
No error. |
ERROR__UNKNOWN |
Unknown error. |
ERROR__NOT_IMPLEMENTED |
Not implemented error. Someone has been too lazy to implement the this method. Wait for the next release... |
ERROR__CANNOT_CREATE_ATOM_ARRAY |
Unable to create the atom array/out of memory. FDPB internally creates a dynamic array containing the atoms of the system. If FDPB::setupAtomArray() cannot create this array you normally ran out of virtual memory. |
ERROR__CANNOT_CREATE_SAS_GRID |
Unable to create SAS grid/out of memory. FDPB uses a TRegularData3D<char> (FDPB::SAS_grid) to describe whether a point in space is inside the ion exclusion layer. This grid is created by FDPB::setupSASGrid(). On failure this error code is set. It usually indicates a lack of virtual memory. |
ERROR__CANNOT_CREATE_EPSILON_GRID |
Unable to create dielectric grid/out of memory. FDPB uses a
|
ERROR__CANNOT_CREATE_KAPPA_GRID |
Unable to create grid for the modified Debye Hueckel parameter/out of memory. The modified Debye Hueckel parameter is also a function of space and therefore represented by a TRegularData3D<float> (FDPB::kappa_grid). The grid is created by FDPB::setupKappaGrid().
|
ERROR__CANNOT_CREATE_CHARGE_GRID |
Unable to create charge grid/out of memory. FDPB::setupQGrid() distributes the charge of the atoms in a grid. This grid is named FDPB::q_grid.
|
ERROR__CANNOT_CREATE_PHI_GRID |
Unable to create electrostatic potential grid/out of memory. FDPB::setupPhiGrid() creates a TRegularData3D<float> (FDPB::phi_grid) containing the electrostatic potential as a function of space. If the creation of this grid fails due to a lack of virtual memory, this error code is set. |
ERROR__SAS_GRID_REQUIRED |
Create solvent accessible surface grid first. This error code is set by FDPB::setupKappGrid() if it is called but the ion excluded surface has not been set (usually by calling FDPB::setupSASGrid).
|
ERROR__EPSILON_GRID_REQUIRED |
Create dielectric constant grid first. This error code is set by FDPB::setupQGrid(), FDPB::setupKappaGrid(), or FDPB::setupPhiGrid() if it was called, but FDPB::eps_grid was not defined yet (this is usually done by calling FDPB::setupEpsGrid ).
|
ERROR__ATOM_ARRAY_REQUIRED |
Create atom array first. This error code is set by FDPB::setupQGrid() or FDPB::setupBoundary() if it was called but FDPB::atom_array was not yet defined (this is usually done by calling FDPB::setupAtomArray()).
|
ERROR__PHI_GRID_REQUIRED |
Create electrostatic potential grid first. FDPB::phi_grid contains the electrostatic potential at each point in space. FDPB::setupBoundary() sets this error code if it is called but FDPB::phi_grid has not been set yet. Solution: call FDPB::setupPhiGrid() before calling FDPB::setupBoundary() |
ERROR__OUT_OF_MEMORY |
Not enough virtual memory. This error code is set if FDPB::solve() ran out of virtual memory while creating some internal datastructures. Solution: reduce grid dimensions or increase grid spacing. |
ERROR__UNKNOWN_DIELECTRIC_SMOOTHING_METHOD |
The specified method to smooth the dielectric constant grid is not allowed. FDPB::setupEpsGrid sets this error code, if it cannot identify the method given in FDPB::Option::dielectric_smoothing.
|
ERROR__UNKNOWN_CHARGE_DISTRIBUTION_METHOD |
The specified charge distribution is not allowed. FDPB::setupQGrid() sets this error code, if it cannot identify the method given in FDPB::Option::charge_distribution.
|
ERROR__UNKNOWN_BOUNDARY_CONDITION_TYPE |
The specified boundary condition type is not allowed. FDPB::setupBoundary() sets this error code, if it cannot identify the boundary condition given in FDPB::Option::boundary.
|
ERROR__NOT_A_VECTOR_IN_UPPER_LOWER |
Upper or lower grid coordinates were specified in an incorrect format. This error code is set by FDPB::setupEpsGrid if the string given in FDPB::options (key FDPB::Option::LOWER or FDPB::Option::UPPER) were not in vector format.
|
ERROR__ILLEGAL_VALUE_FOR_LOWER_UPPER |
Lower and upper corner of the grid were set to wrong values. Lower and upper corners of the grid given in FDPB::options (key FDPB::Option::LOWER and FDPB::Option::UPPER) must fulfill just one condition: every coordinate of lower hast to be less (not equal!) to the corresponding coordinate of upper.
|
ERROR__SETUP_REQUIRED |
Call setup first. This error code is set by FDPB::solve() if FDPB::q_grid or FDPB::phi_grid or FDPB::eps_grid are undefined.
|
NUMBER_OF_ERRORS |
Total number of errors defined. |
Definition at line 45 of file poissonBoltzmann.h.
BALL::FDPB::FDPB | ( | System & | system | ) |
Constructor. Creates an instance of FDPB and calls setup(system). The options used are the default options.
BALL::FDPB::FDPB | ( | Options & | new_options | ) |
virtual BALL::FDPB::~FDPB | ( | ) | [virtual] |
Destructor.
double BALL::FDPB::calculateReactionFieldEnergy | ( | ) | const |
Calculate the reaction field energy.
void BALL::FDPB::destroy | ( | ) |
Frees all allocated memory and destroys the options and results.
void BALL::FDPB::destroyGrids | ( | ) |
Destroys all allocated grids and the atom array. This method reverts the FDPB object to the state it had prior to a call to setup. Especially it frees all memory intensive datastructures.
double BALL::FDPB::getEnergy | ( | ) | const |
Returns the energy of the last calculation. The total electrostatic energy of the FDPB object after the last iteration (even if no convergence was reached!) is returned in units of kJ/mol.
Index BALL::FDPB::getErrorCode | ( | ) | const |
Return the last error code. If a method fails, an internal error code is set in FDPB. This error code can be queried by calling this method. If no error occured it should return FDPB::ERROR__NONE.
Return the last error message.
Size BALL::FDPB::getNumberOfIterations | ( | ) | const |
Returns the number of iterations needed to converge. Returns the number of iterations taken in the last call to FDPB::solve(). If convergence could not be reached (i.e., the convergence criterions defined in options could not be met), -1 is returned.
double BALL::FDPB::getReactionFieldEnergy | ( | ) | const |
Return the reaction field energy.
Setup with assignment of options. This method copies the options given by options into the options variable of the FDPB object and invokes setup(system) afterwards.
options | the new options | |
system | the molecular system to be evaluated |
General setup method. Setup calls (in this order!)
If any of theses method invocations fail, it terminates at this point and returns false.
system | the molecular system to be examined. |
Setup an compact datastructure containing all charged atoms. This method creates a dynamic array containing all charged atoms.
system | the system to be evaluated |
bool BALL::FDPB::setupBoundary | ( | ) |
Setup boundary conditions for the electrostatic potential.
Setup the dielectric grid. The Finite Difference Poisson Boltzmann Method is based on the assumption that one can determine which points on a given grid are inside a given solute (with low dielectric constant) and which points are outside (i.e., they are in the high dielectric constant solvent).
setupEpsGrid
creates a grid containing the dielectric constant between any two neighbouring grid points (i.e., it contains 3 N values). Points inside the molecule (i.i, inside the radius of any atom) are set to the solute dielectric constant, all other points are set to the solvent dielectric constant. system | the system to be evaluated |
bool BALL::FDPB::setupKappaGrid | ( | ) |
Setup the Debye Hueckel parameter grid.
bool BALL::FDPB::setupPhiGrid | ( | ) |
Setup electrostatic potential grid
bool BALL::FDPB::setupQGrid | ( | ) |
Setup charge grid.
Setup the ion accessible grid. Not yet implemented!
bool BALL::FDPB::solve | ( | ) |
Solves the linearized Poisson-Boltzmann equation.
vector<FDPB::FastAtom>* BALL::FDPB::atom_array |
An array containing a fast representation of all atoms in the system.
Definition at line 911 of file poissonBoltzmann.h.
vector<Position> BALL::FDPB::boundary_points_ [protected] |
Definition at line 934 of file poissonBoltzmann.h.
double BALL::FDPB::energy_ [protected] |
Definition at line 926 of file poissonBoltzmann.h.
The grid containing the spatial dependent dielectric constant. The (relative) dielectric constant is unitless.
Definition at line 876 of file poissonBoltzmann.h.
int BALL::FDPB::error_code_ [protected] |
Definition at line 941 of file poissonBoltzmann.h.
const char* BALL::FDPB::error_message_[] [static, protected] |
Definition at line 943 of file poissonBoltzmann.h.
The grid containing the modified Debye Hueckel parameter.
Definition at line 881 of file poissonBoltzmann.h.
Vector3 BALL::FDPB::lower_ [protected] |
Definition at line 917 of file poissonBoltzmann.h.
Size BALL::FDPB::number_of_iterations_ [protected] |
Definition at line 937 of file poissonBoltzmann.h.
Vector3 BALL::FDPB::offset_ [protected] |
Definition at line 919 of file poissonBoltzmann.h.
The options for the FDPB calculation.
Definition at line 861 of file poissonBoltzmann.h.
The grid containing the electrostatic potential. Before a calculation this is grid is initialized with the boundary condition. After the calculation (i.e. after a call to solve()
) it contains the electrostatic potential in units of J/C resulting from the Poisson-Boltzmann equation).
Definition at line 902 of file poissonBoltzmann.h.
The grid containing the atom charges (distributed). Each atom's charge is distributed on the grid by setupQGrid, according to the charge distribution method specified in options.
Definition at line 891 of file poissonBoltzmann.h.
double BALL::FDPB::reaction_field_energy_ [protected] |
Definition at line 929 of file poissonBoltzmann.h.
The results of the last calculation.
Definition at line 865 of file poissonBoltzmann.h.
The grid describing the solvent accessible surface of the system.
Definition at line 906 of file poissonBoltzmann.h.
float BALL::FDPB::spacing_ [protected] |
Definition at line 923 of file poissonBoltzmann.h.
Vector3 BALL::FDPB::upper_ [protected] |
Definition at line 918 of file poissonBoltzmann.h.
bool BALL::FDPB::use_offset_ [protected] |
Definition at line 921 of file poissonBoltzmann.h.