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
|
#include "Molmodel.h"
#include <iostream>
#include <exception>
using namespace SimTK;
int main() {
try {
CompoundSystem system;
SimbodyMatterSubsystem matter(system);
DecorationSubsystem decorations(system);
DuMMForceFieldSubsystem forceField(system);
forceField.loadAmber99Parameters();
Protein protein("SIMTK");
protein.assignBiotypes();
system.adoptCompound(protein);
for ( Compound::BondIndex bondIx(0);
bondIx < protein.getNumBonds();
++bondIx)
{
// set all bonds rigid
protein.setBondMobility(
BondMobility::Rigid,
bondIx);
}
// Show me a movie
Visualizer viz(system);
system.addEventReporter( new Visualizer::Reporter(viz, 0.020) );
// finalize multibody system
system.modelCompounds();
// Maintain a constant temperature
system.addEventHandler(new VelocityRescalingThermostat(
system, 293.15, 0.1));
// Instantiate simbody model
system.realizeTopology();
State state = system.getDefaultState();
// Relax the structure before dynamics run
LocalEnergyMinimizer::minimizeEnergy(system, state, 15.0);
// Simulate it.
VerletIntegrator integ(system);
TimeStepper ts(system, integ);
ts.initialize(state);
ts.stepTo(20.0);
return 0;
}
catch(const std::exception& e) {
std::cerr << "ERROR: " << e.what() << std::endl;
return 1;
}
catch(...) {
std::cerr << "ERROR: An unknown exception was raised" << std::endl;
return 1;
}
}
|