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