Line data Source code
1 : !--------------------------------------------------------------------------------------------------!
2 : ! CP2K: A general program to perform molecular dynamics simulations !
3 : ! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
4 : ! !
5 : ! SPDX-License-Identifier: GPL-2.0-or-later !
6 : !--------------------------------------------------------------------------------------------------!
7 :
8 : ! **************************************************************************************************
9 : !> \brief Collection of subroutine needed for topology related things
10 : !> \par History
11 : !> jgh (23-05-2004) Last atom of molecule information added
12 : ! **************************************************************************************************
13 :
14 : MODULE topology_connectivity_util
15 : USE cp_log_handling, ONLY: cp_get_default_logger,&
16 : cp_logger_get_default_io_unit,&
17 : cp_logger_type
18 : USE cp_output_handling, ONLY: cp_print_key_finished_output,&
19 : cp_print_key_unit_nr
20 : USE force_field_kind_types, ONLY: do_ff_charmm,&
21 : do_ff_harmonic
22 : USE input_constants, ONLY: do_conn_g87,&
23 : do_conn_g96,&
24 : do_conn_user
25 : USE input_section_types, ONLY: section_vals_type,&
26 : section_vals_val_get
27 : USE kinds, ONLY: default_string_length
28 : USE memory_utilities, ONLY: reallocate
29 : USE molecule_kind_types, ONLY: &
30 : allocate_molecule_kind_set, atom_type, bend_type, bond_type, get_molecule_kind, impr_type, &
31 : molecule_kind_type, opbend_type, set_molecule_kind, torsion_type, ub_type
32 : USE molecule_types, ONLY: allocate_molecule_set,&
33 : get_molecule,&
34 : local_states_type,&
35 : molecule_type,&
36 : set_molecule,&
37 : set_molecule_set
38 : USE string_table, ONLY: id2str
39 : USE topology_types, ONLY: atom_info_type,&
40 : connectivity_info_type,&
41 : topology_parameters_type
42 : USE util, ONLY: sort
43 : #include "./base/base_uses.f90"
44 :
45 : IMPLICIT NONE
46 :
47 : CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'topology_connectivity_util'
48 :
49 : PRIVATE
50 : PUBLIC :: topology_connectivity_pack, topology_conn_multiple
51 :
52 : CONTAINS
53 :
54 : ! **************************************************************************************************
55 : !> \brief topology connectivity pack
56 : !> \param molecule_kind_set ...
57 : !> \param molecule_set ...
58 : !> \param topology ...
59 : !> \param subsys_section ...
60 : !> \par History 11/2009 (Louis Vanduyhuys): added Out of Plane bends based on
61 : !> impropers in topology
62 : ! **************************************************************************************************
63 11908 : SUBROUTINE topology_connectivity_pack(molecule_kind_set, molecule_set, &
64 : topology, subsys_section)
65 : TYPE(molecule_kind_type), DIMENSION(:), POINTER :: molecule_kind_set
66 : TYPE(molecule_type), DIMENSION(:), POINTER :: molecule_set
67 : TYPE(topology_parameters_type), INTENT(INOUT) :: topology
68 : TYPE(section_vals_type), POINTER :: subsys_section
69 :
70 : CHARACTER(len=*), PARAMETER :: routineN = 'topology_connectivity_pack'
71 :
72 : CHARACTER(LEN=default_string_length) :: name
73 : INTEGER :: counter, first, handle, handle2, i, ibend, ibond, idim, iimpr, ikind, imol, &
74 : inter_bends, inter_bonds, inter_imprs, inter_torsions, inter_ubs, intra_bends, &
75 : intra_bonds, intra_imprs, intra_torsions, intra_ubs, inum, ires, istart_mol, istart_typ, &
76 : itorsion, ityp, iub, iw, j, j1, j2, j3, j4, jind, last, min_index, natom, nelectron, &
77 : nsgf, nval_tot1, nval_tot2, nvar1, nvar2, output_unit
78 11908 : INTEGER, DIMENSION(:), POINTER :: c_var_a, c_var_b, c_var_c, c_var_d, c_var_type, &
79 11908 : first_list, last_list, map_atom_mol, map_atom_type, map_cvar_mol, map_cvars, map_var_mol, &
80 11908 : map_vars, molecule_list
81 11908 : INTEGER, DIMENSION(:, :), POINTER :: bnd_ctype, bnd_type
82 : LOGICAL :: found, found_last
83 : TYPE(atom_info_type), POINTER :: atom_info
84 11908 : TYPE(atom_type), DIMENSION(:), POINTER :: atom_list
85 11908 : TYPE(bend_type), DIMENSION(:), POINTER :: bend_list
86 11908 : TYPE(bond_type), DIMENSION(:), POINTER :: bond_list
87 : TYPE(connectivity_info_type), POINTER :: conn_info
88 : TYPE(cp_logger_type), POINTER :: logger
89 11908 : TYPE(impr_type), DIMENSION(:), POINTER :: impr_list
90 11908 : TYPE(local_states_type), DIMENSION(:), POINTER :: lmi
91 : TYPE(molecule_kind_type), POINTER :: molecule_kind
92 : TYPE(molecule_type), POINTER :: molecule
93 11908 : TYPE(opbend_type), DIMENSION(:), POINTER :: opbend_list
94 11908 : TYPE(torsion_type), DIMENSION(:), POINTER :: torsion_list
95 11908 : TYPE(ub_type), DIMENSION(:), POINTER :: ub_list
96 :
97 11908 : NULLIFY (logger)
98 23816 : logger => cp_get_default_logger()
99 11908 : output_unit = cp_logger_get_default_io_unit(logger)
100 : iw = cp_print_key_unit_nr(logger, subsys_section, "PRINT%TOPOLOGY_INFO/UTIL_INFO", &
101 11908 : extension=".subsysLog")
102 11908 : CALL timeset(routineN, handle)
103 :
104 11908 : atom_info => topology%atom_info
105 11908 : conn_info => topology%conn_info
106 35724 : ALLOCATE (map_atom_mol(topology%natoms))
107 23816 : ALLOCATE (map_atom_type(topology%natoms))
108 : !-----------------------------------------------------------------------------
109 : !-----------------------------------------------------------------------------
110 : ! 1. Set the topology%[nmol_type,nmol,nmol_conn]
111 : !-----------------------------------------------------------------------------
112 11908 : CALL timeset(routineN//"_1", handle2)
113 11908 : natom = topology%natoms
114 11908 : topology%nmol = 1
115 11908 : topology%nmol_type = 1
116 11908 : topology%nmol_conn = 0
117 780385 : map_atom_mol = -1
118 780385 : map_atom_type = -1
119 11908 : map_atom_mol(1) = 1
120 11908 : map_atom_type(1) = 1
121 768477 : DO i = 1, natom - 1
122 756569 : IF ((atom_info%map_mol_typ(i + 1) /= atom_info%map_mol_typ(i)) .OR. &
123 : ((atom_info%map_mol_res(i + 1) /= atom_info%map_mol_res(i)) .AND. &
124 : (.NOT. (topology%conn_type == do_conn_user)))) THEN
125 137569 : topology%nmol_type = topology%nmol_type + 1
126 : END IF
127 756569 : map_atom_type(i + 1) = topology%nmol_type
128 : IF ((atom_info%map_mol_typ(i + 1) /= atom_info%map_mol_typ(i)) .OR. &
129 756569 : (atom_info%map_mol_num(i + 1) /= atom_info%map_mol_num(i)) .OR. &
130 : (atom_info%map_mol_res(i + 1) /= atom_info%map_mol_res(i))) THEN
131 306412 : topology%nmol = topology%nmol + 1
132 : END IF
133 756569 : map_atom_mol(i + 1) = topology%nmol
134 : IF ((atom_info%map_mol_typ(i + 1) == atom_info%map_mol_typ(i)) .AND. &
135 756569 : (atom_info%map_mol_num(i + 1) == atom_info%map_mol_num(i)) .AND. &
136 11908 : (atom_info%map_mol_res(i + 1) /= atom_info%map_mol_res(i))) THEN
137 2832 : topology%nmol_conn = topology%nmol_conn + 1
138 : END IF
139 : END DO
140 11908 : IF (iw > 0) WRITE (iw, *) "topology%nmol ::", topology%nmol
141 11908 : IF (iw > 0) WRITE (iw, *) "topology%nmol_type ::", topology%nmol_type
142 11908 : IF (iw > 0) WRITE (iw, *) "topology%nmol_conn ::", topology%nmol_conn
143 11908 : CALL timestop(handle2)
144 : !-----------------------------------------------------------------------------
145 : !-----------------------------------------------------------------------------
146 : ! 1.1 Clean the temporary arrays to avoid quadratic loops around
147 : ! after this fix all topology_pack will be linear scaling
148 : !-----------------------------------------------------------------------------
149 11908 : CALL timeset(routineN//"_1.1", handle2)
150 11908 : istart_mol = map_atom_mol(1)
151 11908 : istart_typ = map_atom_type(1)
152 768477 : DO i = 2, natom
153 768477 : IF ((map_atom_mol(i) /= istart_mol) .AND. (map_atom_type(i) == istart_typ)) THEN
154 505249 : map_atom_mol(i) = -map_atom_mol(i)
155 251320 : ELSE IF (map_atom_type(i) /= istart_typ) THEN
156 137569 : istart_mol = map_atom_mol(i)
157 137569 : istart_typ = map_atom_type(i)
158 : END IF
159 : END DO
160 11908 : CALL timestop(handle2)
161 : !-----------------------------------------------------------------------------
162 : !-----------------------------------------------------------------------------
163 : ! 2. Allocate the molecule_kind_set
164 : !-----------------------------------------------------------------------------
165 11908 : CALL timeset(routineN//"_2", handle2)
166 11908 : IF (topology%nmol_type <= 0) THEN
167 0 : CPABORT("No molecule kind defined")
168 : ELSE
169 11908 : NULLIFY (molecule_kind_set)
170 11908 : i = topology%nmol_type
171 11908 : CALL allocate_molecule_kind_set(molecule_kind_set, i)
172 11935 : IF (iw > 0) WRITE (iw, *) " Allocated molecule_kind_set, Dimenstion of ", &
173 54 : SIZE(molecule_kind_set)
174 : END IF
175 11908 : CALL timestop(handle2)
176 : !-----------------------------------------------------------------------------
177 : !-----------------------------------------------------------------------------
178 : ! 3. Allocate the molecule_set
179 : !-----------------------------------------------------------------------------
180 11908 : CALL timeset(routineN//"_3", handle2)
181 11908 : IF (topology%nmol <= 0) THEN
182 0 : CPABORT("No molecule defined")
183 : ELSE
184 11908 : NULLIFY (molecule_set)
185 11908 : i = topology%nmol
186 11908 : CALL allocate_molecule_set(molecule_set, i)
187 11935 : IF (iw > 0) WRITE (iw, *) " Allocated molecule_set, dimension of ", &
188 54 : topology%nmol
189 : END IF
190 11908 : CALL timestop(handle2)
191 : !-----------------------------------------------------------------------------
192 : !-----------------------------------------------------------------------------
193 : ! 4. Set the molecule_kind_set%[kind_number,name,nsgf,nelectron]
194 : !-----------------------------------------------------------------------------
195 11908 : CALL timeset(routineN//"_4", handle2)
196 11908 : natom = topology%natoms
197 11908 : ikind = -1
198 780385 : DO i = 1, natom
199 780385 : IF (ikind /= map_atom_type(i)) THEN
200 149477 : ikind = map_atom_type(i)
201 149477 : molecule_kind => molecule_kind_set(ikind)
202 149477 : nsgf = 0
203 149477 : nelectron = 0
204 149477 : name = TRIM(id2str(atom_info%id_molname(i)))
205 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
206 : kind_number=ikind, &
207 : molname_generated=topology%molname_generated, &
208 : name=TRIM(name), &
209 : nsgf=nsgf, &
210 149477 : nelectron=nelectron)
211 : END IF
212 : END DO
213 11908 : CALL timestop(handle2)
214 : !-----------------------------------------------------------------------------
215 : !-----------------------------------------------------------------------------
216 : ! 5. Set the molecule_list for molecule_kind in molecule_kind_set
217 : !-----------------------------------------------------------------------------
218 11908 : CALL timeset(routineN//"_5", handle2)
219 11908 : natom = topology%natoms
220 11908 : ikind = map_atom_type(1)
221 : imol = ABS(map_atom_mol(1))
222 11908 : counter = 0
223 303176 : DO i = 1, natom - 1
224 294093 : IF (ikind /= map_atom_type(i + 1)) THEN
225 137569 : found = .TRUE.
226 137569 : found_last = .FALSE.
227 137569 : imol = ABS(map_atom_mol(i))
228 156524 : ELSE IF (ikind == topology%nmol_type) THEN
229 2825 : found = .TRUE.
230 2825 : found_last = .TRUE.
231 2825 : imol = ABS(map_atom_mol(natom))
232 : ELSE
233 : found = .FALSE.
234 : found_last = .FALSE.
235 : END IF
236 :
237 11908 : IF (found) THEN
238 421182 : ALLOCATE (molecule_list(imol - counter))
239 449631 : DO j = 1, SIZE(molecule_list)
240 449631 : molecule_list(j) = j + counter
241 : END DO
242 140394 : molecule_kind => molecule_kind_set(ikind)
243 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
244 140394 : molecule_list=molecule_list)
245 140922 : IF (iw > 0) WRITE (iw, *) " molecule_list", ikind, molecule_list(:)
246 140394 : IF (found_last) EXIT
247 137569 : counter = imol
248 137569 : ikind = map_atom_type(i + 1)
249 : END IF
250 : END DO
251 : ! Treat separately the case in which the last atom is also a molecule
252 11908 : IF (i == natom) THEN
253 9083 : imol = ABS(map_atom_mol(natom))
254 : ! Last atom is also a molecule by itself
255 27249 : ALLOCATE (molecule_list(imol - counter))
256 18166 : DO j = 1, SIZE(molecule_list)
257 18166 : molecule_list(j) = j + counter
258 : END DO
259 9083 : molecule_kind => molecule_kind_set(ikind)
260 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
261 9083 : molecule_list=molecule_list)
262 9086 : IF (iw > 0) WRITE (iw, *) " molecule_list", ikind, molecule_list(:)
263 : END IF
264 11908 : CALL timestop(handle2)
265 : !-----------------------------------------------------------------------------
266 : !-----------------------------------------------------------------------------
267 : ! 6. Set the molecule_set(imol)%molecule_kind via set_molecule
268 : !-----------------------------------------------------------------------------
269 11908 : CALL timeset(routineN//"_6", handle2)
270 161385 : DO ikind = 1, SIZE(molecule_kind_set)
271 149477 : molecule_kind => molecule_kind_set(ikind)
272 : CALL get_molecule_kind(molecule_kind=molecule_kind, &
273 149477 : molecule_list=molecule_list)
274 479705 : DO i = 1, SIZE(molecule_list)
275 318320 : molecule => molecule_set(molecule_list(i))
276 467797 : CALL set_molecule(molecule, molecule_kind=molecule_kind)
277 : END DO
278 : END DO
279 11908 : CALL timestop(handle2)
280 : !-----------------------------------------------------------------------------
281 : !-----------------------------------------------------------------------------
282 : ! 7. Set the molecule_set(imol)%[first_atom,last_atom] via set_molecule_set
283 : !-----------------------------------------------------------------------------
284 35724 : ALLOCATE (first_list(SIZE(molecule_set)))
285 23816 : ALLOCATE (last_list(SIZE(molecule_set)))
286 11908 : CALL timeset(routineN//"_7", handle2)
287 330228 : first_list(:) = 0
288 330228 : last_list(:) = 0
289 11908 : ityp = atom_info%map_mol_typ(1)
290 11908 : inum = atom_info%map_mol_num(1)
291 11908 : ires = atom_info%map_mol_res(1)
292 11908 : imol = 1
293 11908 : first_list(1) = 1
294 768477 : DO j = 2, natom
295 : IF ((atom_info%map_mol_typ(j) /= ityp) .OR. &
296 756569 : (atom_info%map_mol_num(j) /= inum) .OR. &
297 11908 : (atom_info%map_mol_res(j) /= ires)) THEN
298 306412 : ityp = atom_info%map_mol_typ(j)
299 306412 : inum = atom_info%map_mol_num(j)
300 306412 : ires = atom_info%map_mol_res(j)
301 306412 : imol = imol + 1
302 306412 : first_list(imol) = j
303 : END IF
304 : END DO
305 11908 : CPASSERT(imol == topology%nmol)
306 318320 : DO ikind = 1, topology%nmol - 1
307 318320 : last_list(ikind) = first_list(ikind + 1) - 1
308 : END DO
309 11908 : last_list(topology%nmol) = topology%natoms
310 11908 : CALL set_molecule_set(molecule_set, first_list, last_list)
311 11908 : CALL timestop(handle2)
312 : !-----------------------------------------------------------------------------
313 : !-----------------------------------------------------------------------------
314 : ! 8. Set and NULLIFY the molecule_set(imol)%lmi via set_molecule_set
315 : !-----------------------------------------------------------------------------
316 11908 : CALL timeset(routineN//"_8", handle2)
317 330228 : DO imol = 1, SIZE(molecule_set)
318 318320 : molecule => molecule_set(imol)
319 318320 : NULLIFY (lmi)
320 330228 : CALL set_molecule(molecule, lmi=lmi)
321 : END DO
322 11908 : CALL timestop(handle2)
323 : !-----------------------------------------------------------------------------
324 : !-----------------------------------------------------------------------------
325 : ! 9. Set the atom_list for molecule_kind in molecule_kind_set (PART 1)
326 : !-----------------------------------------------------------------------------
327 11908 : CALL timeset(routineN//"_9", handle2)
328 11908 : counter = 0
329 330228 : DO imol = 1, SIZE(molecule_set)
330 318320 : molecule => molecule_set(imol)
331 318320 : molecule_kind => molecule_set(imol)%molecule_kind
332 : CALL get_molecule_kind(molecule_kind=molecule_kind, &
333 318320 : kind_number=i)
334 330228 : IF (counter /= i) THEN
335 149477 : counter = i
336 : CALL get_molecule(molecule=molecule, &
337 149477 : first_atom=first, last_atom=last)
338 149477 : natom = 0
339 149477 : IF (first /= 0 .AND. last /= 0) natom = last - first + 1
340 711659 : ALLOCATE (atom_list(natom))
341 412705 : DO i = 1, natom
342 : !Atomic kind information will be filled in (PART 2)
343 263228 : NULLIFY (atom_list(i)%atomic_kind)
344 263228 : atom_list(i)%id_name = atom_info%id_atmname(i + first - 1)
345 264019 : IF (iw > 0) WRITE (iw, '(5X,A,3I5,1X,A5)') "atom_list ", &
346 151059 : imol, counter, i, TRIM(id2str(atom_list(i)%id_name))
347 : END DO
348 149477 : CALL set_molecule_kind(molecule_kind=molecule_kind, atom_list=atom_list)
349 : END IF
350 : END DO
351 11908 : CALL timestop(handle2)
352 : !-----------------------------------------------------------------------------
353 : !-----------------------------------------------------------------------------
354 : ! 10. Set the molecule_kind%[nbond,bond_list] via set_molecule_kind
355 : !-----------------------------------------------------------------------------
356 11908 : CALL timeset(routineN//"_10", handle2)
357 : ! First map bonds on molecules
358 11908 : nvar1 = 0
359 11908 : nvar2 = 0
360 11908 : NULLIFY (map_vars, map_cvars, bnd_type, bnd_ctype)
361 11908 : IF (ASSOCIATED(conn_info%bond_a)) nvar1 = SIZE(conn_info%bond_a)
362 11908 : IF (ASSOCIATED(conn_info%c_bond_a)) nvar2 = SIZE(conn_info%c_bond_a)
363 11908 : nval_tot1 = nvar1
364 11908 : nval_tot2 = 0
365 26437 : ALLOCATE (map_var_mol(nvar1))
366 23970 : ALLOCATE (map_cvar_mol(nvar2))
367 521253 : map_var_mol = -1
368 14774 : map_cvar_mol = -1
369 521253 : DO i = 1, nvar1
370 509345 : j1 = map_atom_mol(conn_info%bond_a(i))
371 509345 : j2 = map_atom_mol(conn_info%bond_b(i))
372 521253 : IF (j1 == j2) THEN
373 506479 : IF (j1 > 0) map_var_mol(i) = map_atom_type(conn_info%bond_a(i))
374 : END IF
375 : END DO
376 14774 : DO i = 1, nvar2
377 2866 : min_index = MIN(conn_info%c_bond_a(i), conn_info%c_bond_b(i))
378 2866 : j1 = map_atom_mol(min_index)
379 14774 : IF (j1 > 0) map_cvar_mol(i) = map_atom_type(min_index)
380 : END DO
381 11908 : CALL find_bnd_typ(topology%nmol_type, map_vars, map_var_mol, bnd_type, nvar1)
382 11908 : CALL find_bnd_typ(topology%nmol_type, map_cvars, map_cvar_mol, bnd_ctype, nvar2)
383 161385 : DO i = 1, topology%nmol_type
384 149477 : intra_bonds = 0
385 149477 : inter_bonds = 0
386 210363 : IF (ALL(bnd_type(:, i) > 0)) THEN
387 30443 : intra_bonds = bnd_type(2, i) - bnd_type(1, i) + 1
388 : END IF
389 155145 : IF (ALL(bnd_ctype(:, i) > 0)) THEN
390 2834 : inter_bonds = bnd_ctype(2, i) - bnd_ctype(1, i) + 1
391 : END IF
392 149477 : ibond = intra_bonds + inter_bonds
393 149477 : IF (iw > 0) THEN
394 435 : WRITE (iw, *) " Total number bonds for molecule type ", i, " :", ibond
395 435 : WRITE (iw, *) " intra (bonds inside molecules) :: ", intra_bonds
396 435 : WRITE (iw, *) " inter (bonds between molecules) :: ", inter_bonds
397 : END IF
398 149477 : molecule_kind => molecule_kind_set(i)
399 149477 : nval_tot2 = nval_tot2 + ibond*SIZE(molecule_kind%molecule_list)
400 :
401 446732 : ALLOCATE (bond_list(ibond))
402 149477 : ibond = 0
403 382978 : DO j = bnd_type(1, i), bnd_type(2, i)
404 233501 : IF (j == 0) CYCLE
405 114467 : ibond = ibond + 1
406 114467 : jind = map_vars(j)
407 114467 : first = first_list(map_atom_mol(conn_info%bond_a(jind)))
408 114467 : bond_list(ibond)%a = conn_info%bond_a(jind) - first + 1
409 114467 : bond_list(ibond)%b = conn_info%bond_b(jind) - first + 1
410 : ! Set by default id_type to charmm and modify when handling the forcefield
411 114467 : bond_list(ibond)%id_type = do_ff_charmm
412 114467 : IF ((topology%conn_type == do_conn_g96) .OR. (topology%conn_type == do_conn_g87)) THEN
413 132 : bond_list(ibond)%itype = conn_info%bond_type(jind)
414 : END IF
415 : !point this to the right bond_kind_type if using force field
416 114467 : NULLIFY (bond_list(ibond)%bond_kind)
417 263944 : IF (iw > 0) THEN
418 135 : WRITE (iw, '(7X,A,I3,1X,A,I5,I5,1X,A,I5,I5)') "molecule_kind", &
419 135 : i, " intra bond", &
420 135 : conn_info%bond_a(jind), &
421 135 : conn_info%bond_b(jind), &
422 135 : "offset number at", &
423 135 : conn_info%bond_a(jind) - first + 1, &
424 270 : conn_info%bond_b(jind) - first + 1
425 : END IF
426 : END DO
427 298986 : DO j = bnd_ctype(1, i), bnd_ctype(2, i)
428 149509 : IF (j == 0) CYCLE
429 2866 : ibond = ibond + 1
430 2866 : jind = map_cvars(j)
431 2866 : min_index = MIN(conn_info%c_bond_a(jind), conn_info%c_bond_b(jind))
432 2866 : first = first_list(map_atom_mol(min_index))
433 2866 : bond_list(ibond)%a = conn_info%c_bond_a(jind) - first + 1
434 2866 : bond_list(ibond)%b = conn_info%c_bond_b(jind) - first + 1
435 : ! Set by default id_type to charmm and modify when handling the forcefield
436 2866 : bond_list(ibond)%id_type = do_ff_charmm
437 2866 : IF ((topology%conn_type == do_conn_g96) .OR. (topology%conn_type == do_conn_g87)) THEN
438 0 : bond_list(ibond)%itype = conn_info%c_bond_type(jind)
439 : END IF
440 : !point this to the right bond_kind_type if using force field
441 2866 : NULLIFY (bond_list(ibond)%bond_kind)
442 152343 : IF (iw > 0) THEN
443 2 : WRITE (iw, '(7X,A,I3,1X,A,I5,I5,1X,A,I5,I5)') "molecule_kind", &
444 2 : i, " inter bond", &
445 2 : conn_info%c_bond_a(jind), &
446 2 : conn_info%c_bond_b(jind), &
447 2 : "offset number at", &
448 2 : conn_info%c_bond_a(jind) - first + 1, &
449 4 : conn_info%c_bond_b(jind) - first + 1
450 : END IF
451 : END DO
452 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
453 161385 : nbond=SIZE(bond_list), bond_list=bond_list)
454 : END DO
455 11908 : IF ((nval_tot1 /= nval_tot2) .AND. (output_unit > 0)) THEN
456 0 : WRITE (output_unit, '(/)')
457 0 : WRITE (output_unit, '(T5,A)') "ERROR| Mismatching found between the total number of atoms"
458 0 : WRITE (output_unit, '(T5,A)') "ERROR| and the number of atoms computed multiplying the Nr."
459 0 : WRITE (output_unit, '(T5,A)') "ERROR| of molecules by the number of atoms building that"
460 0 : WRITE (output_unit, '(T5,A)') "ERROR| kind of molecule."
461 0 : WRITE (output_unit, '(T5,A)') "ERROR| This happens when the connectivity is wrongly built"
462 0 : WRITE (output_unit, '(T5,A)') "ERROR| One example could be two same kind of molecules have"
463 0 : WRITE (output_unit, '(T5,A)') "ERROR| a different number of atoms. Check the connectivity!"
464 : END IF
465 11908 : CPASSERT(nval_tot1 == nval_tot2)
466 11908 : DEALLOCATE (map_var_mol)
467 11908 : DEALLOCATE (map_cvar_mol)
468 11908 : DEALLOCATE (map_vars)
469 11908 : DEALLOCATE (map_cvars)
470 11908 : DEALLOCATE (bnd_type)
471 11908 : DEALLOCATE (bnd_ctype)
472 11908 : CALL timestop(handle2)
473 : !-----------------------------------------------------------------------------
474 : !-----------------------------------------------------------------------------
475 : ! 11. Set the molecule_kind%[nbend,bend_list] via set_molecule_kind
476 : !-----------------------------------------------------------------------------
477 : ! Allocate c_var_a, c_var_b, c_var_c, c_var_type
478 11908 : CALL timeset(routineN//"_11_pre", handle2)
479 11908 : idim = 0
480 11908 : ALLOCATE (c_var_a(idim))
481 11908 : ALLOCATE (c_var_b(idim))
482 11908 : ALLOCATE (c_var_c(idim))
483 11908 : found = ASSOCIATED(conn_info%theta_type)
484 11908 : IF (found) THEN
485 14 : ALLOCATE (c_var_type(idim))
486 : END IF
487 11908 : IF (ASSOCIATED(conn_info%c_bond_a) .AND. ASSOCIATED(conn_info%theta_a)) THEN
488 233544 : DO j = 1, SIZE(conn_info%theta_a)
489 224053 : j1 = map_atom_mol(conn_info%theta_a(j))
490 224053 : j2 = map_atom_mol(conn_info%theta_b(j))
491 224053 : j3 = map_atom_mol(conn_info%theta_c(j))
492 233544 : IF (j1 /= j2 .OR. j2 /= j3) THEN
493 11392 : idim = idim + 1
494 : END IF
495 : END DO
496 9491 : CALL reallocate(c_var_a, 1, idim)
497 9491 : CALL reallocate(c_var_b, 1, idim)
498 9491 : CALL reallocate(c_var_c, 1, idim)
499 9491 : IF (found) THEN
500 0 : CALL reallocate(c_var_type, 1, idim)
501 : END IF
502 9491 : idim = 0
503 233544 : DO j = 1, SIZE(conn_info%theta_a)
504 224053 : j1 = map_atom_mol(conn_info%theta_a(j))
505 224053 : j2 = map_atom_mol(conn_info%theta_b(j))
506 224053 : j3 = map_atom_mol(conn_info%theta_c(j))
507 233544 : IF (j1 /= j2 .OR. j2 /= j3) THEN
508 11392 : idim = idim + 1
509 11392 : c_var_a(idim) = conn_info%theta_a(j)
510 11392 : c_var_b(idim) = conn_info%theta_b(j)
511 11392 : c_var_c(idim) = conn_info%theta_c(j)
512 11392 : IF (found) THEN
513 0 : c_var_type(idim) = conn_info%theta_type(j)
514 : END IF
515 : END IF
516 : END DO
517 : END IF
518 11908 : CALL timestop(handle2)
519 11908 : CALL timeset(routineN//"_11", handle2)
520 : ! map bends on molecules
521 11908 : nvar1 = 0
522 11908 : nvar2 = 0
523 : NULLIFY (map_vars, map_cvars, bnd_type, bnd_ctype)
524 11908 : IF (ASSOCIATED(conn_info%theta_a)) nvar1 = SIZE(conn_info%theta_a)
525 11908 : IF (ASSOCIATED(c_var_a)) nvar2 = SIZE(c_var_a)
526 11908 : nval_tot1 = nvar1
527 11908 : nval_tot2 = 0
528 26255 : ALLOCATE (map_var_mol(nvar1))
529 23970 : ALLOCATE (map_cvar_mol(nvar2))
530 285193 : map_var_mol = -1
531 23300 : map_cvar_mol = -1
532 285193 : DO i = 1, nvar1
533 273285 : j1 = map_atom_mol(conn_info%theta_a(i))
534 273285 : j2 = map_atom_mol(conn_info%theta_b(i))
535 273285 : j3 = map_atom_mol(conn_info%theta_c(i))
536 285193 : IF (j1 == j2 .AND. j2 == j3) THEN
537 261893 : IF (j1 > 0) map_var_mol(i) = map_atom_type(conn_info%theta_a(i))
538 : END IF
539 : END DO
540 23300 : DO i = 1, nvar2
541 11392 : min_index = MIN(c_var_a(i), c_var_b(i), c_var_c(i))
542 11392 : j1 = map_atom_mol(min_index)
543 23300 : IF (j1 > 0) map_cvar_mol(i) = map_atom_type(min_index)
544 : END DO
545 11908 : CALL find_bnd_typ(topology%nmol_type, map_vars, map_var_mol, bnd_type, nvar1)
546 11908 : CALL find_bnd_typ(topology%nmol_type, map_cvars, map_cvar_mol, bnd_ctype, nvar2)
547 161385 : DO i = 1, topology%nmol_type
548 149477 : intra_bends = 0
549 149477 : inter_bends = 0
550 209271 : IF (ALL(bnd_type(:, i) > 0)) THEN
551 29897 : intra_bends = bnd_type(2, i) - bnd_type(1, i) + 1
552 : END IF
553 155145 : IF (ALL(bnd_ctype(:, i) > 0)) THEN
554 2834 : inter_bends = bnd_ctype(2, i) - bnd_ctype(1, i) + 1
555 : END IF
556 149477 : ibend = intra_bends + inter_bends
557 149477 : IF (iw > 0) THEN
558 435 : WRITE (iw, *) " Total number of angles for molecule type ", i, " :", ibend
559 435 : WRITE (iw, *) " intra (angles inside molecules) :: ", intra_bends
560 435 : WRITE (iw, *) " inter (angles between molecules) :: ", inter_bends
561 : END IF
562 149477 : molecule_kind => molecule_kind_set(i)
563 149477 : nval_tot2 = nval_tot2 + ibend*SIZE(molecule_kind%molecule_list)
564 471355 : ALLOCATE (bend_list(ibend))
565 149477 : ibend = 0
566 400167 : DO j = bnd_type(1, i), bnd_type(2, i)
567 250690 : IF (j == 0) CYCLE
568 131110 : ibend = ibend + 1
569 131110 : jind = map_vars(j)
570 131110 : first = first_list(map_atom_mol(conn_info%theta_a(jind)))
571 131110 : bend_list(ibend)%a = conn_info%theta_a(jind) - first + 1
572 131110 : bend_list(ibend)%b = conn_info%theta_b(jind) - first + 1
573 131110 : bend_list(ibend)%c = conn_info%theta_c(jind) - first + 1
574 : ! Set by default id_type to charmm and modify when handling the forcefield
575 131110 : bend_list(ibend)%id_type = do_ff_charmm
576 131110 : IF ((topology%conn_type == do_conn_g96) .OR. (topology%conn_type == do_conn_g87)) THEN
577 158 : bend_list(ibend)%itype = conn_info%theta_type(jind)
578 : END IF
579 : !point this to the right bend_kind_type if using force field
580 131110 : NULLIFY (bend_list(ibend)%bend_kind)
581 280587 : IF (iw > 0) THEN
582 : WRITE (iw, '(7X,A,I3,1X,A,I5,I5,I5,1X,A,I5,I5,I5)') &
583 229 : "molecule_kind", ikind, "intra bend", &
584 229 : conn_info%theta_a(jind), &
585 229 : conn_info%theta_b(jind), &
586 229 : conn_info%theta_c(jind), &
587 229 : "offset number at", &
588 229 : conn_info%theta_a(jind) - first + 1, &
589 229 : conn_info%theta_b(jind) - first + 1, &
590 458 : conn_info%theta_c(jind) - first + 1
591 : END IF
592 : END DO
593 307512 : DO j = bnd_ctype(1, i), bnd_ctype(2, i)
594 158035 : IF (j == 0) CYCLE
595 11392 : ibend = ibend + 1
596 11392 : jind = map_cvars(j)
597 11392 : min_index = MIN(c_var_a(jind), c_var_b(jind), c_var_c(jind))
598 11392 : first = first_list(map_atom_mol(min_index))
599 11392 : bend_list(ibend)%a = c_var_a(jind) - first + 1
600 11392 : bend_list(ibend)%b = c_var_b(jind) - first + 1
601 11392 : bend_list(ibend)%c = c_var_c(jind) - first + 1
602 : ! Set by default id_type to charmm and modify when handling the forcefield
603 11392 : bend_list(ibend)%id_type = do_ff_charmm
604 11392 : IF ((topology%conn_type == do_conn_g96) .OR. (topology%conn_type == do_conn_g87)) THEN
605 0 : bend_list(ibend)%itype = c_var_type(jind)
606 : END IF
607 : !point this to the right bend_kind_type if using force field
608 11392 : NULLIFY (bend_list(ibend)%bend_kind)
609 160869 : IF (iw > 0) THEN
610 : WRITE (iw, '(7X,A,I3,1X,A,I5,I5,I5,1X,A,I5,I5,I5)') &
611 8 : "molecule_kind", ikind, "inter bend", &
612 8 : c_var_a(jind), &
613 8 : c_var_b(jind), &
614 8 : c_var_c(jind), &
615 8 : "offset number at", &
616 8 : c_var_a(jind) - first + 1, &
617 8 : c_var_b(jind) - first + 1, &
618 16 : c_var_c(jind) - first + 1
619 : END IF
620 : END DO
621 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
622 161385 : nbend=SIZE(bend_list), bend_list=bend_list)
623 : END DO
624 11908 : CPASSERT(nval_tot1 == nval_tot2)
625 11908 : DEALLOCATE (map_var_mol)
626 11908 : DEALLOCATE (map_cvar_mol)
627 11908 : DEALLOCATE (map_vars)
628 11908 : DEALLOCATE (map_cvars)
629 11908 : DEALLOCATE (bnd_type)
630 11908 : DEALLOCATE (bnd_ctype)
631 11908 : DEALLOCATE (c_var_a)
632 11908 : DEALLOCATE (c_var_b)
633 11908 : DEALLOCATE (c_var_c)
634 11908 : IF (found) THEN
635 14 : DEALLOCATE (c_var_type)
636 : END IF
637 11908 : CALL timestop(handle2)
638 : !-----------------------------------------------------------------------------
639 : !-----------------------------------------------------------------------------
640 : ! 12. Set the molecule_kind%[nub,ub_list] via set_molecule_kind
641 : !-----------------------------------------------------------------------------
642 11908 : CALL timeset(routineN//"_12_pre", handle2)
643 11908 : idim = 0
644 11908 : ALLOCATE (c_var_a(idim))
645 11908 : ALLOCATE (c_var_b(idim))
646 11908 : ALLOCATE (c_var_c(idim))
647 11908 : IF (ASSOCIATED(conn_info%c_bond_a) .AND. ASSOCIATED(conn_info%ub_a)) THEN
648 233544 : DO j = 1, SIZE(conn_info%ub_a)
649 224053 : j1 = map_atom_mol(conn_info%ub_a(j))
650 224053 : j2 = map_atom_mol(conn_info%ub_b(j))
651 224053 : j3 = map_atom_mol(conn_info%ub_c(j))
652 233544 : IF (j1 /= j2 .OR. j2 /= j3) THEN
653 11392 : idim = idim + 1
654 : END IF
655 : END DO
656 9491 : CALL reallocate(c_var_a, 1, idim)
657 9491 : CALL reallocate(c_var_b, 1, idim)
658 9491 : CALL reallocate(c_var_c, 1, idim)
659 9491 : idim = 0
660 233544 : DO j = 1, SIZE(conn_info%ub_a)
661 224053 : j1 = map_atom_mol(conn_info%ub_a(j))
662 224053 : j2 = map_atom_mol(conn_info%ub_b(j))
663 224053 : j3 = map_atom_mol(conn_info%ub_c(j))
664 233544 : IF (j1 /= j2 .OR. j2 /= j3) THEN
665 11392 : idim = idim + 1
666 11392 : c_var_a(idim) = conn_info%ub_a(j)
667 11392 : c_var_b(idim) = conn_info%ub_b(j)
668 11392 : c_var_c(idim) = conn_info%ub_c(j)
669 : END IF
670 : END DO
671 : END IF
672 11908 : CALL timestop(handle2)
673 11908 : CALL timeset(routineN//"_12", handle2)
674 : ! map UBs on molecules
675 11908 : nvar1 = 0
676 11908 : nvar2 = 0
677 : NULLIFY (map_vars, map_cvars, bnd_type, bnd_ctype)
678 11908 : IF (ASSOCIATED(conn_info%ub_a)) nvar1 = SIZE(conn_info%ub_a)
679 11908 : IF (ASSOCIATED(c_var_a)) nvar2 = SIZE(c_var_a)
680 11908 : nval_tot1 = nvar1
681 11908 : nval_tot2 = 0
682 26241 : ALLOCATE (map_var_mol(nvar1))
683 23970 : ALLOCATE (map_cvar_mol(nvar2))
684 285035 : map_var_mol = -1
685 23300 : map_cvar_mol = -1
686 285035 : DO i = 1, nvar1
687 273127 : j1 = map_atom_mol(conn_info%ub_a(i))
688 273127 : j2 = map_atom_mol(conn_info%ub_b(i))
689 273127 : j3 = map_atom_mol(conn_info%ub_c(i))
690 285035 : IF (j1 == j2 .AND. j2 == j3) THEN
691 261735 : IF (j1 > 0) map_var_mol(i) = map_atom_type(conn_info%ub_a(i))
692 : END IF
693 : END DO
694 23300 : DO i = 1, nvar2
695 11392 : min_index = MIN(c_var_a(i), c_var_b(i), c_var_c(i))
696 11392 : j1 = map_atom_mol(min_index)
697 23300 : IF (j1 > 0) map_cvar_mol(i) = map_atom_type(min_index)
698 : END DO
699 11908 : CALL find_bnd_typ(topology%nmol_type, map_vars, map_var_mol, bnd_type, nvar1)
700 11908 : CALL find_bnd_typ(topology%nmol_type, map_cvars, map_cvar_mol, bnd_ctype, nvar2)
701 161385 : DO i = 1, topology%nmol_type
702 149477 : intra_ubs = 0
703 149477 : inter_ubs = 0
704 209243 : IF (ALL(bnd_type(:, i) > 0)) THEN
705 29883 : intra_ubs = bnd_type(2, i) - bnd_type(1, i) + 1
706 : END IF
707 155145 : IF (ALL(bnd_ctype(:, i) > 0)) THEN
708 2834 : inter_ubs = bnd_ctype(2, i) - bnd_ctype(1, i) + 1
709 : END IF
710 149477 : iub = intra_ubs + inter_ubs
711 149477 : IF (iw > 0) THEN
712 435 : WRITE (iw, *) " Total number of Urey-Bradley for molecule type ", i, " :", iub
713 435 : WRITE (iw, *) " intra (UB inside molecules) :: ", intra_ubs
714 435 : WRITE (iw, *) " inter (UB between molecules) :: ", inter_ubs
715 : END IF
716 149477 : molecule_kind => molecule_kind_set(i)
717 149477 : nval_tot2 = nval_tot2 + iub*SIZE(molecule_kind%molecule_list)
718 471183 : ALLOCATE (ub_list(iub))
719 149477 : iub = 0
720 400023 : DO j = bnd_type(1, i), bnd_type(2, i)
721 250546 : IF (j == 0) CYCLE
722 130952 : iub = iub + 1
723 130952 : jind = map_vars(j)
724 130952 : first = first_list(map_atom_mol(conn_info%ub_a(jind)))
725 130952 : ub_list(iub)%a = conn_info%ub_a(jind) - first + 1
726 130952 : ub_list(iub)%b = conn_info%ub_b(jind) - first + 1
727 130952 : ub_list(iub)%c = conn_info%ub_c(jind) - first + 1
728 130952 : ub_list(iub)%id_type = do_ff_charmm
729 : !point this to the right ub_kind_type if using force field
730 130952 : NULLIFY (ub_list(iub)%ub_kind)
731 280429 : IF (iw > 0) THEN
732 : WRITE (iw, '(7X,A,I3,1X,A,I5,I5,I5,1X,A,I5,I5,I5)') &
733 229 : "molecule_kind", i, "intra UB", &
734 229 : conn_info%ub_a(jind), &
735 229 : conn_info%ub_b(jind), &
736 229 : conn_info%ub_c(jind), &
737 229 : "offset number at", &
738 229 : conn_info%ub_a(jind) - first + 1, &
739 229 : conn_info%ub_b(jind) - first + 1, &
740 458 : conn_info%ub_c(jind) - first + 1
741 : END IF
742 : END DO
743 307512 : DO j = bnd_ctype(1, i), bnd_ctype(2, i)
744 158035 : IF (j == 0) CYCLE
745 11392 : iub = iub + 1
746 11392 : jind = map_cvars(j)
747 11392 : min_index = MIN(c_var_a(jind), c_var_b(jind), c_var_c(jind))
748 11392 : first = first_list(map_atom_mol(min_index))
749 11392 : ub_list(iub)%a = c_var_a(jind) - first + 1
750 11392 : ub_list(iub)%b = c_var_b(jind) - first + 1
751 11392 : ub_list(iub)%c = c_var_c(jind) - first + 1
752 11392 : ub_list(iub)%id_type = do_ff_charmm
753 : !point this to the right ub_kind_type if using force field
754 11392 : NULLIFY (ub_list(iub)%ub_kind)
755 160869 : IF (iw > 0) THEN
756 : WRITE (iw, '(7X,A,I3,1X,A,I5,I5,I5,1X,A,I5,I5,I5)') &
757 8 : "molecule_kind", i, "inter UB", &
758 8 : c_var_a(jind), &
759 8 : c_var_b(jind), &
760 8 : c_var_c(jind), &
761 8 : "offset number at", &
762 8 : c_var_a(jind) - first + 1, &
763 8 : c_var_b(jind) - first + 1, &
764 16 : c_var_c(jind) - first + 1
765 : END IF
766 : END DO
767 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
768 161385 : nub=SIZE(ub_list), ub_list=ub_list)
769 : END DO
770 11908 : CPASSERT(nval_tot1 == nval_tot2)
771 11908 : DEALLOCATE (map_var_mol)
772 11908 : DEALLOCATE (map_cvar_mol)
773 11908 : DEALLOCATE (map_vars)
774 11908 : DEALLOCATE (map_cvars)
775 11908 : DEALLOCATE (bnd_type)
776 11908 : DEALLOCATE (bnd_ctype)
777 11908 : DEALLOCATE (c_var_a)
778 11908 : DEALLOCATE (c_var_b)
779 11908 : DEALLOCATE (c_var_c)
780 11908 : CALL timestop(handle2)
781 : !-----------------------------------------------------------------------------
782 : !-----------------------------------------------------------------------------
783 : ! 13. Set the molecule_kind%[ntorsion,torsion_list] via set_molecule_kind
784 : !-----------------------------------------------------------------------------
785 : ! Allocate c_var_a, c_var_b, c_var_c, c_var_d, c_var_type
786 11908 : CALL timeset(routineN//"_13_pre", handle2)
787 11908 : idim = 0
788 11908 : ALLOCATE (c_var_a(idim))
789 11908 : ALLOCATE (c_var_b(idim))
790 11908 : ALLOCATE (c_var_c(idim))
791 11908 : ALLOCATE (c_var_d(idim))
792 11908 : found = ASSOCIATED(conn_info%phi_type)
793 11908 : IF (found) THEN
794 14 : ALLOCATE (c_var_type(idim))
795 : END IF
796 11908 : IF (ASSOCIATED(conn_info%c_bond_a) .AND. ASSOCIATED(conn_info%phi_a)) THEN
797 146292 : DO j = 1, SIZE(conn_info%phi_a)
798 136801 : j1 = map_atom_mol(conn_info%phi_a(j))
799 136801 : j2 = map_atom_mol(conn_info%phi_b(j))
800 136801 : j3 = map_atom_mol(conn_info%phi_c(j))
801 136801 : j4 = map_atom_mol(conn_info%phi_d(j))
802 146292 : IF (j1 /= j2 .OR. j2 /= j3 .OR. j3 /= j4) THEN
803 31630 : idim = idim + 1
804 : END IF
805 : END DO
806 9491 : CALL reallocate(c_var_a, 1, idim)
807 9491 : CALL reallocate(c_var_b, 1, idim)
808 9491 : CALL reallocate(c_var_c, 1, idim)
809 9491 : CALL reallocate(c_var_d, 1, idim)
810 9491 : IF (found) THEN
811 0 : CALL reallocate(c_var_type, 1, idim)
812 : END IF
813 9491 : idim = 0
814 146292 : DO j = 1, SIZE(conn_info%phi_a)
815 136801 : j1 = map_atom_mol(conn_info%phi_a(j))
816 136801 : j2 = map_atom_mol(conn_info%phi_b(j))
817 136801 : j3 = map_atom_mol(conn_info%phi_c(j))
818 136801 : j4 = map_atom_mol(conn_info%phi_d(j))
819 146292 : IF (j1 /= j2 .OR. j2 /= j3 .OR. j3 /= j4) THEN
820 31630 : idim = idim + 1
821 31630 : c_var_a(idim) = conn_info%phi_a(j)
822 31630 : c_var_b(idim) = conn_info%phi_b(j)
823 31630 : c_var_c(idim) = conn_info%phi_c(j)
824 31630 : c_var_d(idim) = conn_info%phi_d(j)
825 31630 : IF (found) THEN
826 0 : c_var_type(idim) = conn_info%phi_type(j)
827 : END IF
828 : END IF
829 : END DO
830 : END IF
831 11908 : CALL timestop(handle2)
832 11908 : CALL timeset(routineN//"_13", handle2)
833 : ! map torsions on molecules
834 11908 : nvar1 = 0
835 11908 : nvar2 = 0
836 : NULLIFY (map_vars, map_cvars, bnd_type, bnd_ctype)
837 11908 : IF (ASSOCIATED(conn_info%phi_a)) nvar1 = SIZE(conn_info%phi_a)
838 11908 : IF (ASSOCIATED(c_var_a)) nvar2 = SIZE(c_var_a)
839 11908 : nval_tot1 = nvar1
840 11908 : nval_tot2 = 0
841 24476 : ALLOCATE (map_var_mol(nvar1))
842 23968 : ALLOCATE (map_cvar_mol(nvar2))
843 179787 : map_var_mol = -1
844 43538 : map_cvar_mol = -1
845 179787 : DO i = 1, nvar1
846 167879 : j1 = map_atom_mol(conn_info%phi_a(i))
847 167879 : j2 = map_atom_mol(conn_info%phi_b(i))
848 167879 : j3 = map_atom_mol(conn_info%phi_c(i))
849 167879 : j4 = map_atom_mol(conn_info%phi_d(i))
850 179787 : IF (j1 == j2 .AND. j2 == j3 .AND. j3 == j4) THEN
851 136249 : IF (j1 > 0) map_var_mol(i) = map_atom_type(conn_info%phi_a(i))
852 : END IF
853 : END DO
854 43538 : DO i = 1, nvar2
855 31630 : min_index = MIN(c_var_a(i), c_var_b(i), c_var_c(i), c_var_d(i))
856 31630 : j1 = map_atom_mol(min_index)
857 43538 : IF (j1 > 0) map_cvar_mol(i) = map_atom_type(min_index)
858 : END DO
859 11908 : CALL find_bnd_typ(topology%nmol_type, map_vars, map_var_mol, bnd_type, nvar1)
860 11908 : CALL find_bnd_typ(topology%nmol_type, map_cvars, map_cvar_mol, bnd_ctype, nvar2)
861 161385 : DO i = 1, topology%nmol_type
862 149477 : intra_torsions = 0
863 149477 : inter_torsions = 0
864 160757 : IF (ALL(bnd_type(:, i) > 0)) THEN
865 5640 : intra_torsions = bnd_type(2, i) - bnd_type(1, i) + 1
866 : END IF
867 155141 : IF (ALL(bnd_ctype(:, i) > 0)) THEN
868 2832 : inter_torsions = bnd_ctype(2, i) - bnd_ctype(1, i) + 1
869 : END IF
870 149477 : itorsion = intra_torsions + inter_torsions
871 149477 : IF (iw > 0) THEN
872 435 : WRITE (iw, *) " Total number of torsions for molecule type ", i, " :", itorsion
873 435 : WRITE (iw, *) " intra (torsions inside molecules) :: ", intra_torsions
874 435 : WRITE (iw, *) " inter (torsions between molecules) :: ", inter_torsions
875 : END IF
876 149477 : molecule_kind => molecule_kind_set(i)
877 149477 : nval_tot2 = nval_tot2 + itorsion*SIZE(molecule_kind%molecule_list)
878 463625 : ALLOCATE (torsion_list(itorsion))
879 149477 : itorsion = 0
880 420715 : DO j = bnd_type(1, i), bnd_type(2, i)
881 271238 : IF (j == 0) CYCLE
882 127401 : itorsion = itorsion + 1
883 127401 : jind = map_vars(j)
884 127401 : first = first_list(map_atom_mol(conn_info%phi_a(jind)))
885 127401 : torsion_list(itorsion)%a = conn_info%phi_a(jind) - first + 1
886 127401 : torsion_list(itorsion)%b = conn_info%phi_b(jind) - first + 1
887 127401 : torsion_list(itorsion)%c = conn_info%phi_c(jind) - first + 1
888 127401 : torsion_list(itorsion)%d = conn_info%phi_d(jind) - first + 1
889 : ! Set by default id_type to charmm and modify when handling the forcefield
890 127401 : torsion_list(itorsion)%id_type = do_ff_charmm
891 127401 : IF ((topology%conn_type == do_conn_g96) .OR. (topology%conn_type == do_conn_g87)) THEN
892 312 : torsion_list(itorsion)%itype = conn_info%phi_type(jind)
893 : END IF
894 : !point this to the right torsion_kind_type if using force field
895 127401 : NULLIFY (torsion_list(itorsion)%torsion_kind)
896 276878 : IF (iw > 0) THEN
897 : WRITE (iw, '(7X,A,I3,1X,A,I4,I4,I4,I4,1X,A,I4,I4,I4,I4)') &
898 366 : "molecule_kind", i, "intra TOR", &
899 366 : conn_info%phi_a(jind), &
900 366 : conn_info%phi_b(jind), &
901 366 : conn_info%phi_c(jind), &
902 366 : conn_info%phi_d(jind), &
903 366 : "offset number at", &
904 366 : conn_info%phi_a(jind) - first + 1, &
905 366 : conn_info%phi_b(jind) - first + 1, &
906 366 : conn_info%phi_c(jind) - first + 1, &
907 732 : conn_info%phi_d(jind) - first + 1
908 : END IF
909 : END DO
910 327752 : DO j = bnd_ctype(1, i), bnd_ctype(2, i)
911 178275 : IF (j == 0) CYCLE
912 31630 : itorsion = itorsion + 1
913 31630 : jind = map_cvars(j)
914 31630 : min_index = MIN(c_var_a(jind), c_var_b(jind), c_var_c(jind), c_var_d(jind))
915 31630 : first = first_list(map_atom_mol(min_index))
916 31630 : torsion_list(itorsion)%a = c_var_a(jind) - first + 1
917 31630 : torsion_list(itorsion)%b = c_var_b(jind) - first + 1
918 31630 : torsion_list(itorsion)%c = c_var_c(jind) - first + 1
919 31630 : torsion_list(itorsion)%d = c_var_d(jind) - first + 1
920 : ! Set by default id_type to charmm and modify when handling the forcefield
921 31630 : torsion_list(itorsion)%id_type = do_ff_charmm
922 31630 : IF ((topology%conn_type == do_conn_g96) .OR. (topology%conn_type == do_conn_g87)) THEN
923 0 : torsion_list(itorsion)%itype = c_var_type(jind)
924 : END IF
925 : !point this to the right torsion_kind_type if using force field
926 31630 : NULLIFY (torsion_list(itorsion)%torsion_kind)
927 181107 : IF (iw > 0) THEN
928 : WRITE (iw, '(7X,A,I3,1X,A,I4,I4,I4,I4,1X,A,I4,I4,I4,I4)') &
929 34 : "molecule_kind", i, "inter TOR", &
930 34 : c_var_a(jind), &
931 34 : c_var_b(jind), &
932 34 : c_var_c(jind), &
933 34 : c_var_d(jind), &
934 34 : "offset number at", &
935 34 : c_var_a(jind) - first + 1, &
936 34 : c_var_b(jind) - first + 1, &
937 34 : c_var_c(jind) - first + 1, &
938 68 : c_var_d(jind) - first + 1
939 : END IF
940 : END DO
941 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
942 161385 : ntorsion=SIZE(torsion_list), torsion_list=torsion_list)
943 : END DO
944 11908 : CPASSERT(nval_tot1 == nval_tot2)
945 11908 : DEALLOCATE (map_var_mol)
946 11908 : DEALLOCATE (map_cvar_mol)
947 11908 : DEALLOCATE (map_vars)
948 11908 : DEALLOCATE (map_cvars)
949 11908 : DEALLOCATE (bnd_type)
950 11908 : DEALLOCATE (bnd_ctype)
951 11908 : DEALLOCATE (c_var_a)
952 11908 : DEALLOCATE (c_var_b)
953 11908 : DEALLOCATE (c_var_c)
954 11908 : DEALLOCATE (c_var_d)
955 11908 : IF (found) THEN
956 14 : DEALLOCATE (c_var_type)
957 : END IF
958 11908 : CALL timestop(handle2)
959 : !-----------------------------------------------------------------------------
960 : !-----------------------------------------------------------------------------
961 : ! 14. Set the molecule_kind%[nimpr,impr_list] via set_molecule_kind
962 : ! Also set the molecule_kind%[nopbend,opbend_list]
963 : !-----------------------------------------------------------------------------
964 : ! Allocate c_var_a, c_var_b, c_var_c, c_var_d, c_var_type
965 11908 : CALL timeset(routineN//"_14_pre", handle2)
966 11908 : idim = 0
967 11908 : ALLOCATE (c_var_a(idim))
968 11908 : ALLOCATE (c_var_b(idim))
969 11908 : ALLOCATE (c_var_c(idim))
970 11908 : ALLOCATE (c_var_d(idim))
971 11908 : found = ASSOCIATED(conn_info%impr_type)
972 11908 : IF (found) THEN
973 14 : ALLOCATE (c_var_type(idim))
974 : END IF
975 11908 : IF (ASSOCIATED(conn_info%c_bond_a) .AND. ASSOCIATED(conn_info%impr_a)) THEN
976 13909 : DO j = 1, SIZE(conn_info%impr_a)
977 4418 : j1 = map_atom_mol(conn_info%impr_a(j))
978 4418 : j2 = map_atom_mol(conn_info%impr_b(j))
979 4418 : j3 = map_atom_mol(conn_info%impr_c(j))
980 4418 : j4 = map_atom_mol(conn_info%impr_d(j))
981 13909 : IF (j1 /= j2 .OR. j2 /= j3 .OR. j3 /= j4) THEN
982 3124 : idim = idim + 1
983 : END IF
984 : END DO
985 9491 : CALL reallocate(c_var_a, 1, idim)
986 9491 : CALL reallocate(c_var_b, 1, idim)
987 9491 : CALL reallocate(c_var_c, 1, idim)
988 9491 : CALL reallocate(c_var_d, 1, idim)
989 9491 : IF (found) THEN
990 0 : CALL reallocate(c_var_type, 1, idim)
991 : END IF
992 9491 : idim = 0
993 13909 : DO j = 1, SIZE(conn_info%impr_a)
994 4418 : j1 = map_atom_mol(conn_info%impr_a(j))
995 4418 : j2 = map_atom_mol(conn_info%impr_b(j))
996 4418 : j3 = map_atom_mol(conn_info%impr_c(j))
997 4418 : j4 = map_atom_mol(conn_info%impr_d(j))
998 13909 : IF (j1 /= j2 .OR. j2 /= j3 .OR. j3 /= j4) THEN
999 3124 : idim = idim + 1
1000 3124 : c_var_a(idim) = conn_info%impr_a(j)
1001 3124 : c_var_b(idim) = conn_info%impr_b(j)
1002 3124 : c_var_c(idim) = conn_info%impr_c(j)
1003 3124 : c_var_d(idim) = conn_info%impr_d(j)
1004 3124 : IF (found) THEN
1005 0 : c_var_type(idim) = conn_info%impr_type(j)
1006 : END IF
1007 : END IF
1008 : END DO
1009 : END IF
1010 11908 : CALL timestop(handle2)
1011 11908 : CALL timeset(routineN//"_14", handle2)
1012 : ! map imprs on molecules
1013 11908 : nvar1 = 0
1014 11908 : nvar2 = 0
1015 : NULLIFY (map_vars, map_cvars, bnd_type, bnd_ctype)
1016 11908 : IF (ASSOCIATED(conn_info%impr_a)) nvar1 = SIZE(conn_info%impr_a)
1017 11908 : IF (ASSOCIATED(c_var_a)) nvar2 = SIZE(c_var_a)
1018 11908 : nval_tot1 = nvar1
1019 11908 : nval_tot2 = 0
1020 23964 : ALLOCATE (map_var_mol(nvar1))
1021 23856 : ALLOCATE (map_cvar_mol(nvar2))
1022 17322 : map_var_mol = -1
1023 15032 : map_cvar_mol = -1
1024 17322 : DO i = 1, nvar1
1025 5414 : j1 = map_atom_mol(conn_info%impr_a(i))
1026 5414 : j2 = map_atom_mol(conn_info%impr_b(i))
1027 5414 : j3 = map_atom_mol(conn_info%impr_c(i))
1028 5414 : j4 = map_atom_mol(conn_info%impr_d(i))
1029 17322 : IF (j1 == j2 .AND. j2 == j3 .AND. j3 == j4) THEN
1030 2290 : IF (j1 > 0) map_var_mol(i) = map_atom_type(conn_info%impr_a(i))
1031 : END IF
1032 : END DO
1033 15032 : DO i = 1, nvar2
1034 3124 : min_index = MIN(c_var_a(i), c_var_b(i), c_var_c(i), c_var_d(i))
1035 3124 : j1 = map_atom_mol(min_index)
1036 15032 : IF (j1 > 0) map_cvar_mol(i) = map_atom_type(min_index)
1037 : END DO
1038 11908 : CALL find_bnd_typ(topology%nmol_type, map_vars, map_var_mol, bnd_type, nvar1)
1039 11908 : CALL find_bnd_typ(topology%nmol_type, map_cvars, map_cvar_mol, bnd_ctype, nvar2)
1040 161385 : DO i = 1, topology%nmol_type
1041 149477 : intra_imprs = 0
1042 149477 : inter_imprs = 0
1043 150573 : IF (ALL(bnd_type(:, i) > 0)) THEN
1044 548 : intra_imprs = bnd_type(2, i) - bnd_type(1, i) + 1
1045 : END IF
1046 152601 : IF (ALL(bnd_ctype(:, i) > 0)) THEN
1047 1562 : inter_imprs = bnd_ctype(2, i) - bnd_ctype(1, i) + 1
1048 : END IF
1049 149477 : iimpr = intra_imprs + inter_imprs
1050 149477 : IF (iw > 0) THEN
1051 435 : WRITE (iw, *) " Total number of imprs for molecule type ", i, " :", iimpr
1052 435 : WRITE (iw, *) " intra (imprs inside molecules) :: ", intra_imprs
1053 435 : WRITE (iw, *) " inter (imprs between molecules) :: ", inter_imprs
1054 435 : WRITE (iw, *) " Total number of opbends for molecule type ", i, " :", iimpr
1055 435 : WRITE (iw, *) " intra (opbends inside molecules) :: ", intra_imprs
1056 435 : WRITE (iw, *) " inter (opbends between molecules) :: ", inter_imprs
1057 : END IF
1058 149477 : molecule_kind => molecule_kind_set(i)
1059 149477 : nval_tot2 = nval_tot2 + iimpr*SIZE(molecule_kind%molecule_list)
1060 306034 : ALLOCATE (impr_list(iimpr))
1061 156557 : ALLOCATE (opbend_list(iimpr))
1062 149477 : iimpr = 0
1063 300672 : DO j = bnd_type(1, i), bnd_type(2, i)
1064 151195 : IF (j == 0) CYCLE
1065 2266 : iimpr = iimpr + 1
1066 2266 : jind = map_vars(j)
1067 2266 : first = first_list(map_atom_mol(conn_info%impr_a(jind)))
1068 2266 : impr_list(iimpr)%a = conn_info%impr_a(jind) - first + 1
1069 2266 : impr_list(iimpr)%b = conn_info%impr_b(jind) - first + 1
1070 2266 : impr_list(iimpr)%c = conn_info%impr_c(jind) - first + 1
1071 2266 : impr_list(iimpr)%d = conn_info%impr_d(jind) - first + 1
1072 : ! Atom sequence for improper is A B C D in which A is central atom,
1073 : ! B is deviating atom and C & D are secondairy atoms. Atom sequence for
1074 : ! opbend is B D C A in which A is central atom, B is deviating. Hence
1075 : ! to create an opbend out of an improper, B and D need to be interchanged.
1076 2266 : opbend_list(iimpr)%a = conn_info%impr_b(jind) - first + 1
1077 2266 : opbend_list(iimpr)%b = conn_info%impr_d(jind) - first + 1
1078 2266 : opbend_list(iimpr)%c = conn_info%impr_c(jind) - first + 1
1079 2266 : opbend_list(iimpr)%d = conn_info%impr_a(jind) - first + 1
1080 : ! Set by default id_type of improper to charmm and modify when handling the forcefield
1081 2266 : impr_list(iimpr)%id_type = do_ff_charmm
1082 : ! Set by default id_type of opbend to harmonic and modify when handling the forcefield
1083 2266 : opbend_list(iimpr)%id_type = do_ff_harmonic
1084 2266 : IF ((topology%conn_type == do_conn_g96) .OR. (topology%conn_type == do_conn_g87)) THEN
1085 0 : impr_list(iimpr)%itype = conn_info%impr_type(jind)
1086 : END IF
1087 : !point this to the right impr_kind_type if using force field
1088 2266 : NULLIFY (impr_list(iimpr)%impr_kind)
1089 2266 : NULLIFY (opbend_list(iimpr)%opbend_kind)
1090 151743 : IF (iw > 0) THEN
1091 : WRITE (iw, '(7X,A,I3,1X,A,I4,I4,I4,I4,1X,A,I4,I4,I4,I4)') &
1092 0 : "molecule_kind", i, "intra IMPR", &
1093 0 : conn_info%impr_a(jind), &
1094 0 : conn_info%impr_b(jind), &
1095 0 : conn_info%impr_c(jind), &
1096 0 : conn_info%impr_d(jind), &
1097 0 : "offset number at", &
1098 0 : conn_info%impr_a(jind) - first + 1, &
1099 0 : conn_info%impr_b(jind) - first + 1, &
1100 0 : conn_info%impr_c(jind) - first + 1, &
1101 0 : conn_info%impr_d(jind) - first + 1
1102 : WRITE (iw, '(7X,A,I3,1X,A,I4,I4,I4,I4,1X,A,I4,I4,I4,I4)') &
1103 0 : "molecule_kind", i, "intra OPBEND", &
1104 0 : conn_info%impr_b(jind), &
1105 0 : conn_info%impr_d(jind), &
1106 0 : conn_info%impr_c(jind), &
1107 0 : conn_info%impr_a(jind), &
1108 0 : "offset number at", &
1109 0 : conn_info%impr_b(jind) - first + 1, &
1110 0 : conn_info%impr_d(jind) - first + 1, &
1111 0 : conn_info%impr_c(jind) - first + 1, &
1112 0 : conn_info%impr_a(jind) - first + 1
1113 : END IF
1114 : END DO
1115 300516 : DO j = bnd_ctype(1, i), bnd_ctype(2, i)
1116 151039 : IF (j == 0) CYCLE
1117 3124 : iimpr = iimpr + 1
1118 3124 : jind = map_cvars(j)
1119 3124 : min_index = MIN(c_var_a(jind), c_var_b(jind), c_var_c(jind), c_var_d(jind))
1120 3124 : first = first_list(map_atom_mol(min_index))
1121 3124 : impr_list(iimpr)%a = c_var_a(jind) - first + 1
1122 3124 : impr_list(iimpr)%b = c_var_b(jind) - first + 1
1123 3124 : impr_list(iimpr)%c = c_var_c(jind) - first + 1
1124 3124 : impr_list(iimpr)%d = c_var_d(jind) - first + 1
1125 3124 : opbend_list(iimpr)%a = c_var_b(jind) - first + 1
1126 3124 : opbend_list(iimpr)%b = c_var_d(jind) - first + 1
1127 3124 : opbend_list(iimpr)%c = c_var_c(jind) - first + 1
1128 3124 : opbend_list(iimpr)%d = c_var_a(jind) - first + 1
1129 : ! Set by default id_type of improper to charmm and modify when handling the forcefield
1130 3124 : impr_list(iimpr)%id_type = do_ff_charmm
1131 : ! Set by default id_type of opbend to harmonic and modify when handling the forcefield
1132 3124 : opbend_list(iimpr)%id_type = do_ff_harmonic
1133 3124 : IF ((topology%conn_type == do_conn_g96) .OR. (topology%conn_type == do_conn_g87)) THEN
1134 0 : impr_list(iimpr)%itype = c_var_type(jind)
1135 : END IF
1136 : !point this to the right impr_kind_type and opbend_kind_type if using force field
1137 3124 : NULLIFY (impr_list(iimpr)%impr_kind)
1138 3124 : NULLIFY (opbend_list(iimpr)%opbend_kind)
1139 152601 : IF (iw > 0) THEN
1140 : WRITE (iw, '(7X,A,I3,1X,A,I4,I4,I4,I4,1X,A,I4,I4,I4,I4)') &
1141 0 : "molecule_kind", i, "inter IMPR", &
1142 0 : c_var_a(jind), &
1143 0 : c_var_b(jind), &
1144 0 : c_var_c(jind), &
1145 0 : c_var_d(jind), &
1146 0 : "offset number at", &
1147 0 : c_var_a(jind) - first + 1, &
1148 0 : c_var_b(jind) - first + 1, &
1149 0 : c_var_c(jind) - first + 1, &
1150 0 : c_var_d(jind) - first + 1
1151 : WRITE (iw, '(7X,A,I3,1X,A,I4,I4,I4,I4,1X,A,I4,I4,I4,I4)') &
1152 0 : "molecule_kind", i, "inter OPBEND", &
1153 0 : c_var_b(jind), &
1154 0 : c_var_d(jind), &
1155 0 : c_var_c(jind), &
1156 0 : c_var_a(jind), &
1157 0 : "offset number at", &
1158 0 : c_var_b(jind) - first + 1, &
1159 0 : c_var_d(jind) - first + 1, &
1160 0 : c_var_c(jind) - first + 1, &
1161 0 : c_var_a(jind) - first + 1
1162 : END IF
1163 : END DO
1164 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
1165 149477 : nimpr=SIZE(impr_list), impr_list=impr_list)
1166 : CALL set_molecule_kind(molecule_kind=molecule_kind, &
1167 161385 : nopbend=SIZE(opbend_list), opbend_list=opbend_list)
1168 : END DO
1169 11908 : CPASSERT(nval_tot1 == nval_tot2)
1170 11908 : DEALLOCATE (map_var_mol)
1171 11908 : DEALLOCATE (map_cvar_mol)
1172 11908 : DEALLOCATE (map_vars)
1173 11908 : DEALLOCATE (map_cvars)
1174 11908 : DEALLOCATE (bnd_type)
1175 11908 : DEALLOCATE (bnd_ctype)
1176 11908 : DEALLOCATE (c_var_a)
1177 11908 : DEALLOCATE (c_var_b)
1178 11908 : DEALLOCATE (c_var_c)
1179 11908 : DEALLOCATE (c_var_d)
1180 11908 : IF (found) THEN
1181 14 : DEALLOCATE (c_var_type)
1182 : END IF
1183 11908 : CALL timestop(handle2)
1184 : !-----------------------------------------------------------------------------
1185 : !-----------------------------------------------------------------------------
1186 : ! Finally deallocate some stuff.
1187 : !-----------------------------------------------------------------------------
1188 11908 : DEALLOCATE (first_list)
1189 11908 : DEALLOCATE (last_list)
1190 11908 : DEALLOCATE (map_atom_mol)
1191 11908 : DEALLOCATE (map_atom_type)
1192 11908 : CALL timestop(handle)
1193 : CALL cp_print_key_finished_output(iw, logger, subsys_section, &
1194 11908 : "PRINT%TOPOLOGY_INFO/UTIL_INFO")
1195 250068 : END SUBROUTINE topology_connectivity_pack
1196 :
1197 : ! **************************************************************************************************
1198 : !> \brief used to achieve linear scaling in the connectivity_pack
1199 : !> \param nmol_type ...
1200 : !> \param map_vars ...
1201 : !> \param map_var_mol ...
1202 : !> \param bnd_type ...
1203 : !> \param nvar1 ...
1204 : !> \par History
1205 : !> Teodoro Laino
1206 : ! **************************************************************************************************
1207 119080 : SUBROUTINE find_bnd_typ(nmol_type, map_vars, map_var_mol, bnd_type, nvar1)
1208 : INTEGER, INTENT(IN) :: nmol_type
1209 : INTEGER, DIMENSION(:), POINTER :: map_vars, map_var_mol
1210 : INTEGER, DIMENSION(:, :), POINTER :: bnd_type
1211 : INTEGER, INTENT(IN) :: nvar1
1212 :
1213 : INTEGER :: i, ibond, j
1214 :
1215 247107 : ALLOCATE (map_vars(nvar1))
1216 119080 : CALL sort(map_var_mol, nvar1, map_vars)
1217 357240 : ALLOCATE (bnd_type(2, nmol_type))
1218 4603390 : bnd_type = 0
1219 119080 : IF (nvar1 == 0) RETURN
1220 731801 : DO j = 1, nvar1
1221 731801 : IF (map_var_mol(j) /= -1) EXIT
1222 : END DO
1223 8947 : IF (j == nvar1 + 1) RETURN
1224 8915 : i = map_var_mol(j)
1225 8915 : bnd_type(1, i) = j
1226 575515 : DO ibond = j, nvar1
1227 575515 : IF (map_var_mol(ibond) /= i) THEN
1228 100392 : bnd_type(2, i) = ibond - 1
1229 100392 : i = map_var_mol(ibond)
1230 100392 : bnd_type(1, i) = ibond
1231 : END IF
1232 : END DO
1233 8915 : bnd_type(2, i) = nvar1
1234 :
1235 : END SUBROUTINE find_bnd_typ
1236 :
1237 : ! **************************************************************************************************
1238 : !> \brief Handles the multiple unit cell option for the connectivity
1239 : !> \param topology ...
1240 : !> \param subsys_section ...
1241 : !> \author Teodoro Laino [tlaino] - 06.2009
1242 : ! **************************************************************************************************
1243 11908 : SUBROUTINE topology_conn_multiple(topology, subsys_section)
1244 : TYPE(topology_parameters_type), INTENT(INOUT) :: topology
1245 : TYPE(section_vals_type), POINTER :: subsys_section
1246 :
1247 : INTEGER :: a, fac, i, ind, j, k, m, natoms_orig, &
1248 : nbond, nbond_c, nimpr, nonfo, nphi, &
1249 : ntheta, nub
1250 11908 : INTEGER, DIMENSION(:), POINTER :: multiple_unit_cell
1251 : TYPE(connectivity_info_type), POINTER :: conn_info
1252 :
1253 11908 : NULLIFY (multiple_unit_cell)
1254 : CALL section_vals_val_get(subsys_section, "TOPOLOGY%MULTIPLE_UNIT_CELL", &
1255 11908 : i_vals=multiple_unit_cell)
1256 47192 : IF (ANY(multiple_unit_cell /= 1)) THEN
1257 600 : fac = PRODUCT(multiple_unit_cell)
1258 150 : conn_info => topology%conn_info
1259 :
1260 150 : nbond = 0
1261 150 : IF (ASSOCIATED(conn_info%bond_a)) THEN
1262 150 : nbond = SIZE(conn_info%bond_a)
1263 150 : CALL reallocate(conn_info%bond_a, 1, nbond*fac)
1264 150 : CALL reallocate(conn_info%bond_b, 1, nbond*fac)
1265 : END IF
1266 :
1267 150 : ntheta = 0
1268 150 : IF (ASSOCIATED(conn_info%theta_a)) THEN
1269 150 : ntheta = SIZE(conn_info%theta_a)
1270 150 : CALL reallocate(conn_info%theta_a, 1, ntheta*fac)
1271 150 : CALL reallocate(conn_info%theta_b, 1, ntheta*fac)
1272 150 : CALL reallocate(conn_info%theta_c, 1, ntheta*fac)
1273 : END IF
1274 :
1275 150 : nphi = 0
1276 150 : IF (ASSOCIATED(conn_info%phi_a)) THEN
1277 150 : nphi = SIZE(conn_info%phi_a)
1278 150 : CALL reallocate(conn_info%phi_a, 1, nphi*fac)
1279 150 : CALL reallocate(conn_info%phi_b, 1, nphi*fac)
1280 150 : CALL reallocate(conn_info%phi_c, 1, nphi*fac)
1281 150 : CALL reallocate(conn_info%phi_d, 1, nphi*fac)
1282 : END IF
1283 :
1284 150 : nimpr = 0
1285 150 : IF (ASSOCIATED(conn_info%impr_a)) THEN
1286 150 : nimpr = SIZE(conn_info%impr_a)
1287 150 : CALL reallocate(conn_info%impr_a, 1, nimpr*fac)
1288 150 : CALL reallocate(conn_info%impr_b, 1, nimpr*fac)
1289 150 : CALL reallocate(conn_info%impr_c, 1, nimpr*fac)
1290 150 : CALL reallocate(conn_info%impr_d, 1, nimpr*fac)
1291 : END IF
1292 :
1293 150 : nbond_c = 0
1294 150 : IF (ASSOCIATED(conn_info%c_bond_a)) THEN
1295 120 : nbond_c = SIZE(conn_info%c_bond_a)
1296 120 : CALL reallocate(conn_info%c_bond_a, 1, nbond_c*fac)
1297 120 : CALL reallocate(conn_info%c_bond_b, 1, nbond_c*fac)
1298 : END IF
1299 :
1300 150 : nub = 0
1301 150 : IF (ASSOCIATED(conn_info%ub_a)) THEN
1302 150 : nub = SIZE(conn_info%ub_a)
1303 150 : CALL reallocate(conn_info%ub_a, 1, nub*fac)
1304 150 : CALL reallocate(conn_info%ub_b, 1, nub*fac)
1305 150 : CALL reallocate(conn_info%ub_c, 1, nub*fac)
1306 : END IF
1307 :
1308 150 : nonfo = 0
1309 150 : IF (ASSOCIATED(conn_info%onfo_a)) THEN
1310 150 : nonfo = SIZE(conn_info%onfo_a)
1311 150 : CALL reallocate(conn_info%onfo_a, 1, nonfo*fac)
1312 150 : CALL reallocate(conn_info%onfo_b, 1, nonfo*fac)
1313 : END IF
1314 :
1315 150 : natoms_orig = topology%natoms/fac
1316 150 : ind = 0
1317 554 : DO k = 1, multiple_unit_cell(3)
1318 1840 : DO j = 1, multiple_unit_cell(2)
1319 6546 : DO i = 1, multiple_unit_cell(1)
1320 4856 : ind = ind + 1
1321 4856 : IF (ind == 1) CYCLE
1322 4706 : a = (ind - 1)*natoms_orig
1323 :
1324 : ! Bonds
1325 4706 : IF (nbond > 0) THEN
1326 3208 : m = (ind - 1)*nbond
1327 34024 : conn_info%bond_a(m + 1:m + nbond) = conn_info%bond_a(1:nbond) + a
1328 34024 : conn_info%bond_b(m + 1:m + nbond) = conn_info%bond_b(1:nbond) + a
1329 : END IF
1330 : ! Theta
1331 4706 : IF (ntheta > 0) THEN
1332 2168 : m = (ind - 1)*ntheta
1333 37428 : conn_info%theta_a(m + 1:m + ntheta) = conn_info%theta_a(1:ntheta) + a
1334 37428 : conn_info%theta_b(m + 1:m + ntheta) = conn_info%theta_b(1:ntheta) + a
1335 37428 : conn_info%theta_c(m + 1:m + ntheta) = conn_info%theta_c(1:ntheta) + a
1336 : END IF
1337 : ! Phi
1338 4706 : IF (nphi > 0) THEN
1339 14 : m = (ind - 1)*nphi
1340 35756 : conn_info%phi_a(m + 1:m + nphi) = conn_info%phi_a(1:nphi) + a
1341 35756 : conn_info%phi_b(m + 1:m + nphi) = conn_info%phi_b(1:nphi) + a
1342 35756 : conn_info%phi_c(m + 1:m + nphi) = conn_info%phi_c(1:nphi) + a
1343 35756 : conn_info%phi_d(m + 1:m + nphi) = conn_info%phi_d(1:nphi) + a
1344 : END IF
1345 : ! Impropers
1346 4706 : IF (nimpr > 0) THEN
1347 0 : m = (ind - 1)*nimpr
1348 0 : conn_info%impr_a(m + 1:m + nimpr) = conn_info%impr_a(1:nimpr) + a
1349 0 : conn_info%impr_b(m + 1:m + nimpr) = conn_info%impr_b(1:nimpr) + a
1350 0 : conn_info%impr_c(m + 1:m + nimpr) = conn_info%impr_c(1:nimpr) + a
1351 0 : conn_info%impr_d(m + 1:m + nimpr) = conn_info%impr_d(1:nimpr) + a
1352 : END IF
1353 : ! Para_res
1354 4706 : IF (nbond_c > 0) THEN
1355 0 : m = (ind - 1)*nbond_c
1356 0 : conn_info%c_bond_a(m + 1:m + nbond_c) = conn_info%c_bond_a(1:nbond_c) + a
1357 0 : conn_info%c_bond_b(m + 1:m + nbond_c) = conn_info%c_bond_b(1:nbond_c) + a
1358 : END IF
1359 : ! Urey-Bradley
1360 4706 : IF (nub > 0) THEN
1361 2168 : m = (ind - 1)*nub
1362 37428 : conn_info%ub_a(m + 1:m + nub) = conn_info%ub_a(1:nub) + a
1363 37428 : conn_info%ub_b(m + 1:m + nub) = conn_info%ub_b(1:nub) + a
1364 37428 : conn_info%ub_c(m + 1:m + nub) = conn_info%ub_c(1:nub) + a
1365 : END IF
1366 : ! ONFO
1367 5992 : IF (nonfo > 0) THEN
1368 14 : m = (ind - 1)*nonfo
1369 28364 : conn_info%onfo_a(m + 1:m + nonfo) = conn_info%onfo_a(1:nonfo) + a
1370 28364 : conn_info%onfo_b(m + 1:m + nonfo) = conn_info%onfo_b(1:nonfo) + a
1371 : END IF
1372 : END DO
1373 : END DO
1374 : END DO
1375 : END IF
1376 :
1377 11908 : END SUBROUTINE topology_conn_multiple
1378 :
1379 : END MODULE topology_connectivity_util
|