forked from cp2k/cp2k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constraint_clv.F
998 lines (902 loc) · 44.1 KB
/
constraint_clv.F
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
!--------------------------------------------------------------------------------------------------!
! CP2K: A general program to perform molecular dynamics simulations !
! Copyright 2000-2023 CP2K developers group <https://cp2k.org> !
! !
! SPDX-License-Identifier: GPL-2.0-or-later !
!--------------------------------------------------------------------------------------------------!
! **************************************************************************************************
!> \brief Module that handles the COLLECTIVE constraints
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
MODULE constraint_clv
USE cell_types, ONLY: cell_type
USE colvar_methods, ONLY: colvar_eval_mol_f
USE colvar_types, ONLY: colvar_type,&
diff_colvar
USE input_section_types, ONLY: section_vals_get,&
section_vals_get_subs_vals,&
section_vals_type,&
section_vals_val_get,&
section_vals_val_set
USE kinds, ONLY: dp
USE molecule_kind_types, ONLY: colvar_constraint_type,&
fixd_constraint_type,&
get_molecule_kind,&
molecule_kind_type
USE molecule_types, ONLY: get_molecule,&
global_constraint_type,&
local_colvar_constraint_type,&
molecule_type
USE particle_types, ONLY: particle_type
#include "./base/base_uses.f90"
IMPLICIT NONE
PRIVATE
PUBLIC :: shake_roll_colv_int, &
rattle_roll_colv_int, &
shake_colv_int, &
rattle_colv_int, &
shake_roll_colv_ext, &
rattle_roll_colv_ext, &
shake_colv_ext, &
rattle_colv_ext, &
shake_update_colv_int, &
shake_update_colv_ext
CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'constraint_clv'
CONTAINS
! **************************************************************************************************
!> \brief Intramolecular subroutine
!> shake_colv algorithm for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param molecule ...
!> \param particle_set ...
!> \param pos ...
!> \param vel ...
!> \param dt ...
!> \param ishake ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE shake_colv_int(molecule, particle_set, pos, vel, dt, ishake, &
cell, imass, max_sigma)
TYPE(molecule_type), POINTER :: molecule
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: pos(:, :), vel(:, :)
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(IN) :: ishake
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
TYPE(molecule_kind_type), POINTER :: molecule_kind
NULLIFY (fixd_list)
molecule_kind => molecule%molecule_kind
CALL get_molecule_kind(molecule_kind, colv_list=colv_list, fixd_list=fixd_list)
CALL get_molecule(molecule, lcolv=lcolv)
! Real Shake
CALL shake_colv_low(fixd_list, colv_list, lcolv, &
particle_set, pos, vel, dt, ishake, cell, imass, max_sigma)
END SUBROUTINE shake_colv_int
! **************************************************************************************************
!> \brief Intramolecular subroutine for updating the TARGET value of collective
!> constraints
!> \param molecule ...
!> \param dt ...
!> \param motion_section ...
!> \author Teodoro Laino [tlaino] - University of Zurich
! **************************************************************************************************
SUBROUTINE shake_update_colv_int(molecule, dt, motion_section)
TYPE(molecule_type), POINTER :: molecule
REAL(kind=dp), INTENT(in) :: dt
TYPE(section_vals_type), POINTER :: motion_section
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(molecule_kind_type), POINTER :: molecule_kind
molecule_kind => molecule%molecule_kind
CALL get_molecule_kind(molecule_kind, colv_list=colv_list)
! Real update of the Shake target
CALL shake_update_colv_low(colv_list, dt, motion_section)
END SUBROUTINE shake_update_colv_int
! **************************************************************************************************
!> \brief Intramolecular subroutine
!> rattle algorithm for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param molecule ...
!> \param particle_set ...
!> \param vel ...
!> \param dt ...
!> \param irattle ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE rattle_colv_int(molecule, particle_set, vel, dt, irattle, &
cell, imass, max_sigma)
TYPE(molecule_type), POINTER :: molecule
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: vel(:, :)
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(IN) :: irattle
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
TYPE(molecule_kind_type), POINTER :: molecule_kind
NULLIFY (fixd_list)
molecule_kind => molecule%molecule_kind
CALL get_molecule_kind(molecule_kind, colv_list=colv_list, fixd_list=fixd_list)
CALL get_molecule(molecule, lcolv=lcolv)
! Real Rattle
CALL rattle_colv_low(fixd_list, colv_list, lcolv, &
particle_set, vel, dt, irattle, cell, imass, max_sigma)
END SUBROUTINE rattle_colv_int
! **************************************************************************************************
!> \brief Intramolecular subroutine
!> shake algorithm (box allowed to change) for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param molecule ...
!> \param particle_set ...
!> \param pos ...
!> \param vel ...
!> \param r_shake ...
!> \param v_shake ...
!> \param dt ...
!> \param ishake ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE shake_roll_colv_int(molecule, particle_set, pos, vel, r_shake, v_shake, &
dt, ishake, cell, imass, max_sigma)
TYPE(molecule_type), POINTER :: molecule
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: pos(:, :), vel(:, :)
REAL(KIND=dp), DIMENSION(:, :), INTENT(IN) :: r_shake, v_shake
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(in) :: ishake
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
TYPE(molecule_kind_type), POINTER :: molecule_kind
NULLIFY (fixd_list)
molecule_kind => molecule%molecule_kind
CALL get_molecule_kind(molecule_kind, colv_list=colv_list, fixd_list=fixd_list)
CALL get_molecule(molecule, lcolv=lcolv)
! Real Shake
CALL shake_roll_colv_low(fixd_list, colv_list, lcolv, &
particle_set, pos, vel, r_shake, v_shake, dt, ishake, cell, &
imass, max_sigma)
END SUBROUTINE shake_roll_colv_int
! **************************************************************************************************
!> \brief Intramolecular subroutine
!> rattle algorithm (box allowed to change) for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param molecule ...
!> \param particle_set ...
!> \param vel ...
!> \param r_rattle ...
!> \param dt ...
!> \param irattle ...
!> \param veps ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE rattle_roll_colv_int(molecule, particle_set, vel, r_rattle, &
dt, irattle, veps, cell, imass, max_sigma)
TYPE(molecule_type), POINTER :: molecule
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: vel(:, :)
REAL(KIND=dp), INTENT(IN) :: r_rattle(:, :), dt
INTEGER, INTENT(in) :: irattle
REAL(KIND=dp), INTENT(IN) :: veps(:, :)
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
TYPE(molecule_kind_type), POINTER :: molecule_kind
NULLIFY (fixd_list)
molecule_kind => molecule%molecule_kind
CALL get_molecule_kind(molecule_kind, colv_list=colv_list, fixd_list=fixd_list)
CALL get_molecule(molecule, lcolv=lcolv)
! Real Rattle
CALL rattle_roll_colv_low(fixd_list, colv_list, lcolv, &
particle_set, vel, r_rattle, dt, irattle, veps, cell, &
imass, max_sigma)
END SUBROUTINE rattle_roll_colv_int
! **************************************************************************************************
!> \brief Intermolecular subroutine
!> shake_colv algorithm for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param gci ...
!> \param particle_set ...
!> \param pos ...
!> \param vel ...
!> \param dt ...
!> \param ishake ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE shake_colv_ext(gci, particle_set, pos, vel, dt, ishake, &
cell, imass, max_sigma)
TYPE(global_constraint_type), POINTER :: gci
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: pos(:, :), vel(:, :)
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(IN) :: ishake
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
colv_list => gci%colv_list
fixd_list => gci%fixd_list
lcolv => gci%lcolv
! Real Shake
CALL shake_colv_low(fixd_list, colv_list, lcolv, &
particle_set, pos, vel, dt, ishake, cell, imass, max_sigma)
END SUBROUTINE shake_colv_ext
! **************************************************************************************************
!> \brief Intermolecular subroutine for updating the TARGET value for collective
!> constraints
!> \param gci ...
!> \param dt ...
!> \param motion_section ...
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE shake_update_colv_ext(gci, dt, motion_section)
TYPE(global_constraint_type), POINTER :: gci
REAL(kind=dp), INTENT(in) :: dt
TYPE(section_vals_type), POINTER :: motion_section
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
colv_list => gci%colv_list
! Real update of the Shake target
CALL shake_update_colv_low(colv_list, dt, motion_section)
END SUBROUTINE shake_update_colv_ext
! **************************************************************************************************
!> \brief Intermolecular subroutine
!> rattle algorithm for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param gci ...
!> \param particle_set ...
!> \param vel ...
!> \param dt ...
!> \param irattle ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE rattle_colv_ext(gci, particle_set, vel, dt, irattle, &
cell, imass, max_sigma)
TYPE(global_constraint_type), POINTER :: gci
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: vel(:, :)
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(IN) :: irattle
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
colv_list => gci%colv_list
fixd_list => gci%fixd_list
lcolv => gci%lcolv
! Real Rattle
CALL rattle_colv_low(fixd_list, colv_list, lcolv, &
particle_set, vel, dt, irattle, cell, imass, max_sigma)
END SUBROUTINE rattle_colv_ext
! **************************************************************************************************
!> \brief Intermolecular subroutine
!> shake algorithm (box allowed to change) for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param gci ...
!> \param particle_set ...
!> \param pos ...
!> \param vel ...
!> \param r_shake ...
!> \param v_shake ...
!> \param dt ...
!> \param ishake ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE shake_roll_colv_ext(gci, particle_set, pos, vel, r_shake, v_shake, &
dt, ishake, cell, imass, max_sigma)
TYPE(global_constraint_type), POINTER :: gci
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: pos(:, :), vel(:, :)
REAL(KIND=dp), DIMENSION(:, :), INTENT(IN) :: r_shake, v_shake
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(in) :: ishake
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
colv_list => gci%colv_list
fixd_list => gci%fixd_list
lcolv => gci%lcolv
! Real Shake
CALL shake_roll_colv_low(fixd_list, colv_list, lcolv, &
particle_set, pos, vel, r_shake, v_shake, dt, ishake, cell, &
imass, max_sigma)
END SUBROUTINE shake_roll_colv_ext
! **************************************************************************************************
!> \brief Intermolecular subroutine
!> rattle algorithm (box allowed to change) for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param gci ...
!> \param particle_set ...
!> \param vel ...
!> \param r_rattle ...
!> \param dt ...
!> \param irattle ...
!> \param veps ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE rattle_roll_colv_ext(gci, particle_set, vel, r_rattle, &
dt, irattle, veps, cell, imass, max_sigma)
TYPE(global_constraint_type), POINTER :: gci
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: vel(:, :)
REAL(KIND=dp), INTENT(IN) :: r_rattle(:, :), dt
INTEGER, INTENT(in) :: irattle
REAL(KIND=dp), INTENT(IN) :: veps(:, :)
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
colv_list => gci%colv_list
fixd_list => gci%fixd_list
lcolv => gci%lcolv
! Real Rattle
CALL rattle_roll_colv_low(fixd_list, colv_list, lcolv, &
particle_set, vel, r_rattle, dt, irattle, veps, cell, &
imass, max_sigma)
END SUBROUTINE rattle_roll_colv_ext
! **************************************************************************************************
!> \brief Real Shake subroutine - Low Level
!> shake_colv algorithm for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param fixd_list ...
!> \param colv_list ...
!> \param lcolv ...
!> \param particle_set ...
!> \param pos ...
!> \param vel ...
!> \param dt ...
!> \param ishake ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE shake_colv_low(fixd_list, colv_list, lcolv, &
particle_set, pos, vel, dt, ishake, cell, imass, max_sigma)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: pos(:, :), vel(:, :)
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(IN) :: ishake
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
INTEGER :: iconst
REAL(KIND=dp) :: del_lam, dtby2, dtsqby2, fdotf_sum
dtsqby2 = dt*dt*.5_dp
dtby2 = dt*.5_dp
IF (ishake == 1) THEN
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
! Update positions
CALL update_con_colv(pos, dtsqby2, lcolv(iconst), &
lambda=lcolv(iconst)%lambda, &
imass=imass)
! Update velocities
CALL update_con_colv(vel, dtby2, lcolv(iconst), &
lambda=lcolv(iconst)%lambda, &
imass=imass)
END DO
ELSE
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
! Update colvar
CALL colvar_eval_mol_f(lcolv(iconst)%colvar, cell, particles=particle_set, &
pos=pos, fixd_list=fixd_list)
lcolv(iconst)%sigma = diff_colvar(lcolv(iconst)%colvar, &
colv_list(iconst)%expected_value)
fdotf_sum = eval_Jac_colvar(lcolv(iconst)%colvar, &
lcolv(iconst)%colvar_old, imass=imass)
del_lam = 2.0_dp*lcolv(iconst)%sigma/(dt*dt*fdotf_sum)
lcolv(iconst)%lambda = lcolv(iconst)%lambda + del_lam
! Update positions
CALL update_con_colv(pos, dtsqby2, lcolv(iconst), &
lambda=del_lam, &
imass=imass)
! Update velocities
CALL update_con_colv(vel, dtby2, lcolv(iconst), &
lambda=del_lam, &
imass=imass)
END DO
END IF
! computing the constraint and value of tolerance
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
CALL colvar_eval_mol_f(lcolv(iconst)%colvar, cell, particles=particle_set, &
pos=pos, fixd_list=fixd_list)
lcolv(iconst)%sigma = diff_colvar(lcolv(iconst)%colvar, &
colv_list(iconst)%expected_value)
max_sigma = MAX(ABS(lcolv(iconst)%sigma), max_sigma)
END DO
END SUBROUTINE shake_colv_low
! **************************************************************************************************
!> \brief Real Shake subroutine - Low Level - for updating the TARGET value
!> \param colv_list ...
!> \param dt ...
!> \param motion_section ...
!> \date 02.2008
!> \author Teodoro Laino [tlaino] - University of Zurich
! **************************************************************************************************
SUBROUTINE shake_update_colv_low(colv_list, dt, motion_section)
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
REAL(kind=dp), INTENT(in) :: dt
TYPE(section_vals_type), POINTER :: motion_section
INTEGER :: iconst, irep, n_rep
LOGICAL :: do_update_colvar, explicit
REAL(KIND=dp) :: clv_target, limit, new_clv_target, value
TYPE(section_vals_type), POINTER :: collective_sections
! Update globally for restart
collective_sections => section_vals_get_subs_vals(motion_section, "CONSTRAINT%COLLECTIVE")
CALL section_vals_get(collective_sections, n_repetition=n_rep)
IF (n_rep /= 0) THEN
DO irep = 1, n_rep
CALL section_vals_val_get(collective_sections, "TARGET_GROWTH", r_val=value, &
i_rep_section=irep)
IF (value /= 0.0_dp) THEN
CALL section_vals_val_get(collective_sections, "TARGET", r_val=clv_target, &
i_rep_section=irep)
new_clv_target = clv_target + value*dt
! Check limits..
CALL section_vals_val_get(collective_sections, "TARGET_LIMIT", explicit=explicit, &
i_rep_section=irep)
do_update_colvar = .TRUE.
IF (explicit) THEN
CALL section_vals_val_get(collective_sections, "TARGET_LIMIT", r_val=limit, &
i_rep_section=irep)
IF (value > 0.0_dp) THEN
IF (clv_target == limit) THEN
do_update_colvar = .FALSE.
ELSE IF (new_clv_target >= limit) THEN
new_clv_target = limit
END IF
ELSE
IF (clv_target == limit) THEN
do_update_colvar = .FALSE.
ELSE IF (new_clv_target <= limit) THEN
new_clv_target = limit
END IF
END IF
END IF
IF (do_update_colvar) THEN
CALL section_vals_val_set(collective_sections, "TARGET", r_val=new_clv_target, &
i_rep_section=irep)
END IF
END IF
END DO
END IF
! Update locally the value to each processor
DO iconst = 1, SIZE(colv_list)
! Update local to each processor
IF (colv_list(iconst)%expected_value_growth_speed == 0.0_dp) CYCLE
CALL section_vals_val_get(collective_sections, "TARGET", &
r_val=colv_list(iconst)%expected_value, &
i_rep_section=colv_list(iconst)%inp_seq_num)
END DO
END SUBROUTINE shake_update_colv_low
! **************************************************************************************************
!> \brief Real Rattle - Low Level
!> rattle algorithm for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param fixd_list ...
!> \param colv_list ...
!> \param lcolv ...
!> \param particle_set ...
!> \param vel ...
!> \param dt ...
!> \param irattle ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE rattle_colv_low(fixd_list, colv_list, lcolv, &
particle_set, vel, dt, irattle, cell, imass, max_sigma)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: vel(:, :)
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(IN) :: irattle
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
INTEGER :: iconst
REAL(KIND=dp) :: del_lam, dtby2, fdotf_sum
dtby2 = dt*.5_dp
IF (irattle == 1) THEN
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
! Update colvar_old
CALL colvar_eval_mol_f(lcolv(iconst)%colvar_old, cell, &
particles=particle_set, fixd_list=fixd_list)
! Update velocities
CALL update_con_colv(vel, dtby2, lcolv(iconst), &
lambda=lcolv(iconst)%lambda, &
imass=imass)
END DO
ELSE
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
lcolv(iconst)%sigma = rattle_con_eval(lcolv(iconst)%colvar_old, vel)
fdotf_sum = eval_Jac_colvar(lcolv(iconst)%colvar_old, &
lcolv(iconst)%colvar_old, imass=imass)
del_lam = 2.0_dp*lcolv(iconst)%sigma/(dt*fdotf_sum)
lcolv(iconst)%lambda = lcolv(iconst)%lambda + del_lam
! Update velocities
CALL update_con_colv(vel, dtby2, lcolv(iconst), &
lambda=del_lam, &
imass=imass)
END DO
END IF
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
lcolv(iconst)%sigma = rattle_con_eval(lcolv(iconst)%colvar_old, vel)
max_sigma = MAX(ABS(lcolv(iconst)%sigma), max_sigma)
END DO
END SUBROUTINE rattle_colv_low
! **************************************************************************************************
!> \brief Real shake_roll - Low Level
!> shake algorithm (box allowed to change) for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param fixd_list ...
!> \param colv_list ...
!> \param lcolv ...
!> \param particle_set ...
!> \param pos ...
!> \param vel ...
!> \param r_shake ...
!> \param v_shake ...
!> \param dt ...
!> \param ishake ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE shake_roll_colv_low(fixd_list, colv_list, lcolv, &
particle_set, pos, vel, r_shake, v_shake, dt, ishake, cell, &
imass, max_sigma)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: pos(:, :), vel(:, :)
REAL(KIND=dp), DIMENSION(:, :), INTENT(IN) :: r_shake, v_shake
REAL(kind=dp), INTENT(in) :: dt
INTEGER, INTENT(in) :: ishake
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
INTEGER :: iconst
REAL(KIND=dp) :: del_lam, dtby2, dtsqby2, fdotf_sum
dtsqby2 = dt*dt*.5_dp
dtby2 = dt*.5_dp
IF (ishake == 1) THEN
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
! Update positions
CALL update_con_colv(pos, dtsqby2, lcolv(iconst), &
lambda=lcolv(iconst)%lambda, &
roll=.TRUE., rmat=r_shake, imass=imass)
! Update velocities
CALL update_con_colv(vel, dtby2, lcolv(iconst), &
lambda=lcolv(iconst)%lambda, &
roll=.TRUE., rmat=v_shake, imass=imass)
END DO
ELSE
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
! Update colvar
CALL colvar_eval_mol_f(lcolv(iconst)%colvar, cell, particles=particle_set, &
pos=pos, fixd_list=fixd_list)
lcolv(iconst)%sigma = diff_colvar(lcolv(iconst)%colvar, &
colv_list(iconst)%expected_value)
fdotf_sum = eval_Jac_colvar(lcolv(iconst)%colvar, &
lcolv(iconst)%colvar_old, roll=.TRUE., rmat=r_shake, &
imass=imass)
del_lam = 2.0_dp*lcolv(iconst)%sigma/(dt*dt*fdotf_sum)
lcolv(iconst)%lambda = lcolv(iconst)%lambda + del_lam
! Update positions
CALL update_con_colv(pos, dtsqby2, lcolv(iconst), &
lambda=del_lam, &
roll=.TRUE., rmat=r_shake, imass=imass)
! Update velocities
CALL update_con_colv(vel, dtby2, lcolv(iconst), &
lambda=del_lam, &
roll=.TRUE., rmat=v_shake, imass=imass)
END DO
END IF
! computing the constraint and value of tolerance
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
CALL colvar_eval_mol_f(lcolv(iconst)%colvar, cell, particles=particle_set, &
pos=pos, fixd_list=fixd_list)
lcolv(iconst)%sigma = diff_colvar(lcolv(iconst)%colvar, &
colv_list(iconst)%expected_value)
max_sigma = MAX(ABS(lcolv(iconst)%sigma), max_sigma)
END DO
END SUBROUTINE shake_roll_colv_low
! **************************************************************************************************
!> \brief Real Rattle_roll - Low Level
!> rattle algorithm (box allowed to change) for collective variables constraints
!> updates the multiplier one molecule type at a time
!> \param fixd_list ...
!> \param colv_list ...
!> \param lcolv ...
!> \param particle_set ...
!> \param vel ...
!> \param r_rattle ...
!> \param dt ...
!> \param irattle ...
!> \param veps ...
!> \param cell ...
!> \param imass ...
!> \param max_sigma ...
!> \par History
!> none
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE rattle_roll_colv_low(fixd_list, colv_list, lcolv, &
particle_set, vel, r_rattle, dt, irattle, veps, cell, &
imass, max_sigma)
TYPE(fixd_constraint_type), DIMENSION(:), POINTER :: fixd_list
TYPE(colvar_constraint_type), POINTER :: colv_list(:)
TYPE(local_colvar_constraint_type), POINTER :: lcolv(:)
TYPE(particle_type), POINTER :: particle_set(:)
REAL(KIND=dp), INTENT(INOUT) :: vel(:, :)
REAL(KIND=dp), INTENT(IN) :: r_rattle(:, :), dt
INTEGER, INTENT(in) :: irattle
REAL(KIND=dp), INTENT(IN) :: veps(:, :)
TYPE(cell_type), POINTER :: cell
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp), INTENT(INOUT) :: max_sigma
INTEGER :: iconst
REAL(KIND=dp) :: del_lam, dtby2, fdotf_sum
dtby2 = dt*.5_dp
IF (irattle == 1) THEN
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
! Update colvar_old
CALL colvar_eval_mol_f(lcolv(iconst)%colvar_old, cell, &
particles=particle_set, fixd_list=fixd_list)
! Update velocities
CALL update_con_colv(vel, dtby2, lcolv(iconst), &
lambda=lcolv(iconst)%lambda, &
imass=imass)
END DO
ELSE
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
lcolv(iconst)%sigma = rattle_con_eval(lcolv(iconst)%colvar_old, vel, &
roll=.TRUE., veps=veps, rmat=r_rattle, particles=particle_set)
fdotf_sum = eval_Jac_colvar(lcolv(iconst)%colvar_old, &
lcolv(iconst)%colvar_old, roll=.TRUE., &
rmat=r_rattle, imass=imass)
del_lam = 2.0_dp*lcolv(iconst)%sigma/(dt*fdotf_sum)
lcolv(iconst)%lambda = lcolv(iconst)%lambda + del_lam
! Update velocities
CALL update_con_colv(vel, dtby2, lcolv(iconst), &
lambda=del_lam, &
roll=.TRUE., rmat=r_rattle, imass=imass)
END DO
END IF
! computing the constraint and value of the tolerance
DO iconst = 1, SIZE(colv_list)
IF (colv_list(iconst)%restraint%active) CYCLE
lcolv(iconst)%sigma = rattle_con_eval(lcolv(iconst)%colvar_old, vel, &
roll=.TRUE., veps=veps, rmat=r_rattle, particles=particle_set)
max_sigma = MAX(ABS(lcolv(iconst)%sigma), max_sigma)
END DO
END SUBROUTINE rattle_roll_colv_low
! **************************************************************************************************
!> \brief Update position/velocities
!> \param wrk ...
!> \param fac ...
!> \param lcolv ...
!> \param lambda ...
!> \param roll ...
!> \param rmat ...
!> \param imass ...
!> \par History
!> Teodoro Laino [teo] created 04.2006
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
SUBROUTINE update_con_colv(wrk, fac, lcolv, lambda, roll, rmat, imass)
REAL(KIND=dp), INTENT(INOUT) :: wrk(:, :)
REAL(KIND=dp), INTENT(IN) :: fac
TYPE(local_colvar_constraint_type), INTENT(IN) :: lcolv
REAL(KIND=dp), INTENT(IN) :: lambda
LOGICAL, INTENT(in), OPTIONAL :: roll
REAL(KIND=dp), DIMENSION(:, :), INTENT(IN), &
OPTIONAL :: rmat
REAL(KIND=dp), DIMENSION(:) :: imass
INTEGER :: iatm, ind
LOGICAL :: my_roll
REAL(KIND=dp), DIMENSION(3) :: f_roll
my_roll = .FALSE.
IF (PRESENT(roll)) THEN
my_roll = roll
IF (my_roll) THEN
CPASSERT(PRESENT(rmat))
END IF
END IF
DO iatm = 1, SIZE(lcolv%colvar_old%i_atom)
ind = lcolv%colvar_old%i_atom(iatm)
!
IF (my_roll) THEN
! If ROLL rotate forces
f_roll = MATMUL(rmat, lcolv%colvar_old%dsdr(:, iatm))
ELSE
f_roll = lcolv%colvar_old%dsdr(:, iatm)
END IF
wrk(:, ind) = wrk(:, ind) - imass(ind)*fac*lambda*f_roll
END DO
END SUBROUTINE update_con_colv
! **************************************************************************************************
!> \brief Evaluates the Jacobian of the collective variables constraints
!> \param colvar ...
!> \param colvar_old ...
!> \param roll ...
!> \param rmat ...
!> \param imass ...
!> \return ...
!> \par History
!> Teodoro Laino [teo] created 04.2006
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
FUNCTION eval_Jac_colvar(colvar, colvar_old, roll, rmat, imass) RESULT(res)
TYPE(colvar_type), POINTER :: colvar, colvar_old
LOGICAL, INTENT(IN), OPTIONAL :: roll
REAL(KIND=dp), DIMENSION(:, :), INTENT(IN), &
OPTIONAL :: rmat
REAL(KIND=dp), DIMENSION(:) :: imass
REAL(KIND=dp) :: res
INTEGER :: i, iatom
LOGICAL :: my_roll
REAL(KIND=dp), DIMENSION(3) :: tmp1, tmp2, tmp3
my_roll = .FALSE.
IF (PRESENT(roll)) THEN
my_roll = roll
IF (my_roll) THEN
CPASSERT(PRESENT(rmat))
END IF
END IF
res = 0.0_dp
IF (my_roll) THEN
DO i = 1, SIZE(colvar%i_atom)
iatom = colvar%i_atom(i)
tmp1 = colvar%dsdr(1:3, i)
tmp3 = colvar_old%dsdr(1:3, i)
tmp2 = MATMUL(rmat, tmp3)
res = res + DOT_PRODUCT(tmp1, tmp2)*imass(iatom)
END DO
ELSE
DO i = 1, SIZE(colvar%i_atom)
iatom = colvar%i_atom(i)
tmp1 = colvar%dsdr(1:3, i)
tmp2 = colvar_old%dsdr(1:3, i)
res = res + DOT_PRODUCT(tmp1, tmp2)*imass(iatom)
END DO
END IF
END FUNCTION eval_Jac_colvar
! **************************************************************************************************
!> \brief Evaluates the constraint for the rattle scheme
!> \param colvar ...
!> \param vel ...
!> \param roll ...
!> \param veps ...
!> \param rmat ...
!> \param particles ...
!> \return ...
!> \par History
!> Teodoro Laino [teo] created 04.2006
!> \author Teodoro Laino [tlaino]
! **************************************************************************************************
FUNCTION rattle_con_eval(colvar, vel, roll, veps, rmat, particles) RESULT(res)
TYPE(colvar_type), POINTER :: colvar
REAL(KIND=dp), INTENT(INOUT) :: vel(:, :)
LOGICAL, INTENT(IN), OPTIONAL :: roll
REAL(KIND=dp), DIMENSION(:, :), INTENT(IN), &
OPTIONAL :: veps, rmat
TYPE(particle_type), DIMENSION(:), OPTIONAL, &
POINTER :: particles
REAL(KIND=dp) :: res
INTEGER :: iatm, ind
LOGICAL :: my_roll
REAL(KIND=dp), DIMENSION(3) :: f_roll, pos, v_roll
my_roll = .FALSE.
IF (PRESENT(roll)) THEN
my_roll = roll
IF (my_roll) THEN
CPASSERT(PRESENT(rmat))
CPASSERT(PRESENT(veps))
CPASSERT(PRESENT(particles))
END IF
END IF
res = 0.0_dp
DO iatm = 1, SIZE(colvar%i_atom)
ind = colvar%i_atom(iatm)
IF (my_roll) THEN
pos = particles(ind)%r
f_roll = MATMUL(rmat, colvar%dsdr(:, iatm))
v_roll = vel(:, ind) + MATMUL(veps, pos)
ELSE
f_roll = colvar%dsdr(:, iatm)
v_roll = vel(:, ind)
END IF
res = res + DOT_PRODUCT(f_roll, v_roll)
END DO
END FUNCTION rattle_con_eval
END MODULE constraint_clv