File: scanparam.f90

package info (click to toggle)
xtb 6.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,348 kB
  • sloc: f90: 139,236; fortran: 2,948; ansic: 2,215; makefile: 71; sh: 17; csh: 7; tcl: 7
file content (440 lines) | stat: -rw-r--r-- 13,712 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
! This file is part of xtb.
!
! Copyright (C) 2017-2020 Stefan Grimme
!
! xtb is free software: you can redistribute it and/or modify it under
! the terms of the GNU Lesser General Public License as published by
! the Free Software Foundation, either version 3 of the License, or
! (at your option) any later version.
!
! xtb is distributed in the hope that it will be useful,
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
! GNU Lesser General Public License for more details.
!
! You should have received a copy of the GNU Lesser General Public License
! along with xtb.  If not, see <https://www.gnu.org/licenses/>.

module xtb_scanparam
   use xtb_mctc_accuracy, only : wp
   use xtb_type_setvar
   use xtb_constrainpot
   implicit none
   private :: wp
   public

   integer,parameter :: p_scan_sequential = 1
   integer,parameter :: p_scan_concerted = 2
   integer  :: scan_mode = p_scan_sequential

   integer  :: maxscan = 0
   integer  :: maxconstr = 0
   real(wp),allocatable :: valscan(:)
   real(wp),allocatable :: valconstr(:)
   real(wp) :: fcconstr = 0.05_wp
   real(wp) :: pmf ! whatever
   real(wp) :: springexpo = 2.0_wp
   integer  :: nscan = 0
   integer  :: nconstr = 0
   integer, allocatable :: atconstr(:,:)
   integer  :: iconstr = 0
   integer  :: zconstr = 0
   logical  :: lconstr_all_torsions = .false.
   logical  :: lconstr_all_bonds    = .false.
   logical  :: lconstr_all_angles   = .false.

   type(constr_setvar) :: potset
   integer, parameter  :: p_typeid_dist     = 1
   integer, parameter  :: p_typeid_angle    = 2
   integer, parameter  :: p_typeid_dihedral = 3
   integer, parameter  :: p_typeid_cma      = 4
   integer, parameter  :: p_typeid_zaxis    = 5

   type tb_scan
      integer  :: nscan = 0
      integer  :: iconstr = 0
      real(wp) :: valconstr = 0.0_wp
      real(wp),allocatable :: valscan(:)
   end type tb_scan

   type(tb_scan),allocatable :: scan_list(:)

contains

subroutine init_constr(n,at)
   implicit none
   integer,intent(in) :: n
   integer,intent(in) :: at(n)
   if (lconstr_all_bonds)    maxconstr = maxconstr+n*(1+n)/2
   if (lconstr_all_angles)   maxconstr = maxconstr+n*(1+n)*(2+n)/6
   if (lconstr_all_torsions) maxconstr = maxconstr+n*(1+n)*(2+n)*(3+n)/24
   call clear_constr
   allocate( valconstr(maxconstr),  source = 0.0_wp )
   valconstr = 0.0_wp
   allocate( atconstr(4,maxconstr), source = 0 )
   atconstr = 0

   call potset%allocate(n,maxconstr,fc=fcconstr,expo=springexpo)
!  new model
   if (allocated(potset%fname)) then
      allocate( potset%xyz(3,n), source = 0.0_wp )
      call read_reference(potset%fname,n,at,potset%xyz)
   endif
end subroutine init_constr

subroutine init_scan
   call clear_scan
   allocate( scan_list(maxscan) )
end subroutine init_scan

subroutine clear_scan
   if (allocated(scan_list)) deallocate(scan_list)
end subroutine clear_scan

subroutine clear_constr
   if (allocated(valconstr)) deallocate(valconstr)
   if (allocated(atconstr))  deallocate(atconstr)
end subroutine clear_constr

subroutine read_reference(fname,n,at,xyz)
   implicit none
   character(len=*),intent(in) :: fname
   integer, intent(in)  :: n
   integer, intent(in)  :: at(n)
   real(wp),intent(out) :: xyz(3,n)

   integer  :: n1
   integer, allocatable :: at1(:)

   n1 = n
   allocate( at1(n), source = 0 )

   call rdcoord(fname,n1,xyz,at1)

   if (n1.ne.n) &
      call raise('E',"Atom number missmatch in constraint reference geometry!")
   if (any(at.ne.at1)) &
      call raise('E',"Atom type missmatch in constraint reference geometry!")

end subroutine read_reference

subroutine setup_constrain_pot(n,at,xyz)
   implicit none
   integer, intent(in)  :: n
   integer, intent(in)  :: at(n)
   real(wp),intent(in)  :: xyz(3,n)

   integer  :: i,ii,j,jj,ij
   real(wp) :: rij

   if (potset%pos%n.gt.0) then
      ij = 0
      do i = 1, potset%pos%n
         ii = potset%pos%atoms(i)
         do j = 1, i-1
            jj = potset%pos%atoms(j)
            ij = ij+1
            rij = sqrt(sum((xyz(1:3,jj)-xyz(1:3,ii))**2))
            potset%pos%val(ij) = rij
         enddo
      enddo
      potset%pos%fc = potset%pos%fc / real(potset%pos%n-1,wp)
   endif

end subroutine setup_constrain_pot

subroutine pot_info(iunit,n,at,xyz)
   use xtb_mctc_constants
   use xtb_mctc_convert
   use xtb_mctc_symbols, only : toSymbol
   use xtb_mctc_blas, only : mctc_nrm2
   implicit none
   integer, intent(in)  :: iunit
   integer, intent(in)  :: n
   integer, intent(in)  :: at(n)
   real(wp),intent(in)  :: xyz(3,n)

   real(wp),external :: valijkl

   integer :: i,ii,j,k,l,m,mm
   real(wp) :: val0,val

   real(wp) :: e,efix,gfix
   real(wp),allocatable :: g(:,:)

   allocate( g(3,n), source = 0.0_wp )


   efix = 0.0_wp
   gfix = 0.0_wp

   if (potset%n.gt.0 .or. potset%pos%n.gt.0) then
      call generic_header(iunit,"Constraints",49,10)
      write(iunit,'(a)')
   endif
   if (potset%pos%n.gt.0) then
      write(iunit,'(1x,"*",1x,i0,1x,a)') potset%pos%n,"constrained atom positions"
      if (allocated(potset%xyz).and.allocated(potset%fname)) then
         write(iunit,'(3x,a,1x,"''",a,"''")') "positions refering to",&
            potset%fname
      else
         write(iunit,'(3x,a)') "positions refering to input geometry"
      endif
      write(iunit,'(a)')
      write(iunit,'(5x,"#",3x,"Z",3x,32x,"position/Å",6x,"displ./Å")')
      do i = 1, potset%pos%n
         ii = potset%pos%atoms(i)
         write(iunit,'(i6,1x,i3,1x,a2)',advance='no') ii,at(ii),toSymbol(at(ii))
         if (allocated(potset%xyz)) then
            write(iunit,'(4f14.7)') &
               potset%xyz(:,ii)*autoaa, sqrt(sum((potset%xyz(:,ii)-xyz(:,ii))**2))*autoaa
         else
            write(iunit,'(4f14.7)') &
               xyz(:,ii)*autoaa, 0.0_wp
         endif
      enddo
      write(iunit,'(a)')
      write(iunit,'(5x,a,1x,i0,1x,a)') "applying",potset%pos%n*(potset%pos%n-1)/2,&
         "atom pairwise harmonic potentials"
      write(iunit,'(5x,a,f14.7)') "  applied force constant per pair:", &
         potset%pos%fc
      write(iunit,'(5x,a,f14.7)') "effective force constant per atom:", &
         potset%pos%fc*(potset%pos%n-1)

      g = 0.0_wp
      e = 0.0_wp
      call constrain_pos(potset%pos,n,at,xyz,g,e)
      efix = efix+e
      gfix = gfix+mctc_nrm2(g)
      write(iunit,'(5x,a,2f14.7)')"    constraining energy/grad norm:", &
         e,mctc_nrm2(g)

      write(iunit,'(a)')
   endif

   if (potset%dist%n.gt.0) then
      write(iunit,'(1x,"*",1x,i0,1x,a)') potset%dist%n,"constrained distances"
      write(iunit,'(a)')
      write(iunit,'(2(5x,"#",3x,"Z",3x),26x,8x,"value/Å",6x,"actual/Å")')
      do m = 1, potset%dist%n
         mm = 2*m-1
         i = potset%dist%atoms(mm)
         j = potset%dist%atoms(mm+1)
         val0 = potset%dist%val(m)
         val = sqrt(sum((xyz(:,i)-xyz(:,j))**2))
         write(iunit,'(2(i6,1x,i3,1x,a2),26x,1x,2f14.7)') &
            i,at(i),toSymbol(at(i)), &
            j,at(j),toSymbol(at(j)), &
            val0*autoaa, val*autoaa
      enddo
      write(iunit,'(a)')
      write(iunit,'(5x,a,f14.7)') " applied force constant per dist.:", &
         potset%dist%fc
      write(iunit,'(5x,a,f14.7)') "effective force constant per atom:", &
         potset%dist%fc/2.0_wp

      g = 0.0_wp
      e = 0.0_wp
      call constrain_dist(potset%dist,n,at,xyz,g,e)
      efix = efix+e
      gfix = gfix+mctc_nrm2(g)
      write(iunit,'(5x,a,2f14.7)')"    constraining energy/grad norm:", &
         e,mctc_nrm2(g)

      write(iunit,'(a)')
   endif

   if (potset%angle%n.gt.0) then
      write(iunit,'(1x,"*",1x,i0,1x,a)') potset%angle%n,"constrained angles"
      write(iunit,'(a)')
      write(iunit,'(3(5x,"#",3x,"Z",3x),13x,8x,"value/°",6x,"actual/°")')
      do m = 1, potset%angle%n
         mm = 3*m-2
         i = potset%angle%atoms(mm)
         j = potset%angle%atoms(mm+1)
         k = potset%angle%atoms(mm+2)
         val0 = potset%angle%val(m)
         call bangl(xyz,i,j,k,val)
         write(iunit,'(3(i6,1x,i3,1x,a2),13x,1x,2f14.7)') &
            i,at(i),toSymbol(at(i)), &
            j,at(j),toSymbol(at(j)), &
            k,at(k),toSymbol(at(k)), &
            val0*180.0_wp/pi, val*180.0_wp/pi
      enddo
      write(iunit,'(a)')
      write(iunit,'(5x,a,f14.7)') " applied force constant per angle:", &
         potset%angle%fc
      write(iunit,'(5x,a,f14.7)') "effective force constant per atom:", &
         potset%angle%fc/3.0_wp

      g = 0.0_wp
      e = 0.0_wp
      call constrain_angle(potset%angle,n,at,xyz,g,e)
      efix = efix+e
      gfix = gfix+mctc_nrm2(g)
      write(iunit,'(5x,a,2f14.7)')"    constraining energy/grad norm:", &
         e,mctc_nrm2(g)

      write(iunit,'(a)')
   endif

   if (potset%dihedral%n.gt.0) then
      write(iunit,'(1x,"*",1x,i0,1x,a)') potset%dihedral%n, &
         "constrained dihedral angles"
      write(iunit,'(a)')
      write(iunit,'(4(5x,"#",3x,"Z",3x),8x,"value/°",6x,"actual/°")')
      do m = 1, potset%dihedral%n
         mm = 4*m-3
         i = potset%dihedral%atoms(mm)
         j = potset%dihedral%atoms(mm+1)
         k = potset%dihedral%atoms(mm+2)
         l = potset%dihedral%atoms(mm+3)
         val0 = potset%dihedral%val(m)
         val = valijkl(n,xyz,i,j,k,l)
         write(iunit,'(4(i6,1x,i3,1x,a2),1x,2f14.7)') &
            i,at(i),toSymbol(at(i)), &
            j,at(j),toSymbol(at(j)), &
            k,at(k),toSymbol(at(k)), &
            l,at(l),toSymbol(at(l)), &
            val0*180.0_wp/pi, val*180.0_wp/pi
      enddo
      write(iunit,'(a)')
      write(iunit,'(5x,a,f14.7)') " applied force constant per angle:", &
         potset%dihedral%fc
      write(iunit,'(5x,a,f14.7)') "effective force constant per atom:", &
         potset%dihedral%fc/4.0_wp

      g = 0.0_wp
      e = 0.0_wp
      call constrain_dihedral(potset%dihedral,n,at,xyz,g,e)
      efix = efix+e
      gfix = gfix+mctc_nrm2(g)
      write(iunit,'(5x,a,2f14.7)')"    constraining energy/grad norm:", &
         e,mctc_nrm2(g)

      write(iunit,'(a)')
   endif
   if (potset%n.gt.0 .or. potset%pos%n.gt.0) then
      write(iunit,'(5x,a,2f14.7)')"total constraint energy/grad norm:", &
         efix, gfix
      write(iunit,'(a)')
   endif

end subroutine pot_info

subroutine constrain_all_bonds(n,at,xyz)
   use xtb_mctc_param, only: rad => covalent_radius_2009
   implicit none
   integer, intent(in)  :: n
   integer, intent(in)  :: at(n)
   real(wp),intent(in)  :: xyz(3,n)

   integer  :: i,j
   integer  :: ioffset
   real(wp) :: r,r0
   real(wp),parameter :: f = 1.2_wp

   do i = 1, n
      do j = 1, i-1
         r  = sqrt(sum((xyz(:,i)-xyz(:,j))**2))
         r0 = rad(at(j))+rad(at(i))
         if (r.lt.f*r0) then
            ioffset = 2*potset%dist%n
            potset%dist%n = potset%dist%n+1
            potset%dist%atoms(ioffset+1) = j
            potset%dist%atoms(ioffset+2) = i
            potset%dist%val(potset%dist%n) = r
         endif
      enddo
   enddo

end subroutine constrain_all_bonds

subroutine constrain_all_angles(n,at,xyz)
   use xtb_mctc_constants
   use xtb_mctc_param
   implicit none
   integer, intent(in)  :: n
   integer, intent(in)  :: at(n)
   real(wp),intent(in)  :: xyz(3,n)

   integer  :: i,j,k
   integer  :: ioffset
   real(wp) :: phi
   integer, allocatable :: bond(:,:)
   real(wp),parameter   :: thr = 0.2_wp

   allocate( bond(n,n), source = 0 )
   call get_bonds(n,at,xyz,bond)

   do i = 1, n
      if (bond(i,i).lt.2) cycle
      do j = 1, i-1
         if (i.eq.j) cycle
         if (bond(i,i).lt.2) cycle
         if (bond(j,i).lt.1) cycle
         do k = 1, j-1
            if (i.eq.k .or. j.eq.k) cycle
            if (bond(k,j).lt.1) cycle
            call bangl(xyz,k,j,i,phi)
            if (abs(pi-phi).lt.thr) cycle
            ioffset = 3*potset%angle%n
            potset%angle%n = potset%angle%n+1
            potset%angle%atoms(ioffset+1) = k
            potset%angle%atoms(ioffset+2) = j
            potset%angle%atoms(ioffset+3) = i
            potset%angle%val(potset%angle%n) = phi
         enddo
      enddo
   enddo

end subroutine constrain_all_angles

subroutine constrain_all_torsions(n,at,xyz)
   use xtb_mctc_constants
   use xtb_mctc_param
   implicit none
   integer, intent(in)  :: n
   integer, intent(in)  :: at(n)
   real(wp),intent(in)  :: xyz(3,n)

   integer  :: i,j,k,l
   integer  :: ioffset
   real(wp) :: phi,thijk,thjkl
   integer, allocatable :: bond(:,:)
   real(wp),parameter   :: thr = 0.2_wp
   real(wp),external    :: valijkl

   allocate( bond(n,n), source = 0 )
   call get_bonds(n,at,xyz,bond)

   do i = 1, n
      if (bond(i,i).lt.2) cycle
      do j = 1, n
         if (i.eq.j) cycle
         if (bond(j,i).lt.1 .or. bond(j,j).lt.2) cycle
         do k = 1, n
            if (i.eq.k .or. j.eq.k) cycle
            if (bond(k,j).lt.1 .or. bond(k,k).lt.2) cycle
            do l = 1, n
               if (bond(l,k).lt.1) cycle
               if (i.eq.l .or. j.eq.l .or. k.eq.l) cycle
               call bangl(xyz,k,j,i,thijk)
               call bangl(xyz,l,k,j,thjkl)
               if (abs(pi-thijk).lt.thr .or. abs(pi-thjkl).lt.thr) cycle
               phi = valijkl(n,xyz,l,k,j,i)
               ioffset = 4*potset%dihedral%n
               potset%dihedral%n = potset%dihedral%n+1
               potset%dihedral%atoms(ioffset+1) = l
               potset%dihedral%atoms(ioffset+2) = k
               potset%dihedral%atoms(ioffset+3) = j
               potset%dihedral%atoms(ioffset+4) = i
               potset%dihedral%val(potset%dihedral%n) = phi
            enddo
         enddo
      enddo
   enddo

end subroutine constrain_all_torsions

end module xtb_scanparam