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
|
---|
21 | AT_SETUP([Potential Fitting - water with harmonic bond and angle potential])
|
---|
22 | AT_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
|
---|
25 | WORKERPORT=12300
|
---|
26 | CONTROLLERPORT=12301
|
---|
27 | WORKERLISTENPORT=12302
|
---|
28 |
|
---|
29 | # start service in background
|
---|
30 | ${AUTOTEST_PATH}/molecuilder_server --workerport $WORKERPORT --controllerport $CONTROLLERPORT --timeout 3 &
|
---|
31 | server_pid=$!
|
---|
32 | AT_CHECK([sleep 2], 0, [ignore], [ignore], [kill $server_pid])
|
---|
33 | AT_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 &
|
---|
37 | worker_script_pid=$!
|
---|
38 | worker_pid=`ps -ef | grep molecuilder_poolworker | grep $worker_script_pid | awk '{print $2}'`
|
---|
39 | AT_CHECK([sleep 2], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
|
---|
40 | AT_CHECK([kill -s 0 $worker_pid], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
|
---|
41 |
|
---|
42 | # create jobs via molecuilder
|
---|
43 | molfile="water.pdb"
|
---|
44 | outputfile="water.data"
|
---|
45 | AT_CHECK([cp -f ${abs_top_srcdir}/tests/integration/PotentialFitting/pre/$molfile $molfile], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
|
---|
46 | AT_CHECK([chmod +rw $molfile], 0)
|
---|
47 | AT_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
|
---|
75 | AT_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
|
---|
78 | AT_CHECK([sleep 1], 0, [ignore], [ignore], [kill $worker_pid $server_pid])
|
---|
79 | AT_CHECK([kill $worker_pid], 1, [ignore], [ignore], [kill $server_pid])
|
---|
80 |
|
---|
81 | # shutdown controller socket
|
---|
82 | AT_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
|
---|
85 | AT_CHECK([sleep 1], 0, [ignore], [ignore], [kill $server_pid])
|
---|
86 | AT_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
|
---|
93 | AT_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
|
---|
106 | AT_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
|
---|
108 | AT_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
|
---|
111 | AT_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
|
---|
124 | AT_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
|
---|
126 | AT_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 |
|
---|
128 | AT_CLEANUP
|
---|