source: tests/integration/PotentialFitting/testsuite-integration-potentialfitting-water.at@ 53a85a

Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 53a85a was 53a85a, checked in by Frederik Heber <frederik.heber@…>, 7 years ago

Added integration test on Potential Fitting for water.

  • we fit harmonic_bond and harmonic_angle but the parameters aren't any good naturally. This mostly checks save-homologies and parse-homologies on the MD trajectories.
  • Property mode set to 100644
File size: 6.0 KB
Line 
1#
2# MoleCuilder - creates and alters molecular systems
3# Copyright (C) 2017 Frederik Heber
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#
18### testing potential fitting from an MD simulation of water
19
20# perform test with PoolWorkers using molecuilder_poolworker
21AT_SETUP([Potential Fitting - water with harmonic bond and angle potential])
22AT_KEYWORDS([fit-potential water harmonic_bond harmonic_angle])
23
24# check that ports are unique over all tests such that they may run in parallel
25WORKERPORT=12300
26CONTROLLERPORT=12301
27WORKERLISTENPORT=12302
28
29# start service in background
30${AUTOTEST_PATH}/molecuilder_server --workerport $WORKERPORT --controllerport $CONTROLLERPORT --timeout 3 &
31server_pid=$!
32AT_CHECK([sleep 2], 0, [ignore], [ignore], [kill $server_pid])
33AT_CHECK([kill -s 0 $server_pid], 0, [ignore], [ignore], [kill $server_pid])
34
35# enlist a worker to work on jobs
36../../molecuilder_poolworker -v 5 --server 127.0.0.1:${WORKERPORT} --hostname 127.0.0.1 --listen $WORKERLISTENPORT &
37worker_script_pid=$!
38worker_pid=`ps -ef | grep molecuilder_poolworker | grep $worker_script_pid | awk '{print $2}'`
39AT_CHECK([sleep 2], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
40AT_CHECK([kill -s 0 $worker_pid], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
41
42# create jobs via molecuilder
43molfile="water.pdb"
44outputfile="water.data"
45AT_CHECK([cp -f ${abs_top_srcdir}/tests/integration/PotentialFitting/pre/$molfile $molfile], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
46AT_CHECK([chmod +rw $molfile], 0)
47AT_CHECK([../../molecuilder \
48 -i $molfile \
49 -o tremolo \
50 --set-tremolo-atomdata "Id type x=3 u=3 F=3 neighbors=2" \
51 --select-all-atoms \
52 --set-random-number-distribution "uniform_real" \
53 --random-number-distribution-parameters "min=0;max=1;" \
54 --set-random-number-engine "lagged_fibonacci607" \
55 --random-number-engine-parameters "seed=5;" \
56 --random-perturbation 0.1 \
57 --center-in-box "10,0,10,0,0,10" \
58 --set-boundary-conditions Wrap Wrap Wrap \
59 --update-molecules \
60 --set-parser-parameters mpqc \
61 --parser-parameters "theory=CLHF;basis=3-21G;" \
62 --molecular-dynamics \
63 --keep-bondgraph 1 \
64 --parse-state-files 0 \
65 --deltat 0.5 \
66 --steps 30 \
67 --order 1 \
68 --grid-level 4 \
69 --server-address 127.0.0.1 \
70 --server-port ${CONTROLLERPORT} \
71 --DoLongrange 0 \
72 --save-homologies water.homologies], 0, [stdout], [ignore], [kill $server_pid $worker_pid])
73
74# send removeall to server such that all workers shutdown
75AT_CHECK([${AUTOTEST_PATH}/molecuilder_controller --server 127.0.0.1:$CONTROLLERPORT --command removeall], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
76
77# check that worker is truely down
78AT_CHECK([sleep 1], 0, [ignore], [ignore], [kill $worker_pid $server_pid])
79AT_CHECK([kill $worker_pid], 1, [ignore], [ignore], [kill $server_pid])
80
81# shutdown controller socket
82AT_CHECK([${AUTOTEST_PATH}/molecuilder_controller --server 127.0.0.1:$CONTROLLERPORT --command shutdown], 0, [stdout], [ignore], [kill $server_pid])
83
84# check that server is truely down
85AT_CHECK([sleep 1], 0, [ignore], [ignore], [kill $server_pid])
86AT_CHECK([kill $server_pid], 1, [ignore], [ignore])
87
88# NOTE that due the limited number of steps we will not get any good parameters
89# This is mostly a test whether save-homologies afte the MD works, we can parse in
90# all the steps we made (different configurations) and perform some potential to it.
91
92# fit potential harmonic_bond
93AT_CHECK([../../molecuilder \
94 --parse-homologies water.homologies \
95 --set-random-number-engine "lagged_fibonacci607" \
96 --random-number-engine-parameters "seed=1;" \
97 --set-random-number-distribution "uniform_real" \
98 --random-number-distribution-parameters "min=0;max=1;" \
99 --fit-potential \
100 --potential-type "harmonic_bond" \
101 --potential-charges 8 1 \
102 --fragment-charges 1 8 1 \
103 --set-threshold 6e-4 \
104 --save-potentials harmonic.potentials], 0, [stdout], [ignore], [kill $server_pid $worker_pid])
105# check that L_2 error is below desired threshold
106AT_CHECK([grep "Best parameters with L2 error" stdout | awk '{if ($8 > 6e-4) exit 1}'], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
107# check parameters to printed precision
108AT_CHECK([grep "harmonic_bond:.*particle_type1=8,.*particle_type2=1,.*spring_constant=0.22.*,.*equilibrium_distance=1.8.*;" harmonic.potentials], 0, [ignore], [ignore])
109
110# fit potential harmonic_angle
111AT_CHECK([../../molecuilder \
112 --parse-homologies water.homologies \
113 --set-random-number-engine "lagged_fibonacci607" \
114 --random-number-engine-parameters "seed=1;" \
115 --set-random-number-distribution "uniform_real" \
116 --random-number-distribution-parameters "min=0;max=1;" \
117 --fit-potential \
118 --potential-type "harmonic_angle" \
119 --potential-charges 1 8 1 \
120 --fragment-charges 1 8 1 \
121 --set-threshold 4e-3 \
122 --save-potentials angle.potentials], 0, [stdout], [ignore], [kill $server_pid $worker_pid])
123# check that L_2 error is below threshold
124AT_CHECK([grep "Best parameters with L2 error" stdout | awk '{if ($8 > 4e-3) exit 1}'], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
125# check parameters to printed precision
126AT_CHECK([grep "harmonic_angle:.*particle_type1=1,.*particle_type2=8,.*particle_type3=1,.*spring_constant=0.03.*,.*equilibrium_distance=-0.3.*;" angle.potentials], 0, [ignore], [ignore])
127
128AT_CLEANUP
Note: See TracBrowser for help on using the repository browser.