Changeset 5cdfac
- Timestamp:
- Oct 1, 2016, 6:03:37 PM (9 years ago)
- Branches:
- Fix_FitPotential_needs_atomicnumbers
- Children:
- f6f761
- Parents:
- 2a28cd
- git-author:
- Frederik Heber <heber@…> (10/01/16 17:56:45)
- git-committer:
- Frederik Heber <heber@…> (10/01/16 18:03:37)
- Files:
-
- 15 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/userguide/userguide.xml
r2a28cd r5cdfac 939 939 found between any pair of these is removed.</para> 940 940 </section> 941 <section xml:id="bond.set-bond-degree"> 942 <title xml:id="bond.set-bond-degree.title">Setting the bond degree manually </title> 943 <para>The bond degrees are usually automatically set to fulfill the 944 valency constraints of each bond partner. However, degrees can also be 945 set manually for a set of selected atoms. Note that the degree is set 946 to the given value for all bonds in between any pair of atoms within 947 the set.</para> 948 <programlisting>... --set-bond-degree 2</programlisting> 949 <para>Similarly, if more than two atoms are selected, then all bonds 950 found between any pair of these are modified.</para> 951 </section> 941 952 <section xml:id="bond.save-bonds"> 942 953 <title xml:id="bond.save-bonds.title">Saving bond information </title> -
src/Actions/GlobalListOfActions.hpp
r2a28cd r5cdfac 41 41 (BondAdd) \ 42 42 (BondRemove) \ 43 (BondSetDegree) \ 43 44 (CommandDryRun) \ 44 45 (CommandElementDb) \ -
src/Actions/Makefile.am
r2a28cd r5cdfac 178 178 BONDACTIONSOURCE = \ 179 179 Actions/BondAction/BondAddAction.cpp \ 180 Actions/BondAction/BondRemoveAction.cpp 180 Actions/BondAction/BondRemoveAction.cpp \ 181 Actions/BondAction/BondSetDegreeAction.cpp 181 182 BONDACTIONHEADER = \ 182 183 Actions/BondAction/BondAddAction.hpp \ 183 Actions/BondAction/BondRemoveAction.hpp 184 Actions/BondAction/BondRemoveAction.hpp \ 185 Actions/BondAction/BondSetDegreeAction.hpp 184 186 BONDACTIONDEFS = \ 185 187 Actions/BondAction/BondAddAction.def \ 186 Actions/BondAction/BondRemoveAction.def 188 Actions/BondAction/BondRemoveAction.def \ 189 Actions/BondAction/BondSetDegreeAction.def 187 190 188 191 CMDACTIONSOURCE = \ -
tests/regression/Bond/testsuite-bond.at
r2a28cd r5cdfac 28 28 # adjacency matcher 29 29 m4_include([Bond/AdjacencyMatcher/testsuite-bond-adjacencymatcher.at]) 30 31 # set degree 32 m4_include([Bond/SetDegree/testsuite-bond-set-degree.at]) 33 m4_include([Bond/SetDegree/testsuite-bond-set-degree_multiple.at]) 34 -
tests/regression/Makefile.am
r2a28cd r5cdfac 49 49 $(srcdir)/Bond/Add/testsuite-bond-add.at \ 50 50 $(srcdir)/Bond/Add/testsuite-bond-add_multiple.at \ 51 $(srcdir)/Bond/AdjacencyMatcher/testsuite-bond-adjacencymatcher.at \ 51 52 $(srcdir)/Bond/Remove/testsuite-bond-remove.at \ 52 53 $(srcdir)/Bond/Remove/testsuite-bond-remove_multiple.at \ 53 $(srcdir)/Bond/AdjacencyMatcher/testsuite-bond-adjacencymatcher.at \ 54 $(srcdir)/Bond/SetDegree/testsuite-bond-set-degree.at \ 55 $(srcdir)/Bond/SetDegree/testsuite-bond-set-degree_multiple.at \ 54 56 $(srcdir)/Analysis/testsuite-analysis.at \ 55 57 $(srcdir)/Analysis/DipoleAngularCorrelation/testsuite-analysis-dipole-angular-correlation.at \
Note:
See TracChangeset
for help on using the changeset viewer.