Changeset 4882d5 for src/Actions/MoleculeAction
- Timestamp:
- Dec 14, 2012, 5:39:30 PM (12 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 5251af
- Parents:
- 8b886f
- git-author:
- Frederik Heber <heber@…> (10/05/12 07:59:22)
- git-committer:
- Frederik Heber <heber@…> (12/14/12 17:39:30)
- Location:
- src/Actions/MoleculeAction
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/VerletIntegrationAction.cpp
r8b886f r4882d5 57 57 /** =========== define the function ====================== */ 58 58 Action::state_ptr MoleculeVerletIntegrationAction::performCall() { 59 LOG(1, "Parsing forces file and Verlet integrating.");60 59 // TODO: sollte besser stream nutzen, nicht filename direkt (es sei denn, ist prefix), besser fuer unit test 61 char outputname[MAXSTRINGSIZE];62 strcpy(outputname, params.forcesfile.get().string().c_str());63 60 AtomSetMixin<std::vector<atom *> > set(World::getInstance().getSelectedAtoms()); 64 61 for (unsigned int step = 0; step < params.MDSteps.get(); ++step) { 65 VerletForceIntegration<std::vector<atom *> > Verlet(set, params.Deltat.get(), step, false); 66 if (!Verlet(outputname, 1, 0, params.FixedCenterOfMass.get())) 62 VerletForceIntegration<std::vector<atom *> > Verlet(set, params.Deltat.get(), false); 63 // parse forces into next step 64 if (!params.forcesfile.get().string().empty()) { 65 LOG(1, "Parsing forces file."); 66 if (!Verlet.parseForcesFile(params.forcesfile.get().string().c_str(), step)) 67 LOG(2, "File " << params.forcesfile.get() << " not found."); 68 else 69 LOG(2, "File " << params.forcesfile.get() << " found and parsed."); 70 } 71 // perform velocity verlet update 72 LOG(1, "Verlet integrating."); 73 if (!Verlet(step+1, 1, 0, params.FixedCenterOfMass.get())) 67 74 LOG(2, "File " << params.forcesfile.get() << " not found."); 68 75 else -
src/Actions/MoleculeAction/VerletIntegrationAction.def
r8b886f r4882d5 11 11 #include "Parameters/Validators/DummyValidator.hpp" 12 12 #include "Parameters/Validators/GenericValidators.hpp" 13 #include "Parameters/Validators/Ops_Validator.hpp" 13 14 #include "Parameters/Validators/Specific/FilePresentValidator.hpp" 14 15 … … 17 18 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 18 19 #define paramtypes (boost::filesystem::path)(double)(unsigned int)(bool) 19 #define paramtokens (" verlet-integration")("deltat")("MDSteps")("keep-fixed-CenterOfMass")20 #define paramdescriptions (" perform verlet integration of a given force file")("time step width")("number of MDSteps to integrate")("whether forces and velocities shall be corrected such that center of mass remains at rest")21 # undef paramdefaults20 #define paramtokens ("forces-file")("deltat")("MDSteps")("keep-fixed-CenterOfMass") 21 #define paramdescriptions ("file containing")("time step width")("number of MDSteps to integrate")("whether forces and velocities shall be corrected such that center of mass remains at rest") 22 #define paramdefaults (PARAM_DEFAULT(""))(NOPARAM_DEFAULT)(NOPARAM_DEFAULT)(NOPARAM_DEFAULT) 22 23 #define paramreferences (forcesfile)(Deltat)(MDSteps)(FixedCenterOfMass) 23 24 #define paramvalids \ 24 ( FilePresentValidator()) \25 (DummyValidator< boost::filesystem::path >()) \ 25 26 (PositiveValidator< double >()) \ 26 27 (NotZeroValidator< unsigned int >()) \
Note:
See TracChangeset
for help on using the changeset viewer.