1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id: pair6_12InteractionEnergyProcessor.C,v 1.23.12.1 2007/03/25 22:00:32 oliver Exp $
//
#include <BALL/SYSTEM/path.h>
#include <BALL/KERNEL/PTE.h>
#include <BALL/MATHS/surface.h>
#include <BALL/MOLMEC/PARAMETER/forceFieldParameters.h>
#include <BALL/MOLMEC/PARAMETER/lennardJones.h>
#include <BALL/STRUCTURE/numericalSAS.h>
#include <BALL/SOLVATION/pair6_12InteractionEnergyProcessor.h>
#include <BALL/SOLVATION/solventParameter.h>
using namespace std;
namespace BALL
{
const char* Pair6_12InteractionEnergyProcessor::Option::VERBOSITY
= "verbosity";
const char* Pair6_12InteractionEnergyProcessor::Option::USE_RDF
= "use_rdf";
const char* Pair6_12InteractionEnergyProcessor::Option::RDF_FILENAME
= "rdf_filename";
const char* Pair6_12InteractionEnergyProcessor::Option::LJ_FILENAME
= "lj_filename";
const char* Pair6_12InteractionEnergyProcessor::Option::SOLVENT_FILENAME
= "solvent_filename";
const char* Pair6_12InteractionEnergyProcessor::Option::SURFACE_TYPE
= "surface_type";
const char* Pair6_12InteractionEnergyProcessor::Option::SURFACE_FILENAME
= "surface_filename";
const Size Pair6_12InteractionEnergyProcessor::Default::VERBOSITY = 1;
const bool Pair6_12InteractionEnergyProcessor::Default::USE_RDF = false;
const char* Pair6_12InteractionEnergyProcessor::Default::RDF_FILENAME
= "solvation/RDF-AMBER.ini";
const char* Pair6_12InteractionEnergyProcessor::Default::LJ_FILENAME
= "Amber/amber94.ini";
const char* Pair6_12InteractionEnergyProcessor::Default::SOLVENT_FILENAME
= "solvents/PCM-water.ini";
const Size Pair6_12InteractionEnergyProcessor::Default::SURFACE_TYPE
= SURFACE__SAS;
const char* Pair6_12InteractionEnergyProcessor::Default::SURFACE_FILENAME
= "surface.surf";
Pair6_12InteractionEnergyProcessor::Pair6_12InteractionEnergyProcessor()
: EnergyProcessor(),
solvent_(),
rdf_parameter_(),
rdf_integrator_()
{
options.setDefaultInteger(Option::VERBOSITY, Default::VERBOSITY);
options.setDefaultInteger(Option::USE_RDF, Default::USE_RDF);
options.setDefault(Option::RDF_FILENAME, Default::RDF_FILENAME);
options.setDefault(Option::SOLVENT_FILENAME, Default::SOLVENT_FILENAME);
options.setDefault(Option::SURFACE_TYPE, Default::SURFACE_TYPE);
options.setDefault(Option::SURFACE_FILENAME, Default::SURFACE_FILENAME);
options.setDefault(Option::LJ_FILENAME, Default::LJ_FILENAME);
}
Pair6_12InteractionEnergyProcessor::Pair6_12InteractionEnergyProcessor
(const Pair6_12InteractionEnergyProcessor& proc)
: EnergyProcessor(proc),
solvent_(proc.solvent_),
rdf_parameter_(proc.rdf_parameter_),
rdf_integrator_(proc.rdf_integrator_)
{
}
Pair6_12InteractionEnergyProcessor::Pair6_12InteractionEnergyProcessor
(const SolventDescriptor& solvent,
const RDFParameter& rdf_parameter,
const Pair6_12RDFIntegrator& rdf_integrator)
: solvent_(solvent),
rdf_parameter_(rdf_parameter),
rdf_integrator_(rdf_integrator)
{
}
Pair6_12InteractionEnergyProcessor::~Pair6_12InteractionEnergyProcessor()
{
clear();
valid_ = false;
}
void Pair6_12InteractionEnergyProcessor::clear()
{
EnergyProcessor::clear();
solvent_.clear();
rdf_parameter_.clear();
rdf_integrator_.clear();
valid_ = true;
}
void Pair6_12InteractionEnergyProcessor::setSolventDescriptor
(const SolventDescriptor& solvent)
{
solvent_ = solvent;
}
const SolventDescriptor&
Pair6_12InteractionEnergyProcessor::getSolventDescriptor() const
{
return solvent_;
}
void Pair6_12InteractionEnergyProcessor::setRDFParameters
(const RDFParameter& rdf_parameter)
{
rdf_parameter_ = rdf_parameter;
}
const RDFParameter&
Pair6_12InteractionEnergyProcessor::getRDFParameter() const
{
return rdf_parameter_;
}
void Pair6_12InteractionEnergyProcessor::setRDFIntegrator
(const Pair6_12RDFIntegrator& integrator)
{
rdf_integrator_ = integrator;
}
const Pair6_12RDFIntegrator&
Pair6_12InteractionEnergyProcessor::getRDFIntegrator() const
{
return rdf_integrator_;
}
const Pair6_12InteractionEnergyProcessor&
Pair6_12InteractionEnergyProcessor::operator =
(const Pair6_12InteractionEnergyProcessor& proc)
{
EnergyProcessor::operator = (proc);
solvent_ = proc.solvent_;
rdf_parameter_ = proc.rdf_parameter_;
rdf_integrator_ = proc.rdf_integrator_;
return *this;
}
bool Pair6_12InteractionEnergyProcessor::operator == (const
Pair6_12InteractionEnergyProcessor& proc) const
{
return (EnergyProcessor::operator == (proc)
&& (solvent_ == proc.solvent_)
&& (rdf_parameter_ == proc.rdf_parameter_)
&& (rdf_integrator_ == proc.rdf_integrator_) );
}
bool Pair6_12InteractionEnergyProcessor::finish()
{
// how loud will we cry?
Index verbosity = (Index)options.getInteger(Option::VERBOSITY);
// this is the flag stating whether the rdf information should be used
bool use_rdf = options.getBool(Option::USE_RDF);
// the file containing the rdf descriptions
Path path;
String rdf_filename;
if (use_rdf)
{
rdf_filename = path.find(options.get(Option::RDF_FILENAME));
if (rdf_filename == "")
{
rdf_filename = options.get(Option::RDF_FILENAME);
}
if (verbosity > 0)
{
Log.info() << "Using " << rdf_filename << " as RDF description"
<< endl;
}
}
// the file contacining the solvent description
String solvent_filename = path.find(options.get(Option::SOLVENT_FILENAME));
if (solvent_filename == "")
{
solvent_filename = options.get(Option::SOLVENT_FILENAME);
}
if (verbosity > 0)
{
Log.info() << "Using " << solvent_filename << " as solvent description" << endl;
}
Size surface_type = (Size)options.getInteger(Option::SURFACE_TYPE);
String surface_filename = options.get(Option::SURFACE_FILENAME);
// define the solvent
String lj_param_filename = path.find(options.get(Option::LJ_FILENAME));
if (lj_param_filename == "")
{
lj_param_filename = options.get(Option::LJ_FILENAME);
}
if (verbosity > 0)
{
Log.info() << "Using " << lj_param_filename << " as LJ param file"
<< endl;
}
ForceFieldParameters lj_param(lj_param_filename);
// [anker] wieso extract_section mit ffparam?
// TODO Wo kommt der Name her?
Parameters solvent_parameters(solvent_filename);
SolventParameter solvent_parameter_section;
if (!solvent_parameter_section.extractSection(solvent_parameters,
"SolventDescription"))
{
Log.error() << "Pair6_12InteractionEnergyProcessor::finish(); "
<< "Cannot read solvent description." << endl;
return 0.0;
}
SolventDescriptor solvent_descriptor
= solvent_parameter_section.getSolventDescriptor();
// rho is the number density of the solvent (i. e. water) [1/m^3]
double rho = solvent_descriptor.getNumberDensity();
if (verbosity > 0)
{
Log.info() << "Using a number density of " << rho
<< " (value taken from solvent descr.)" << endl;
}
// define the rdf, if desired
ForceFieldParameters rdf_ff_param;
if (use_rdf)
{
// check whether there is an option set for the integration method
rdf_integrator_.options.setInteger
(Pair6_12RDFIntegrator::Option::VERBOSITY, verbosity);
Size method = (Size)options.getInteger(Pair6_12RDFIntegrator::Option::METHOD);
if (method != Pair6_12RDFIntegrator::METHOD__UNKNOWN)
{
Log.info() << "method: " << method << endl;
rdf_integrator_.options.setInteger
(Pair6_12RDFIntegrator::Option::METHOD, (long)method);
Size samples =
(Size)options.getInteger(Pair6_12RDFIntegrator::Option::SAMPLES);
if (samples != 0)
{
rdf_integrator_.options.setInteger
(Pair6_12RDFIntegrator::Option::SAMPLES, (long)samples);
}
}
rdf_ff_param.setFilename(rdf_filename);
rdf_ff_param.init();
if (!rdf_parameter_.extractSection(rdf_ff_param, "RDF"))
{
Log.error() << "Pair6_12InteractionEnergyProcessor::finish(); "
<< "Cannot read RDF descriptions." << endl;
return 0.0;
}
}
LennardJones lennard_jones;
lennard_jones.extractSection(lj_param, "LennardJones");
// iterate over all different atom types in the solvent
// vdW-radius of a solvent atom of type s
double R_s = 0.0; // [ A ]
// vdW-radius of a solute atom
double R_m = 0.0; // [ A ]
// the types of the atoms
Atom::Type type_i;
Atom::Type type_j;
// the surface description containing surface elements for each atom
// center
vector< pair<Vector3, Surface> > surface_map;
// the filename of the external surface
String filename;
// different energy contributions
double E = 0.0;
double E_D = 0.0;
double E_R = 0.0;
double E_ij = 0.0;
double E_ij_D = 0.0;
double E_ij_R = 0.0;
double e_ij = 0.0;
double e_ij_D = 0.0;
double e_ij_R = 0.0;
// force field parameters
double A_ij = 0.0;
double B_ij = 0.0;
double I_rep = 0.0;
double I_disp = 0.0;
double r_k_6;
// Geometry
Vector3 r_k_vec;
Vector3 n_k_vec;
double r_k;
Vector3 atom_center;
Vector3 sphere_center;
SolventAtomDescriptor solvent_atom;
LennardJones::Values values;
for (Size s = 0; s < solvent_descriptor.getNumberOfAtomTypes(); ++s)
{
solvent_atom = solvent_descriptor.getAtomDescriptor(s);
type_i = solvent_atom.type;
R_s = solvent_atom.radius;
if (verbosity > 2)
{
Log.info() << "Radius of Solvent: " << R_s << endl;
}
// now compute the surface for the integration
NumericalSAS sas_computer;
switch (surface_type)
{
case SURFACE__SAS:
if (verbosity > 0)
{
Log.info() << "Using SAS surface" << endl;
}
sas_computer.options[NumericalSAS::Option::COMPUTE_AREA ] = true;
sas_computer.options[NumericalSAS::Option::COMPUTE_VOLUME ] = false;
sas_computer.options[NumericalSAS::Option::COMPUTE_SURFACE_MAP ] = true;
sas_computer.options[NumericalSAS::Option::PROBE_RADIUS ] = R_s;
sas_computer(*fragment_);
surface_map = sas_computer.getSurfaceMap();
break;
case SURFACE__SES:
if (verbosity > 0)
{
Log.info() << "Using SES surface (NOTE: not implemented!)" << endl;
}
// calculateSESAtomPoints(*fragment_, surface_map, R_s);
break;
case SURFACE__EXTERNAL:
if (verbosity > 0)
{
Log.info() << "Using external surface, filename = ";
}
filename = surface_filename + solvent_descriptor.getName()
+ "-" + solvent_atom.element_symbol + ".surf";
if (verbosity > 0)
{
Log.info() << filename << endl;
}
getExternalSurface_(surface_map, filename.c_str());
break;
case SURFACE__UNKNOWN:
default:
Log.error() << "Pair6_12InteractionEnergyProcessor::finish(): "
<< "Unknown or unspecified surface type." << endl;
return false;
}
// initialize vars before iteration
E_ij = 0.0;
E_ij_D = 0.0;
E_ij_R = 0.0;
// iterate over all atoms of the solute
AtomConstIterator solute_iterator;
for (solute_iterator = fragment_->beginAtom(); +solute_iterator;
++solute_iterator)
{
// ?????: This should work -- but it doesn't!
// type_j = solute_iterator->getType();
type_j = lj_param.getAtomTypes().getType(solute_iterator->getTypeName());
atom_center = solute_iterator->getPosition();
R_m = solute_iterator->getRadius();
if (verbosity > 2)
{
Log.info() << "Radius of Solute: " << R_m << endl;
}
// compute the necessary pair potential parameters
if (verbosity > 1)
{
Log.info() << "type i/j " << type_i << "/" << type_j << endl;
}
if (lennard_jones.hasParameters(type_i, type_j))
{
values = lennard_jones.getParameters(type_i, type_j);
}
else
{
Log.error() << "Pair6_12InteractionEnergyProcessor::finish(): "
<< "Cannot assign force field parameters for types "
<< type_i << "/" << type_j << endl;
// DEBUG
Log.error() << "solute: TYPENAME = " << solute_iterator->getTypeName() << endl;
Log.error() << "solute: FULLNAME = " << solute_iterator->getFullName() << endl;
return false;
}
A_ij = values.A;
B_ij = values.B;
// DEBUG
if (verbosity > 9)
{
Log.info() << "A_ij (" << solute_iterator->getElement().getSymbol() <<
"," << solvent_atom.element_symbol << "): " << A_ij << endl;
Log.info() << "B_ij (" << solute_iterator->getElement().getSymbol() <<
"," << solvent_atom.element_symbol << "): " << B_ij << endl;
}
// iterate over all surface points
e_ij = e_ij_D = e_ij_R = 0.0;
// if the parameters are zero, we dont have to compute the whole
// term
// VORSICHT FALLE
if ((fabs(A_ij) > 1e-6) && (fabs(B_ij) > 1e-6))
{
for (Size sphere_index = 0; sphere_index < surface_map.size(); ++sphere_index)
{
sphere_center = surface_map[sphere_index].first;
Surface ¤t_surface = surface_map[sphere_index].second;
for (Size k = 0; k < current_surface.vertex.size(); ++k)
{
// DEBUG
if (verbosity > 9)
{
Log.info() << "vertex.size() = "
<< current_surface.vertex.size() << endl;
}
// r_k_vec is the vector from the center of the considered atom to
// the center of the current surface area
r_k_vec = (current_surface.vertex[k] - atom_center);
r_k = r_k_vec.getLength();
// n_k_vec is the normal of the current surface triangle
n_k_vec = current_surface.normal[k];
if (use_rdf)
{
// compute the constants for the projection of the
// integration point onto the ray starting from the sphere
// center and running through the center of the current
// surface portion.
double A =
(atom_center - sphere_center).getSquareLength();
double B =
(current_surface.vertex[k] - atom_center).getLength();
double C =
(sphere_center - current_surface.vertex[k]).getSquareLength();
double k1 = (C - A - B*B) / B;
double k2 = A;
rdf_integrator_.setConstants(A_ij, B_ij, k1, k2);
rdf_integrator_.setRDF(rdf_parameter_.getRDF(type_i, type_j));
// the integration runs from infinity to r_k, but the
// rdf_integrator_ integates from r_k to infinity, so we
// have to flip the sign. Therefore we have to subtract the
// values via -= instead of summing them up.
if (r_k == 0)
{
throw Exception::DivisionByZero(__FILE__, __LINE__);
}
e_ij -= rho * rdf_integrator_(r_k)
* (-(r_k_vec * n_k_vec)) / (r_k * r_k * r_k);
if (verbosity > 9)
{
Log.info() << "sphere_center = " << sphere_center << endl;
Log.info() << "atom_center = " << atom_center << endl;
Log.info() << "A = " << A << endl;
Log.info() << "B = " << B << endl;
Log.info() << "C = " << C << endl;
Log.info() << "k1 = " << k1 << ", k2 = " << k2 << endl;
Log.info() << "rho = " << rho << endl;
Log.info() << "r_k = " << r_k << endl;
Log.info() << "r_k_vec * n_k_vec = " << r_k_vec * n_k_vec
<< endl;
Log.info() << "rdf_integrator_(r_k) = "
<< rdf_integrator_(r_k) << endl;
Log.info() << "e_ij = " << e_ij << endl;
}
if (verbosity > 0)
{
rdf_integrator_.setConstants(A_ij, 0.0, k1, k2);
e_ij_R -= rho * rdf_integrator_(r_k)
* (-(r_k_vec * n_k_vec)) / (r_k * r_k * r_k);
rdf_integrator_.setConstants(0.0, B_ij, k1, k2);
e_ij_D -= rho * rdf_integrator_(r_k)
* (-(r_k_vec * n_k_vec)) / (r_k * r_k * r_k);
}
}
else
{
// integral part of the dispersion energy
r_k_6 = pow(r_k, 6);
I_rep = (r_k_vec * n_k_vec) / (9.0 * r_k_6 * r_k_6);
// integral part of the repulsion energy
I_disp = (r_k_vec * n_k_vec) / (3.0 * r_k_6);
// the energy contribution
e_ij += rho * (A_ij * I_rep - B_ij * I_disp);
if (verbosity > 0)
{
e_ij_R += rho * A_ij * I_rep;
e_ij_D += - rho * B_ij * I_disp;
}
if (verbosity > 9)
{
// DEBUG
Log.info() << "rho = " << rho << endl;
Log.info() << "r_k_vec = " << r_k_vec << endl;
Log.info() << "r_k = " << r_k << endl;
Log.info() << "n_k_vec = " << n_k_vec << endl;
Log.info() << "r_k_vec * n_k_vec = " << r_k_vec * n_k_vec
<< endl;
Log.info() << "I_rep = " << I_rep << endl;
Log.info() << "I_disp = " << I_disp << endl;
Log.info() << "e_ij = " << e_ij << endl;
Log.info() << "e_ij_R = " << e_ij_R << endl;
Log.info() << "e_ij_D = " << e_ij_D << endl;
}
}
} // surface
} // sphere
// E_ij_x is the contribution of the combination of solvent atom
// type i and solute atom type j
E_ij += e_ij;
if (verbosity > 0)
{
E_ij_D += e_ij_D;
E_ij_R += e_ij_R;
}
} // if (A != 0 && B != 0)
} // solute
// E_x is the total energy contribution
E += solvent_atom.number_of_atoms * E_ij;
if (verbosity > 0)
{
E_D += solvent_atom.number_of_atoms * E_ij_D;
E_R += solvent_atom.number_of_atoms * E_ij_R;
}
} // solvent
if (verbosity > 0)
{
Log.info() << "Dispersion: " << E_D << ", Repulsion: " << E_R
<< ", total: " << E << " [kJ/mol]" << endl;
}
energy_ = E;
return true;
}
// ?????: shouldn't be here...
void Pair6_12InteractionEnergyProcessor::getExternalSurface_(
vector< pair<Vector3, Surface> >& surface_map,
const char* surface_file)
{
// HIER WIRD NICHTS, ABER AUCH GAR NICHTS GEPR�FT!!!
surface_map.clear();
String tag;
Vector3 sphere_center;
Size number_of_tesserae;
Vector3 vertex;
float area;
Vector3 normal;
ifstream ifs(surface_file);
while (ifs.good())
{
ifs >> tag >> sphere_center;
if (ifs.bad())
{
return;
}
// Log.info() << "tag = " << tag << ", sphere = " << sphere_center << endl;
if (tag != "Sphere")
{
Log.error() << "Sphere expected" << endl;
// surface_map.clear();
return;
}
ifs >> tag >> number_of_tesserae;
// Log.info() << "tag = " << tag << ", not = " << number_of_tesserae << endl;
if (tag != "Tesserae")
{
Log.error() << "Tesserae expected" << endl;
// surface_map.clear();
return;
}
Surface surface;
surface.vertex.resize(number_of_tesserae);
surface.normal.resize(number_of_tesserae);
for (Size i = 0; i < number_of_tesserae; ++i)
{
ifs >> vertex >> area;
// Log.info() << "vertex = " << vertex << ", area = " << area << endl;
surface.vertex[i] = vertex;
normal = area * (vertex-sphere_center).normalize();
surface.normal[i] = normal;
}
surface_map.push_back(pair<Vector3, Surface>(sphere_center, surface));
}
ifs.close();
}
} // namespace BALL
|