LCOV - code coverage report
Current view: top level - src - pme_tools.F (source / functions) Hit Total Coverage
Test: CP2K Regtests (git:0de0cc2) Lines: 44 46 95.7 %
Date: 2024-03-28 07:31:50 Functions: 3 3 100.0 %

          Line data    Source code
       1             : !--------------------------------------------------------------------------------------------------!
       2             : !   CP2K: A general program to perform molecular dynamics simulations                              !
       3             : !   Copyright 2000-2024 CP2K developers group <https://cp2k.org>                                   !
       4             : !                                                                                                  !
       5             : !   SPDX-License-Identifier: GPL-2.0-or-later                                                      !
       6             : !--------------------------------------------------------------------------------------------------!
       7             : 
       8             : ! **************************************************************************************************
       9             : !> \brief Tools common both to PME and SPME
      10             : !> \par History
      11             : !>      JGH (03-May-2001) : first correctly working version
      12             : !>      teo (Feb-2007)    : Merging common routines to spme and pme
      13             : !> \author JGH (21-Mar-2001)
      14             : ! **************************************************************************************************
      15             : MODULE pme_tools
      16             : 
      17             :    USE atomic_kind_types,               ONLY: atomic_kind_type,&
      18             :                                               get_atomic_kind
      19             :    USE cell_types,                      ONLY: cell_type,&
      20             :                                               real_to_scaled
      21             :    USE kinds,                           ONLY: dp
      22             :    USE particle_types,                  ONLY: particle_type
      23             :    USE realspace_grid_types,            ONLY: realspace_grid_type
      24             : #include "./base/base_uses.f90"
      25             : 
      26             :    IMPLICIT NONE
      27             : 
      28             :    PRIVATE
      29             :    PUBLIC :: get_center, set_list
      30             : 
      31             :    CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'pme_tools'
      32             : 
      33             : CONTAINS
      34             : 
      35             : ! **************************************************************************************************
      36             : !> \brief ...
      37             : !> \param part ...
      38             : !> \param npart ...
      39             : !> \param center ...
      40             : !> \param p1 ...
      41             : !> \param rs ...
      42             : !> \param ipart ...
      43             : !> \param core_center ...
      44             : ! **************************************************************************************************
      45     9293391 :    SUBROUTINE set_list(part, npart, center, p1, rs, ipart, core_center)
      46             : 
      47             :       TYPE(particle_type), DIMENSION(:), INTENT(IN)      :: part
      48             :       INTEGER, INTENT(IN)                                :: npart
      49             :       INTEGER, DIMENSION(:, :), INTENT(IN)               :: center
      50             :       INTEGER, INTENT(OUT)                               :: p1
      51             :       TYPE(realspace_grid_type), INTENT(IN)              :: rs
      52             :       INTEGER, INTENT(INOUT)                             :: ipart
      53             :       INTEGER, DIMENSION(:, :), OPTIONAL, POINTER        :: core_center
      54             : 
      55             :       INTEGER                                            :: ndim, npos
      56             :       INTEGER, DIMENSION(3)                              :: lb, ub
      57             :       REAL(KIND=dp)                                      :: charge
      58             :       TYPE(atomic_kind_type), POINTER                    :: atomic_kind
      59             : 
      60     9293391 :       p1 = 0
      61    37173564 :       lb = rs%lb_real
      62    37173564 :       ub = rs%ub_real
      63             : 
      64    16561948 :       DO
      65    16713289 :          ipart = ipart + 1
      66    16713289 :          IF (ipart > npart) EXIT
      67    16561948 :          atomic_kind => part(ipart)%atomic_kind
      68    16561948 :          CALL get_atomic_kind(atomic_kind=atomic_kind, qeff=charge)
      69    16561948 :          IF (charge == 0.0_dp .AND. part(ipart)%shell_index == 0) CYCLE
      70    16626049 :          IF (rs%desc%parallel) THEN
      71             :             ! check if the rs grid is distributed or not
      72    56589920 :             IF (ALL(rs%desc%group_dim == 1)) THEN
      73    13629644 :                ndim = rs%desc%group_size
      74    13629644 :                npos = rs%desc%my_pos
      75             :                ! All processors work on the same grid
      76    13629644 :                IF (MOD(ipart, ndim) == npos) THEN
      77     6814822 :                   p1 = ipart
      78     6814822 :                   EXIT
      79             :                END IF
      80             :             ELSE
      81             :                ! First check if this atom is on my grid
      82     1035672 :                IF (part(ipart)%shell_index /= 0 .AND. PRESENT(core_center)) THEN
      83           0 :                   IF (in_slice(core_center(:, part(ipart)%shell_index), lb, ub)) THEN
      84           0 :                      p1 = ipart
      85             :                   END IF
      86             :                ELSE
      87     1035672 :                   IF (in_slice(center(:, ipart), lb, ub)) THEN
      88      517836 :                      p1 = ipart
      89             :                      EXIT
      90             :                   END IF
      91             :                END IF
      92             :             END IF
      93             :          ELSE
      94     1809392 :             p1 = ipart
      95     1809392 :             EXIT
      96             :          END IF
      97             :       END DO
      98             : 
      99     9293391 :    END SUBROUTINE set_list
     100             : 
     101             : ! **************************************************************************************************
     102             : !> \brief ...
     103             : !> \param pos ...
     104             : !> \param lb ...
     105             : !> \param ub ...
     106             : !> \return ...
     107             : ! **************************************************************************************************
     108     1035672 :    FUNCTION in_slice(pos, lb, ub) RESULT(internal)
     109             : 
     110             :       INTEGER, DIMENSION(3), INTENT(IN)                  :: pos, lb, ub
     111             :       LOGICAL                                            :: internal
     112             : 
     113     7249704 :       IF (ALL(pos >= lb) .AND. ALL(pos <= ub)) THEN
     114             :          internal = .TRUE.
     115             :       ELSE
     116      517836 :          internal = .FALSE.
     117             :       END IF
     118             : 
     119     1035672 :    END FUNCTION in_slice
     120             : 
     121             : ! **************************************************************************************************
     122             : !> \brief ...
     123             : !> \param part ...
     124             : !> \param box ...
     125             : !> \param center ...
     126             : !> \param delta ...
     127             : !> \param npts ...
     128             : !> \param n ...
     129             : ! **************************************************************************************************
     130       69648 :    SUBROUTINE get_center(part, box, center, delta, npts, n)
     131             : 
     132             :       TYPE(particle_type), DIMENSION(:), INTENT(IN)      :: part
     133             :       TYPE(cell_type), POINTER                           :: box
     134             :       INTEGER, DIMENSION(:, :), INTENT(OUT)              :: center
     135             :       REAL(KIND=dp), DIMENSION(:, :), INTENT(OUT)        :: delta
     136             :       INTEGER, DIMENSION(:), INTENT(IN)                  :: npts
     137             :       INTEGER, INTENT(IN)                                :: n
     138             : 
     139             :       INTEGER                                            :: ipart, mp
     140             :       REAL(KIND=dp)                                      :: rmp
     141             :       REAL(KIND=dp), DIMENSION(3)                        :: ca, gp, s
     142             : 
     143             :       ! The pbc algorithm is sensitive to numeric noise and compiler optimization because of ANINT.
     144             :       ! Therefore center and delta have to be computed simultaneously to ensure they are consistent.
     145      278592 :       mp = MAXVAL(npts(:))
     146       69648 :       rmp = REAL(mp, KIND=dp)
     147     8282486 :       DO ipart = 1, SIZE(part)
     148             :          ! compute the scaled coordinate of atom ipart
     149     8212838 :          CALL real_to_scaled(s, part(ipart)%r, box)
     150    32851352 :          s = s - ANINT(s)
     151             :          ! find the continuous ``grid'' point
     152    32851352 :          gp = REAL(npts, KIND=dp)*s
     153             :          ! find the closest grid point (on big grid)
     154     8212838 :          IF (MOD(n, 2) == 0) THEN
     155    32549320 :             center(:, ipart) = INT(gp + rmp) - mp
     156    32549320 :             ca(:) = REAL(center(:, ipart), KIND=dp) + 0.5_dp
     157             :          ELSE
     158      302032 :             center(:, ipart) = NINT(gp)
     159      302032 :             ca(:) = REAL(center(:, ipart), KIND=dp)
     160             :          END IF
     161    32851352 :          center(:, ipart) = center(:, ipart) + npts(:)/2
     162    32851352 :          center(:, ipart) = MODULO(center(:, ipart), npts(:))
     163    32851352 :          center(:, ipart) = center(:, ipart) - npts(:)/2
     164             :          ! find the distance vector
     165    32921000 :          delta(:, ipart) = gp - ca(:)
     166             :       END DO
     167             : 
     168       69648 :    END SUBROUTINE get_center
     169             : 
     170             : END MODULE pme_tools
     171             : 

Generated by: LCOV version 1.15