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
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// Molecular Mechanics: Charmm force field class
#include <BALL/MOLMEC/CHARMM/charmm.h>
#include <BALL/MOLMEC/CHARMM/charmmStretch.h>
#include <BALL/MOLMEC/CHARMM/charmmBend.h>
#include <BALL/MOLMEC/CHARMM/charmmTorsion.h>
#include <BALL/MOLMEC/CHARMM/charmmImproperTorsion.h>
#include <BALL/MOLMEC/CHARMM/charmmNonBonded.h>
#include <BALL/MOLMEC/COMMON/assignTypes.h>
#include <BALL/MOLMEC/PARAMETER/templates.h>
#include <BALL/SYSTEM/path.h>
#include <BALL/KERNEL/PTE.h>
#include <BALL/KERNEL/atom.h>
#include <BALL/KERNEL/bond.h>
using namespace std;
namespace BALL
{
const char* CharmmFF::Option::FILENAME = "filename";
const char* CharmmFF::Option::NONBONDED_CUTOFF = "nonbonded_cutoff";
const char* CharmmFF::Option::VDW_CUTOFF = "vdw_cutoff";
const char* CharmmFF::Option::VDW_CUTON = "vdw_cuton";
const char* CharmmFF::Option::ELECTROSTATIC_CUTOFF = "electrostatic_cutoff";
const char* CharmmFF::Option::ELECTROSTATIC_CUTON = "electrostatic_cuton";
const char* CharmmFF::Option::SOLVATION_CUTOFF = "solvation_cutoff";
const char* CharmmFF::Option::SOLVATION_CUTON = "solvation_cuton";
const char* CharmmFF::Option::SCALING_VDW_1_4 = "SCAB";
const char* CharmmFF::Option::SCALING_ELECTROSTATIC_1_4 = "SCEE";
const char* CharmmFF::Option::DISTANCE_DEPENDENT_DIELECTRIC = "DDDC";
const char* CharmmFF::Option::ASSIGN_CHARGES = "assign_charges";
const char* CharmmFF::Option::ASSIGN_TYPENAMES = "assign_type_names";
const char* CharmmFF::Option::ASSIGN_TYPES = "assign_types";
const char* CharmmFF::Option::OVERWRITE_CHARGES = "overwrite_non-zero_charges";
const char* CharmmFF::Option::OVERWRITE_TYPENAMES = "overwrite_non-empty_typenames";
const char* CharmmFF::Option::USE_EEF1 = "use_EEF1";
const char* CharmmFF::Default::FILENAME = "CHARMM/EEF1/param19_eef1.ini";
const float CharmmFF::Default::NONBONDED_CUTOFF = 20.0;
const float CharmmFF::Default::VDW_CUTOFF = 9.0;
const float CharmmFF::Default::VDW_CUTON = 7.0;
const float CharmmFF::Default::SOLVATION_CUTOFF = 9.0;
const float CharmmFF::Default::SOLVATION_CUTON = 7.0;
const float CharmmFF::Default::ELECTROSTATIC_CUTOFF = 9.0;
const float CharmmFF::Default::ELECTROSTATIC_CUTON = 7.0;
const float CharmmFF::Default::SCALING_ELECTROSTATIC_1_4 = 2.0;
const float CharmmFF::Default::SCALING_VDW_1_4 = 1.0;
const bool CharmmFF::Default::DISTANCE_DEPENDENT_DIELECTRIC = true;
const bool CharmmFF::Default::ASSIGN_CHARGES = true;
const bool CharmmFF::Default::ASSIGN_TYPENAMES = true;
const bool CharmmFF::Default::ASSIGN_TYPES = true;
const bool CharmmFF::Default::OVERWRITE_CHARGES = true;
const bool CharmmFF::Default::OVERWRITE_TYPENAMES = false;
const bool CharmmFF::Default::USE_EEF1 = true;
// Default constructor
CharmmFF::CharmmFF()
: ForceField(),
filename_(Default::FILENAME)
{
// set the force field name
setName("CHARMM [" + filename_ + "]");
// create the component list
insertComponent(new CharmmStretch(*this));
insertComponent(new CharmmBend(*this));
insertComponent(new CharmmTorsion(*this));
insertComponent(new CharmmImproperTorsion(*this));
insertComponent(new CharmmNonBonded(*this));
}
// Constructor initialized with a system
CharmmFF::CharmmFF(System& system)
: ForceField(),
filename_(Default::FILENAME)
{
// create the component list
insertComponent(new CharmmStretch(*this));
insertComponent(new CharmmBend(*this));
insertComponent(new CharmmTorsion(*this));
insertComponent(new CharmmImproperTorsion(*this));
insertComponent(new CharmmNonBonded(*this));
bool result = setup(system);
// set the force field name
setName("CHARMM [" + filename_ + "]");
if (!result)
{
Log.error() << " Force Field setup failed! " << endl;
valid_ = false;
}
}
// Constructor intialized with a system and a set of options
CharmmFF::CharmmFF(System& system, const Options& new_options)
: ForceField(),
filename_(Default::FILENAME)
{
// create the component list
insertComponent(new CharmmStretch(*this));
insertComponent(new CharmmBend(*this));
insertComponent(new CharmmTorsion(*this));
insertComponent(new CharmmImproperTorsion(*this));
insertComponent(new CharmmNonBonded(*this));
bool result = setup(system, new_options);
// set the force field name (this has to be done after(!) setup,
// otherwise filename_ is not yet set if it is used in options)
setName("CHARMM [" + filename_ + "]");
if (!result)
{
Log.error() << " Force Field setup failed! " << endl;
valid_ = false;
}
}
// copy constructor
CharmmFF::CharmmFF(const CharmmFF& force_field)
: ForceField(force_field),
filename_(force_field.filename_)
{
}
// destructor
CharmmFF::~CharmmFF()
{
}
void CharmmFF::clear()
{
ForceField::clear();
filename_ = Default::FILENAME;
}
const CharmmFF& CharmmFF::operator = (const CharmmFF& force_field)
{
if (&force_field != this)
{
ForceField::operator = (*this);
filename_ = force_field.filename_;
}
return *this;
}
// force field specific setup method
bool CharmmFF::specificSetup()
{
// check whether the system is assigned
if (getSystem() == 0)
{
return false;
}
// check whether the parameter file name
// is set in the options
if (options.has(Option::FILENAME))
{
filename_ = options[Option::FILENAME];
setName("Charmm [" + filename_ + "]");
}
else
{
options[Option::FILENAME] = filename_;
}
// open parameter file
Path path;
String filename(path.find(filename_));
if (filename == "")
{
throw Exception::FileNotFound(__FILE__, __LINE__, filename_);
}
// initialize the force field parameters
// and retrieve the atom types
if (parameters_.getFilename() != filename)
{
parameters_.setFilename(filename);
parameters_.init();
// this is the first time, parameters was initialized
// tell all components about it
parameters_initialized_ = false;
}
else
{
// parameters_ are already initialized, tell all components about it
parameters_initialized_ = true;
}
// check the options whether types, type names, or charges
// have to be (re)asigned
options.setDefaultBool(Option::ASSIGN_CHARGES, Default::ASSIGN_CHARGES);
bool assign_charges = options.getBool(Option::ASSIGN_CHARGES);
options.setDefaultBool(Option::ASSIGN_TYPES, Default::ASSIGN_TYPES);
bool assign_types = options.getBool(Option::ASSIGN_TYPES);
options.setDefaultBool(Option::ASSIGN_TYPENAMES, Default::ASSIGN_TYPENAMES);
bool assign_type_names = options.getBool(Option::ASSIGN_TYPENAMES);
options.setDefaultBool(Option::OVERWRITE_TYPENAMES, Default::OVERWRITE_TYPENAMES);
bool overwrite_type_names = options.getBool(Option::OVERWRITE_TYPENAMES);
options.setDefaultBool(Option::OVERWRITE_CHARGES, Default::OVERWRITE_CHARGES);
bool overwrite_charges = options.getBool(Option::OVERWRITE_CHARGES);
bool remove_hydrogens = true;
// extract template section (containing charges and atom types)
if (assign_charges || assign_type_names || remove_hydrogens)
{
Templates templates;
templates.setMaximumUnassignedAtoms(max_number_of_errors_ - number_of_errors_);
templates.extractSection(parameters_, "ChargesAndTypeNames");
// remove all hydrogens bound to extended atom types
if (remove_hydrogens)
{
HashSet<Atom*> atoms_to_delete;
AtomIterator it = getSystem()->beginAtom();
for (; +it; ++it)
{
if (it->getElement() != PTE[Element::H])
{
if (templates.has(it->getFullName()))
{
String type_name = templates.getTypeName(it->getFullName());
bool extended = getParameters().getAtomTypes().getValue(type_name, "extended").toBool();
if (extended)
{
// check for hydrogen atoms and insert them into the hash
// set. We use a hash set just in case - usually a hydrogen
// shouldn`t be bound to two atoms!
Atom::BondIterator bond_it = it->beginBond();
for (; +bond_it; ++bond_it)
{
if (bond_it->getPartner(*it)->getElement() == PTE[Element::H])
{
// if the atom is a hydrogen atom, store its pointer
// for removal
atoms_to_delete.insert(bond_it->getPartner(*it));
}
}
}
}
}
}
if (atoms_to_delete.size() > 0)
{
HashSet<Atom*>::Iterator hydrogen_it = atoms_to_delete.begin();
for (; hydrogen_it != atoms_to_delete.end(); ++hydrogen_it)
{
delete *hydrogen_it;
}
Log.info() << "CharmmFF::setup: deleted " << atoms_to_delete.size()
<< " hydrogen atoms (using CHARMM united atoms instead)." << endl;
// tell the ForceField class to recalculate the atoms_ vector
// because we deleted things!
atoms_.clear();
}
}
if (assign_charges && assign_type_names)
{
templates.assign(*getSystem(), overwrite_type_names, overwrite_charges);
}
else
{
if (assign_type_names)
{
templates.assignTypeNames(*getSystem(), overwrite_type_names);
}
else
{
templates.assignCharges(*getSystem(), overwrite_charges);
}
}
HashSet<const Atom*>::ConstIterator it = templates.getUnassignedAtoms().begin();
for (; it != templates.getUnassignedAtoms().end(); it++)
{
getUnassignedAtoms().insert(*it);
}
number_of_errors_ += templates.getUnassignedAtoms().size();
if (number_of_errors_ > max_number_of_errors_)
{
throw(Exception::TooManyErrors(__FILE__, __LINE__));
}
}
// assign the types (type names should have been set already)
if (assign_types)
{
// convert the type names to types
AssignTypeProcessor type_proc(parameters_.getAtomTypes());
type_proc.setMaximumUnassignedAtoms(max_number_of_errors_ - number_of_errors_);
getSystem()->apply(type_proc);
HashSet<const Atom*>::ConstIterator it = type_proc.getUnassignedAtoms().begin();
for (; it != type_proc.getUnassignedAtoms().end(); it++)
{
getUnassignedAtoms().insert(*it);
}
number_of_errors_ += type_proc.getUnassignedAtoms().size();
if (number_of_errors_ > max_number_of_errors_)
{
throw(Exception::TooManyErrors(__FILE__, __LINE__));
}
}
return true;
}
double CharmmFF::getStretchEnergy() const
{
ForceFieldComponent* component = getComponent("CHARMM Stretch");
if (component != 0)
{
return component->getEnergy();
}
else
{
return 0;
}
}
double CharmmFF::getBendEnergy() const
{
ForceFieldComponent* component = getComponent("CHARMM Bend");
if (component != 0)
{
return component->getEnergy();
}
else
{
return 0;
}
}
double CharmmFF::getImproperTorsionEnergy() const
{
ForceFieldComponent* component = getComponent("CHARMM ImproperTorsion");
if (component != 0)
{
return component->getEnergy();
}
else
{
return 0;
}
}
double CharmmFF::getProperTorsionEnergy() const
{
ForceFieldComponent* component = getComponent("CHARMM Torsion");
if (component != 0)
{
return component->getEnergy();
}
else
{
return 0;
}
}
double CharmmFF::getTorsionEnergy() const
{
return getImproperTorsionEnergy() + getProperTorsionEnergy();
}
double CharmmFF::getVdWEnergy() const
{
double energy = 0;
const ForceFieldComponent* component = getComponent("CHARMM NonBonded");
if (component != 0)
{
const CharmmNonBonded* nonbonded_component = dynamic_cast<const CharmmNonBonded*>(component);
if (nonbonded_component != 0)
{
energy = nonbonded_component->getVdwEnergy();
}
}
return energy;
}
double CharmmFF::getESEnergy() const
{
double energy = 0;
const ForceFieldComponent* component = getComponent("CHARMM NonBonded");
if (component != 0)
{
const CharmmNonBonded* nonbonded_component = dynamic_cast<const CharmmNonBonded*>(component);
if (nonbonded_component != 0)
{
energy = nonbonded_component->getElectrostaticEnergy();
}
}
return energy;
}
double CharmmFF::getSolvationEnergy() const
{
double energy = 0;
const ForceFieldComponent* component = getComponent("CHARMM NonBonded");
if (component != 0)
{
const CharmmNonBonded* nonbonded_component = dynamic_cast<const CharmmNonBonded*>(component);
if (nonbonded_component != 0)
{
energy = nonbonded_component->getSolvationEnergy();
}
}
return energy;
}
double CharmmFF::getNonbondedEnergy() const
{
double energy = 0;
const ForceFieldComponent* component = getComponent("CHARMM NonBonded");
if (component != 0)
{
energy += component->getEnergy();
}
return energy;
}
bool CharmmFF::hasInitializedParameters() const
{
return parameters_initialized_;
}
String CharmmFF::getResults() const
{
String result = String("\n")
+ "CHARMM Energy:\n"
+ " - electrostatic: " + String(getESEnergy())+ " kJ/mol\n"
+ " - van der Waals: " + String(getVdWEnergy()) + " kJ/mol\n"
+ " - solvation: " + String(getSolvationEnergy())+ "kJ/mol\n"
+ " - nonbonded: " + String(getNonbondedEnergy())+ "kJ/mol\n"
+ " - bond stretch: " + String(getStretchEnergy())+ " kJ/mol\n"
+ " - angle bend: " + String(getBendEnergy())+ " kJ/mol\n"
+ " - torsion: " + String(getTorsionEnergy())+ " kJ/mol\n"
+ "---------------------------------------\n"
+ " total energy: " +String(getEnergy())+ " kJ/mol\n";
return result;
}
} // namespace BALL
|