Changeset 2bb3be for src/Actions
- Timestamp:
- Apr 10, 2018, 6:43:11 AM (7 years ago)
- Branches:
- AutomationFragmentation_failures, Candidate_v1.6.1, ChemicalSpaceEvaluator, Enhanced_StructuralOptimization_continued, Exclude_Hydrogens_annealWithBondGraph, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_contraction-expansion, Gui_displays_atomic_force_velocity, PythonUI_with_named_parameters, StoppableMakroAction, TremoloParser_IncreasedPrecision
- Children:
- 12f16c
- Parents:
- 866dec
- git-author:
- Frederik Heber <frederik.heber@…> (08/02/17 20:50:05)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/10/18 06:43:11)
- Location:
- src/Actions/MoleculeAction
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/ForceAnnealingAction.cpp
r866dec r2bb3be 85 85 } 86 86 87 // we always operate relative to current time step, except on single debug output88 87 size_t CurrentStep = WorldTime::getInstance().getTime(); 89 if (params.DoOutput.get()){88 { 90 89 // copy current time step to new one and and proceed on this one 91 90 for (World::AtomSelectionIterator iter = World::getInstance().beginAtomSelection(); -
src/Actions/MoleculeAction/ForceAnnealingAction.def
r866dec r2bb3be 19 19 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 20 20 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 21 #define paramtypes (boost::filesystem::path)(double)(unsigned int)( bool)(int)(double)(bool)22 #define paramtokens ("forces-file")("deltat")("steps")(" output-every-step")("max-distance")("damping-factor")("use-bondgraph")23 #define paramdescriptions ("file containing")("basic step width to be used")("fixed number of optimization steps to be performed")(" whether WorldTime should be increased and output written after every step, useful if optimization might hang")("maximum distance to which bond graph is taken into account")("damping factor for decreasing the shift with bond graph distance from the causing site")("whether annealing should take place focusing on atoms alone or on the bonds (faster)")24 #define paramdefaults (PARAM_DEFAULT(""))(PARAM_DEFAULT(0.1))(NOPARAM_DEFAULT)(PARAM_DEFAULT( "0"))(PARAM_DEFAULT(0))(PARAM_DEFAULT(0.5))(PARAM_DEFAULT(0))25 #define paramreferences (forcesfile)(deltat)(steps)( DoOutput)(MaxDistance)(DampingFactor)(UseBondGraph)21 #define paramtypes (boost::filesystem::path)(double)(unsigned int)(int)(double)(bool) 22 #define paramtokens ("forces-file")("deltat")("steps")("max-distance")("damping-factor")("use-bondgraph") 23 #define paramdescriptions ("file containing")("basic step width to be used")("fixed number of optimization steps to be performed")("maximum distance to which bond graph is taken into account")("damping factor for decreasing the shift with bond graph distance from the causing site")("whether annealing should take place focusing on atoms alone or on the bonds (faster)") 24 #define paramdefaults (PARAM_DEFAULT(""))(PARAM_DEFAULT(0.1))(NOPARAM_DEFAULT)(PARAM_DEFAULT(0))(PARAM_DEFAULT(0.5))(PARAM_DEFAULT(0)) 25 #define paramreferences (forcesfile)(deltat)(steps)(MaxDistance)(DampingFactor)(UseBondGraph) 26 26 #define paramvalids \ 27 27 (DummyValidator< boost::filesystem::path >()) \ 28 28 (RangeValidator< double >(std::numeric_limits<double>::min(), std::numeric_limits<double>::max())) \ 29 29 (NotZeroValidator< unsigned int >()) \ 30 (DummyValidator<bool>()) \31 30 (DummyValidator< int >()) \ 32 31 (RangeValidator< double >(0,1)) \
Note:
See TracChangeset
for help on using the changeset viewer.