Changes in / [5c8807:b119a0]
- Files:
-
- 11 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/userguide/userguide.xml
r5c8807 rb119a0 969 969 </programlisting> 970 970 </section> 971 972 <section xml:id='atoms.translate-to-origin'>973 <title xml:id='atoms.translate-to-origin.title'>Translating atoms</title>974 975 <para>The following Action is convenient to place a subset of atoms976 at a known position, the origin, and then translate to some other977 absolute coordinate. It calculates the average position of the set978 of selected atoms and then translates all atoms by the negative of979 this center, i.e. the center is afterwards at the origin.</para>980 981 <programlisting>... --translate-to-origin</programlisting>982 </section>983 971 984 972 <section xml:id='atoms.change-element'> … … 1770 1758 </section> 1771 1759 1772 <section xml:id='analysis.molecul ar-volume'>1773 <title xml:id='analysis.molecul ar-volume.title'>Molecular Volume1760 <section xml:id='analysis.molecullar-volume'> 1761 <title xml:id='analysis.molecullar-volume.title'>Molecular Volume 1774 1762 </title> 1775 1763 … … 1779 1767 that each node of the tesselation consists of an atom of the 1780 1768 molecule.</para> 1781 1782 <programlisting>... --molecular-volume</programlisting>1783 </section>1784 1785 <section xml:id='analysis.average-molecule-force'>1786 <title xml:id='analysis.average-molecule-forcetitle'>Average force1787 acting on a molecule</title>1788 1789 <para>This sums up all the forces of each atom of a currently1790 selected molecule and returns the average force vector. This should1791 give you the general direction of acceleration of the molecule.1792 </para>1793 1769 1794 1770 <programlisting>... --molecular-volume</programlisting> -
src/Actions/GlobalListOfActions.hpp
r5c8807 rb119a0 22 22 #define GLOBALLISTOFACTIONS_initial \ 23 23 (Redo) \ 24 (AnalysisAverageMoleculeForce) \25 24 (AnalysisDipoleAngularCorrelation) \ 26 25 (AnalysisDipoleCorrelation) \ … … 37 36 (AtomSaveSelectedAtoms) \ 38 37 (AtomTranslate) \ 39 (AtomTranslateToOrigin) \40 38 (BondAdd) \ 41 39 (BondRemove) \ -
src/Actions/Makefile.am
r5c8807 rb119a0 117 117 118 118 ANALYSISACTIONSOURCE = \ 119 Actions/AnalysisAction/AverageMoleculeForceAction.cpp \120 119 Actions/AnalysisAction/DipoleAngularCorrelationAction.cpp \ 121 120 Actions/AnalysisAction/DipoleCorrelationAction.cpp \ … … 126 125 Actions/AnalysisAction/SurfaceCorrelationAction.cpp 127 126 ANALYSISACTIONHEADER = \ 128 Actions/AnalysisAction/AverageMoleculeForceAction.hpp \129 127 Actions/AnalysisAction/DipoleAngularCorrelationAction.hpp \ 130 128 Actions/AnalysisAction/DipoleCorrelationAction.hpp \ … … 135 133 Actions/AnalysisAction/SurfaceCorrelationAction.hpp 136 134 ANALYSISACTIONDEFS = \ 137 Actions/AnalysisAction/AverageMoleculeForceAction.def \138 135 Actions/AnalysisAction/DipoleAngularCorrelationAction.def \ 139 136 Actions/AnalysisAction/DipoleCorrelationAction.def \ … … 151 148 Actions/AtomAction/RotateAroundOriginByAngleAction.cpp \ 152 149 Actions/AtomAction/SaveSelectedAtomsAction.cpp \ 153 Actions/AtomAction/TranslateAction.cpp \ 154 Actions/AtomAction/TranslateToOriginAction.cpp 150 Actions/AtomAction/TranslateAction.cpp 155 151 ATOMACTIONHEADER = \ 156 152 Actions/AtomAction/AddAction.hpp \ … … 160 156 Actions/AtomAction/RotateAroundOriginByAngleAction.hpp \ 161 157 Actions/AtomAction/SaveSelectedAtomsAction.hpp \ 162 Actions/AtomAction/TranslateAction.hpp \ 163 Actions/AtomAction/TranslateToOriginAction.hpp 158 Actions/AtomAction/TranslateAction.hpp 164 159 ATOMACTIONDEFS = \ 165 160 Actions/AtomAction/AddAction.def \ … … 169 164 Actions/AtomAction/RotateAroundOriginByAngleAction.def \ 170 165 Actions/AtomAction/SaveSelectedAtomsAction.def \ 171 Actions/AtomAction/TranslateAction.def \ 172 Actions/AtomAction/TranslateToOriginAction.def 166 Actions/AtomAction/TranslateAction.def 173 167 174 168 BONDACTIONSOURCE = \ -
tests/regression/Atoms/testsuite-atoms.at
r5c8807 rb119a0 39 39 m4_include([Atoms/Translation/testsuite-atoms-translation.at]) 40 40 41 # translate to origin42 m4_include([Atoms/TranslationToOrigin/testsuite-atoms-translation-to-origin.at])43 44 41 # mirror atoms 45 42 m4_include([Atoms/Mirror/testsuite-atoms-mirror.at]) -
tests/regression/Makefile.am
r5c8807 rb119a0 41 41 $(srcdir)/Atoms/SaveSelectedAtoms/testsuite-atoms-save-selected-atoms.at \ 42 42 $(srcdir)/Atoms/Translation/testsuite-atoms-translation.at \ 43 $(srcdir)/Atoms/TranslationToOrigin/testsuite-atoms-translation-to-origin.at \44 43 $(srcdir)/Bond/testsuite-bond.at \ 45 44 $(srcdir)/Bond/Add/testsuite-bond-add.at \
Note:
See TracChangeset
for help on using the changeset viewer.