ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/UseTheForce/doForces.F90
(Generate patch)

Comparing trunk/OOPSE-4/src/UseTheForce/doForces.F90 (file contents):
Revision 2715 by chrisfen, Sun Apr 16 02:51:16 2006 UTC vs.
Revision 3129 by chrisfen, Fri Apr 20 18:15:48 2007 UTC

# Line 45 | Line 45
45  
46   !! @author Charles F. Vardeman II
47   !! @author Matthew Meineke
48 < !! @version $Id: doForces.F90,v 1.77 2006-04-16 02:51:16 chrisfen Exp $, $Date: 2006-04-16 02:51:16 $, $Name: not supported by cvs2svn $, $Revision: 1.77 $
48 > !! @version $Id: doForces.F90,v 1.87 2007-04-20 18:15:46 chrisfen Exp $, $Date: 2007-04-20 18:15:46 $, $Name: not supported by cvs2svn $, $Revision: 1.87 $
49  
50  
51   module doForces
# Line 64 | Line 64 | module doForces
64    use eam
65    use suttonchen
66    use status
67  use interpolation
67   #ifdef IS_MPI
68    use mpiSimulation
69   #endif
# Line 73 | Line 72 | module doForces
72    PRIVATE
73  
74   #define __FORTRAN90
76 #include "UseTheForce/fSwitchingFunction.h"
75   #include "UseTheForce/fCutoffPolicy.h"
76   #include "UseTheForce/DarkSide/fInteractionMap.h"
77   #include "UseTheForce/DarkSide/fElectrostaticSummationMethod.h"
78  
81
79    INTEGER, PARAMETER:: PREPAIR_LOOP = 1
80    INTEGER, PARAMETER:: PAIR_LOOP    = 2
81  
# Line 92 | Line 89 | module doForces
89    logical, save :: haveElectrostaticSummationMethod = .false.
90    logical, save :: haveCutoffPolicy = .false.
91    logical, save :: VisitCutoffsAfterComputing = .false.
92 +  logical, save :: do_box_dipole = .false.
93  
94    logical, save :: FF_uses_DirectionalAtoms
95    logical, save :: FF_uses_Dipoles
# Line 108 | Line 106 | module doForces
106    logical, save :: SIM_requires_postpair_calc
107    logical, save :: SIM_requires_prepair_calc
108    logical, save :: SIM_uses_PBC
109 +  logical, save :: SIM_uses_AtomicVirial
110  
111    integer, save :: electrostaticSummationMethod
112    integer, save :: cutoffPolicy = TRADITIONAL_CUTOFF_POLICY
113  
114    real(kind=dp), save :: defaultRcut, defaultRsw, largestRcut
115    real(kind=dp), save :: skinThickness
116 <  logical, save :: defaultDoShift
116 >  logical, save :: defaultDoShiftPot
117 >  logical, save :: defaultDoShiftFrc
118  
119    public :: init_FF
120    public :: setCutoffs
121    public :: cWasLame
122    public :: setElectrostaticMethod
123 +  public :: setBoxDipole
124 +  public :: getBoxDipole
125    public :: setCutoffPolicy
126    public :: setSkinThickness
127    public :: do_force_loop
# Line 150 | Line 152 | contains
152    end type gtypeCutoffs
153    type(gtypeCutoffs), dimension(:,:), allocatable :: gtypeCutoffMap
154  
155 +  real(kind=dp), dimension(3) :: boxDipole
156 +
157   contains
158  
159    subroutine createInteractionHash()
# Line 425 | Line 429 | contains
429      !! largest cutoff for any atypes present in this group.  We also
430      !! create gtypes at this point.
431      
432 <    tol = 1.0d-6
432 >    tol = 1.0e-6_dp
433      nGroupTypesRow = 0
434      nGroupTypesCol = 0
435      do i = istart, iend      
# Line 559 | Line 563 | contains
563      haveGtypeCutoffMap = .true.
564     end subroutine createGtypeCutoffMap
565  
566 <   subroutine setCutoffs(defRcut, defRsw)
566 >   subroutine setCutoffs(defRcut, defRsw, defSP, defSF)
567  
568       real(kind=dp),intent(in) :: defRcut, defRsw
569 +     logical, intent(in) :: defSP, defSF
570       character(len = statusMsgSize) :: errMsg
571       integer :: localError
572  
573       defaultRcut = defRcut
574       defaultRsw = defRsw
575      
576 <     defaultDoShift = .false.
577 <     if (abs(defaultRcut-defaultRsw) .lt. 0.0001) then
573 <        
574 <        write(errMsg, *) &
575 <             'cutoffRadius and switchingRadius are set to the same', newline &
576 <             // tab, 'value.  OOPSE will use shifted ', newline &
577 <             // tab, 'potentials instead of switching functions.'
578 <        
579 <        call handleInfo("setCutoffs", errMsg)
580 <        
581 <        defaultDoShift = .true.
582 <        
583 <     endif
576 >     defaultDoShiftPot = defSP
577 >     defaultDoShiftFrc = defSF
578  
579 +     if (abs(defaultRcut-defaultRsw) .lt. 0.0001) then
580 +        if (defaultDoShiftFrc) then
581 +           write(errMsg, *) &
582 +                'cutoffRadius and switchingRadius are set to the', newline &
583 +                // tab, 'same value.  OOPSE will use shifted force', newline &
584 +                // tab, 'potentials instead of switching functions.'
585 +          
586 +           call handleInfo("setCutoffs", errMsg)
587 +        else
588 +           write(errMsg, *) &
589 +                'cutoffRadius and switchingRadius are set to the', newline &
590 +                // tab, 'same value.  OOPSE will use shifted', newline &
591 +                // tab, 'potentials instead of switching functions.'
592 +          
593 +           call handleInfo("setCutoffs", errMsg)
594 +          
595 +           defaultDoShiftPot = .true.
596 +        endif
597 +                
598 +     endif
599 +    
600       localError = 0
601 <     call setLJDefaultCutoff( defaultRcut, defaultDoShift )
601 >     call setLJDefaultCutoff( defaultRcut, defaultDoShiftPot, &
602 >          defaultDoShiftFrc )
603       call setElectrostaticCutoffRadius( defaultRcut, defaultRsw )
604 <     call setCutoffEAM( defaultRcut, localError)
605 <     if (localError /= 0) then
606 <       write(errMsg, *) 'An error has occured in setting the EAM cutoff'
591 <       call handleError("setCutoffs", errMsg)
592 <     end if
593 <     call set_switch(GROUP_SWITCH, defaultRsw, defaultRcut)
604 >     call setCutoffEAM( defaultRcut )
605 >     call setCutoffSC( defaultRcut )
606 >     call set_switch(defaultRsw, defaultRcut)
607       call setHmatDangerousRcutValue(defaultRcut)
608 <
608 >        
609       haveDefaultCutoffs = .true.
610       haveGtypeCutoffMap = .false.
611 +
612     end subroutine setCutoffs
613  
614     subroutine cWasLame()
# Line 613 | Line 627 | contains
627       haveGtypeCutoffMap = .false.
628      
629     end subroutine setCutoffPolicy
630 <  
630 >    
631 >   subroutine setBoxDipole()
632 >
633 >     do_box_dipole = .true.
634 >    
635 >   end subroutine setBoxDipole
636 >
637 >   subroutine getBoxDipole( box_dipole )
638 >
639 >     real(kind=dp), intent(inout), dimension(3) :: box_dipole
640 >
641 >     box_dipole = boxDipole
642 >
643 >   end subroutine getBoxDipole
644 >
645     subroutine setElectrostaticMethod( thisESM )
646  
647       integer, intent(in) :: thisESM
# Line 640 | Line 668 | contains
668       SIM_requires_prepair_calc = SimRequiresPrepairCalc()
669       SIM_uses_PBC = SimUsesPBC()
670       SIM_uses_SC = SimUsesSC()
671 <    
671 >     SIM_uses_AtomicVirial = SimUsesAtomicVirial()
672 >
673       haveSIMvariables = .true.
674      
675       return
# Line 648 | Line 677 | contains
677  
678    subroutine doReadyCheck(error)
679      integer, intent(out) :: error
651
680      integer :: myStatus
681  
682      error = 0
# Line 661 | Line 689 | contains
689         call createGtypeCutoffMap()      
690      endif
691  
664
692      if (VisitCutoffsAfterComputing) then
693 <       call set_switch(GROUP_SWITCH, largestRcut, largestRcut)      
693 >       call set_switch(largestRcut, largestRcut)      
694         call setHmatDangerousRcutValue(largestRcut)
695 +       call setCutoffEAM(largestRcut)
696 +       call setCutoffSC(largestRcut)
697 +       VisitCutoffsAfterComputing = .false.
698      endif
699  
670
700      if (.not. haveSIMvariables) then
701         call setSimVariables()
702      endif
703  
675  !  if (.not. haveRlist) then
676  !     write(default_error, *) 'rList has not been set in doForces!'
677  !     error = -1
678  !     return
679  !  endif
680
704      if (.not. haveNeighborList) then
705         write(default_error, *) 'neighbor list has not been initialized in doForces!'
706         error = -1
707         return
708      end if
709 <
709 >    
710      if (.not. haveSaneForceField) then
711         write(default_error, *) 'Force Field is not sane in doForces!'
712         error = -1
713         return
714      end if
715 <
715 >    
716   #ifdef IS_MPI
717      if (.not. isMPISimSet()) then
718         write(default_error,*) "ERROR: mpiSimulation has not been initialized!"
# Line 805 | Line 828 | contains
828      integer :: istart, iend
829      integer :: ia, jb, atom1, atom2
830      integer :: nlist
831 <    real( kind = DP ) :: ratmsq, rgrpsq, rgrp, vpair, vij
831 >    real( kind = DP ) :: ratmsq, rgrpsq, rgrp, rag, vpair, vij
832      real( kind = DP ) :: sw, dswdr, swderiv, mf
833      real( kind = DP ) :: rVal
834 <    real(kind=dp),dimension(3) :: d_atm, d_grp, fpair, fij
835 <    real(kind=dp) :: rfpot, mu_i, virial
834 >    real(kind=dp),dimension(3) :: d_atm, d_grp, fpair, fij, fg, dag
835 >    real(kind=dp) :: rfpot, mu_i
836      real(kind=dp):: rCut
837      integer :: me_i, me_j, n_in_i, n_in_j
838      logical :: is_dp_i
# Line 820 | Line 843 | contains
843      integer :: loopStart, loopEnd, loop
844      integer :: iHash
845      integer :: i1
823  
846  
847 +    !! the variables for the box dipole moment
848 + #ifdef IS_MPI
849 +    integer :: pChgCount_local
850 +    integer :: nChgCount_local
851 +    real(kind=dp) :: pChg_local
852 +    real(kind=dp) :: nChg_local
853 +    real(kind=dp), dimension(3) :: pChgPos_local
854 +    real(kind=dp), dimension(3) :: nChgPos_local
855 +    real(kind=dp), dimension(3) :: dipVec_local
856 + #endif
857 +    integer :: pChgCount
858 +    integer :: nChgCount
859 +    real(kind=dp) :: pChg
860 +    real(kind=dp) :: nChg
861 +    real(kind=dp) :: chg_value
862 +    real(kind=dp), dimension(3) :: pChgPos
863 +    real(kind=dp), dimension(3) :: nChgPos
864 +    real(kind=dp), dimension(3) :: dipVec
865 +    real(kind=dp), dimension(3) :: chgVec
866 +
867 +    !! initialize box dipole variables
868 +    if (do_box_dipole) then
869 + #ifdef IS_MPI
870 +       pChg_local = 0.0_dp
871 +       nChg_local = 0.0_dp
872 +       pChgCount_local = 0
873 +       nChgCount_local = 0
874 +       do i=1, 3
875 +          pChgPos_local = 0.0_dp
876 +          nChgPos_local = 0.0_dp
877 +          dipVec_local = 0.0_dp
878 +       enddo
879 + #endif
880 +       pChg = 0.0_dp
881 +       nChg = 0.0_dp
882 +       pChgCount = 0
883 +       nChgCount = 0
884 +       chg_value = 0.0_dp
885 +      
886 +       do i=1, 3
887 +          pChgPos(i) = 0.0_dp
888 +          nChgPos(i) = 0.0_dp
889 +          dipVec(i) = 0.0_dp
890 +          chgVec(i) = 0.0_dp
891 +          boxDipole(i) = 0.0_dp
892 +       enddo
893 +    endif
894 +
895      !! initialize local variables  
896  
897   #ifdef IS_MPI
# Line 967 | Line 1037 | contains
1037  
1038                     list(nlist) = j
1039                  endif
1040 <
971 <
972 <                
1040 >                
1041                  if (rgrpsq < gtypeCutoffMap(groupToGtypeRow(i),groupToGtypeCol(j))%rCutsq) then
1042  
1043                     rCut = gtypeCutoffMap(groupToGtypeRow(i),groupToGtypeCol(j))%rCut
1044                     if (loop .eq. PAIR_LOOP) then
1045 <                      vij = 0.0d0
1046 <                      fij(1:3) = 0.0d0
1045 >                      vij = 0.0_dp
1046 >                      fij(1) = 0.0_dp
1047 >                      fij(2) = 0.0_dp
1048 >                      fij(3) = 0.0_dp
1049                     endif
1050                    
1051 <                   call get_switch(rgrpsq, sw, dswdr, rgrp, &
982 <                        group_switch, in_switching_region)
1051 >                   call get_switch(rgrpsq, sw, dswdr,rgrp, in_switching_region)
1052                    
1053                     n_in_j = groupStartCol(j+1) - groupStartCol(j)
1054                    
# Line 994 | Line 1063 | contains
1063                           if (skipThisPair(atom1, atom2))  cycle inner
1064                          
1065                           if ((n_in_i .eq. 1).and.(n_in_j .eq. 1)) then
1066 <                            d_atm(1:3) = d_grp(1:3)
1066 >                            d_atm(1) = d_grp(1)
1067 >                            d_atm(2) = d_grp(2)
1068 >                            d_atm(3) = d_grp(3)
1069                              ratmsq = rgrpsq
1070                           else
1071   #ifdef IS_MPI
# Line 1027 | Line 1098 | contains
1098                                   d_grp, rgrp, rCut)
1099   #endif
1100                              vij = vij + vpair
1101 <                            fij(1:3) = fij(1:3) + fpair(1:3)
1101 >                            fij(1) = fij(1) + fpair(1)
1102 >                            fij(2) = fij(2) + fpair(2)
1103 >                            fij(3) = fij(3) + fpair(3)
1104 >                            if (do_stress) then
1105 >                               call add_stress_tensor(d_atm, fpair, tau)
1106 >                            endif
1107                           endif
1108                        enddo inner
1109                     enddo
# Line 1042 | Line 1118 | contains
1118                           do ia=groupStartRow(i), groupStartRow(i+1)-1
1119                              atom1=groupListRow(ia)
1120                              mf = mfactRow(atom1)
1121 +                            ! fg is the force on atom ia due to cutoff group's
1122 +                            ! presence in switching region
1123 +                            fg = swderiv*d_grp*mf
1124   #ifdef IS_MPI
1125 <                            f_Row(1,atom1) = f_Row(1,atom1) + swderiv*d_grp(1)*mf
1126 <                            f_Row(2,atom1) = f_Row(2,atom1) + swderiv*d_grp(2)*mf
1127 <                            f_Row(3,atom1) = f_Row(3,atom1) + swderiv*d_grp(3)*mf
1125 >                            f_Row(1,atom1) = f_Row(1,atom1) + fg(1)
1126 >                            f_Row(2,atom1) = f_Row(2,atom1) + fg(2)
1127 >                            f_Row(3,atom1) = f_Row(3,atom1) + fg(3)
1128   #else
1129 <                            f(1,atom1) = f(1,atom1) + swderiv*d_grp(1)*mf
1130 <                            f(2,atom1) = f(2,atom1) + swderiv*d_grp(2)*mf
1131 <                            f(3,atom1) = f(3,atom1) + swderiv*d_grp(3)*mf
1129 >                            f(1,atom1) = f(1,atom1) + fg(1)
1130 >                            f(2,atom1) = f(2,atom1) + fg(2)
1131 >                            f(3,atom1) = f(3,atom1) + fg(3)
1132   #endif
1133 +                            if (n_in_i .gt. 1) then
1134 +                               if (do_stress.and.SIM_uses_AtomicVirial) then
1135 +                                  ! find the distance between the atom and the center of
1136 +                                  ! the cutoff group:
1137 + #ifdef IS_MPI
1138 +                                  call get_interatomic_vector(q_Row(:,atom1), &
1139 +                                       q_group_Row(:,i), dag, rag)
1140 + #else
1141 +                                  call get_interatomic_vector(q(:,atom1), &
1142 +                                       q_group(:,i), dag, rag)
1143 + #endif
1144 +                                  call add_stress_tensor(dag,fg,tau)
1145 +                               endif
1146 +                            endif
1147                           enddo
1148                          
1149                           do jb=groupStartCol(j), groupStartCol(j+1)-1
1150                              atom2=groupListCol(jb)
1151                              mf = mfactCol(atom2)
1152 +                            ! fg is the force on atom jb due to cutoff group's
1153 +                            ! presence in switching region
1154 +                            fg = -swderiv*d_grp*mf
1155   #ifdef IS_MPI
1156 <                            f_Col(1,atom2) = f_Col(1,atom2) - swderiv*d_grp(1)*mf
1157 <                            f_Col(2,atom2) = f_Col(2,atom2) - swderiv*d_grp(2)*mf
1158 <                            f_Col(3,atom2) = f_Col(3,atom2) - swderiv*d_grp(3)*mf
1156 >                            f_Col(1,atom2) = f_Col(1,atom2) + fg(1)
1157 >                            f_Col(2,atom2) = f_Col(2,atom2) + fg(2)
1158 >                            f_Col(3,atom2) = f_Col(3,atom2) + fg(3)
1159   #else
1160 <                            f(1,atom2) = f(1,atom2) - swderiv*d_grp(1)*mf
1161 <                            f(2,atom2) = f(2,atom2) - swderiv*d_grp(2)*mf
1162 <                            f(3,atom2) = f(3,atom2) - swderiv*d_grp(3)*mf
1160 >                            f(1,atom2) = f(1,atom2) + fg(1)
1161 >                            f(2,atom2) = f(2,atom2) + fg(2)
1162 >                            f(3,atom2) = f(3,atom2) + fg(3)
1163   #endif
1164 +                            if (n_in_j .gt. 1) then
1165 +                               if (do_stress.and.SIM_uses_AtomicVirial) then
1166 +                                  ! find the distance between the atom and the center of
1167 +                                  ! the cutoff group:
1168 + #ifdef IS_MPI
1169 +                                  call get_interatomic_vector(q_Col(:,atom2), &
1170 +                                       q_group_Col(:,j), dag, rag)
1171 + #else
1172 +                                  call get_interatomic_vector(q(:,atom2), &
1173 +                                       q_group(:,j), dag, rag)
1174 + #endif
1175 +                                  call add_stress_tensor(dag,fg,tau)                              
1176 +                               endif
1177 +                            endif                            
1178                           enddo
1179                        endif
1070
1071                      if (do_stress) call add_stress_tensor(d_grp, fij)
1180                     endif
1181                  endif
1182               endif
# Line 1188 | Line 1296 | contains
1296                  
1297                  ! prevent overcounting of the skips
1298                  if (i.lt.j) then
1299 <                   call get_interatomic_vector(q(:,i), &
1300 <                        q(:,j), d_atm, ratmsq)
1301 <                   rVal = dsqrt(ratmsq)
1194 <                   call get_switch(ratmsq, sw, dswdr, rVal, group_switch, &
1195 <                        in_switching_region)
1299 >                   call get_interatomic_vector(q(:,i), q(:,j), d_atm, ratmsq)
1300 >                   rVal = sqrt(ratmsq)
1301 >                   call get_switch(ratmsq, sw, dswdr, rVal,in_switching_region)
1302   #ifdef IS_MPI
1303                     call rf_self_excludes(i, j, sw, eFrame, d_atm, rVal, &
1304                          vpair, pot_local(ELECTROSTATIC_POT), f, t, do_pot)
# Line 1203 | Line 1309 | contains
1309                  endif
1310               enddo
1311            endif
1312 +
1313 +          if (do_box_dipole) then
1314 + #ifdef IS_MPI
1315 +             call accumulate_box_dipole(i, eFrame, q(:,i), pChg_local, &
1316 +                  nChg_local, pChgPos_local, nChgPos_local, dipVec_local, &
1317 +                  pChgCount_local, nChgCount_local)
1318 + #else
1319 +             call accumulate_box_dipole(i, eFrame, q(:,i), pChg, nChg, &
1320 +                  pChgPos, nChgPos, dipVec, pChgCount, nChgCount)
1321 + #endif
1322 +          endif
1323         enddo
1324      endif
1325 <    
1325 >
1326   #ifdef IS_MPI
1210    
1327      if (do_pot) then
1328 <       call mpi_allreduce(pot_local, pot, LR_POT_TYPES,mpi_double_precision,mpi_sum, &
1328 > #ifdef SINGLE_PRECISION
1329 >       call mpi_allreduce(pot_local, pot, LR_POT_TYPES,mpi_real,mpi_sum, &
1330              mpi_comm_world,mpi_err)            
1331 + #else
1332 +       call mpi_allreduce(pot_local, pot, LR_POT_TYPES,mpi_double_precision, &
1333 +            mpi_sum, mpi_comm_world,mpi_err)            
1334 + #endif
1335      endif
1336 <    
1337 <    if (do_stress) then
1338 <       call mpi_allreduce(tau_Temp, tau, 9,mpi_double_precision,mpi_sum, &
1339 <            mpi_comm_world,mpi_err)
1340 <       call mpi_allreduce(virial_Temp, virial,1,mpi_double_precision,mpi_sum, &
1341 <            mpi_comm_world,mpi_err)
1342 <    endif
1343 <    
1336 >        
1337 >    if (do_box_dipole) then
1338 >
1339 > #ifdef SINGLE_PRECISION
1340 >       call mpi_allreduce(pChg_local, pChg, 1, mpi_real, mpi_sum, &
1341 >            mpi_comm_world, mpi_err)
1342 >       call mpi_allreduce(nChg_local, nChg, 1, mpi_real, mpi_sum, &
1343 >            mpi_comm_world, mpi_err)
1344 >       call mpi_allreduce(pChgCount_local, pChgCount, 1, mpi_integer, mpi_sum,&
1345 >            mpi_comm_world, mpi_err)
1346 >       call mpi_allreduce(nChgCount_local, nChgCount, 1, mpi_integer, mpi_sum,&
1347 >            mpi_comm_world, mpi_err)
1348 >       call mpi_allreduce(pChgPos_local, pChgPos, 3, mpi_real, mpi_sum, &
1349 >            mpi_comm_world, mpi_err)
1350 >       call mpi_allreduce(nChgPos_local, nChgPos, 3, mpi_real, mpi_sum, &
1351 >            mpi_comm_world, mpi_err)
1352 >       call mpi_allreduce(dipVec_local, dipVec, 3, mpi_real, mpi_sum, &
1353 >            mpi_comm_world, mpi_err)
1354   #else
1355 <    
1356 <    if (do_stress) then
1357 <       tau = tau_Temp
1358 <       virial = virial_Temp
1355 >       call mpi_allreduce(pChg_local, pChg, 1, mpi_double_precision, mpi_sum, &
1356 >            mpi_comm_world, mpi_err)
1357 >       call mpi_allreduce(nChg_local, nChg, 1, mpi_double_precision, mpi_sum, &
1358 >            mpi_comm_world, mpi_err)
1359 >       call mpi_allreduce(pChgCount_local, pChgCount, 1, mpi_integer,&
1360 >            mpi_sum, mpi_comm_world, mpi_err)
1361 >       call mpi_allreduce(nChgCount_local, nChgCount, 1, mpi_integer,&
1362 >            mpi_sum, mpi_comm_world, mpi_err)
1363 >       call mpi_allreduce(pChgPos_local, pChgPos, 3, mpi_double_precision, &
1364 >            mpi_sum, mpi_comm_world, mpi_err)
1365 >       call mpi_allreduce(nChgPos_local, nChgPos, 3, mpi_double_precision, &
1366 >            mpi_sum, mpi_comm_world, mpi_err)
1367 >       call mpi_allreduce(dipVec_local, dipVec, 3, mpi_double_precision, &
1368 >            mpi_sum, mpi_comm_world, mpi_err)
1369 > #endif
1370 >
1371      endif
1372      
1373   #endif
1374 <    
1374 >
1375 >    if (do_box_dipole) then
1376 >       ! first load the accumulated dipole moment (if dipoles were present)
1377 >       boxDipole(1) = dipVec(1)
1378 >       boxDipole(2) = dipVec(2)
1379 >       boxDipole(3) = dipVec(3)
1380 >
1381 >       ! now include the dipole moment due to charges
1382 >       ! use the lesser of the positive and negative charge totals
1383 >       if (nChg .le. pChg) then
1384 >          chg_value = nChg
1385 >       else
1386 >          chg_value = pChg
1387 >       endif
1388 >      
1389 >       ! find the average positions
1390 >       if (pChgCount .gt. 0 .and. nChgCount .gt. 0) then
1391 >          pChgPos = pChgPos / pChgCount
1392 >          nChgPos = nChgPos / nChgCount
1393 >       endif
1394 >
1395 >       ! dipole is from the negative to the positive (physics notation)
1396 >       chgVec(1) = pChgPos(1) - nChgPos(1)
1397 >       chgVec(2) = pChgPos(2) - nChgPos(2)
1398 >       chgVec(3) = pChgPos(3) - nChgPos(3)
1399 >
1400 >       boxDipole(1) = boxDipole(1) + chgVec(1) * chg_value
1401 >       boxDipole(2) = boxDipole(2) + chgVec(2) * chg_value
1402 >       boxDipole(3) = boxDipole(3) + chgVec(3) * chg_value
1403 >
1404 >    endif
1405 >
1406    end subroutine do_force_loop
1407  
1408    subroutine do_pair(i, j, rijsq, d, sw, do_pot, &
# Line 1251 | Line 1425 | contains
1425      real ( kind = dp ), intent(inout) :: d_grp(3)
1426      real ( kind = dp ), intent(inout) :: rCut
1427      real ( kind = dp ) :: r
1428 +    real ( kind = dp ) :: a_k, b_k, c_k, d_k, dx
1429      integer :: me_i, me_j
1430 +    integer :: k
1431  
1432      integer :: iHash
1433  
1434      r = sqrt(rijsq)
1435 <    vpair = 0.0d0
1436 <    fpair(1:3) = 0.0d0
1435 >    
1436 >    vpair = 0.0_dp
1437 >    fpair(1:3) = 0.0_dp
1438  
1439   #ifdef IS_MPI
1440      me_i = atid_row(i)
# Line 1295 | Line 1472 | contains
1472      endif
1473      
1474      if ( iand(iHash, GAYBERNE_LJ).ne.0 ) then
1475 <       call do_gb_lj_pair(i, j, d, r, rijsq, rcut, sw, vpair, fpair, &
1475 >       call do_gb_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1476              pot(VDW_POT), A, f, t, do_pot)
1477      endif
1478      
# Line 1318 | Line 1495 | contains
1495         call do_SC_pair(i, j, d, r, rijsq, rcut, sw, vpair, fpair, &
1496              pot(METALLIC_POT), f, do_pot)
1497      endif
1321
1322    
1498      
1499    end subroutine do_pair
1500  
# Line 1342 | Line 1517 | contains
1517      integer :: me_i, me_j, iHash
1518  
1519      r = sqrt(rijsq)
1520 <
1520 >    
1521   #ifdef IS_MPI  
1522      me_i = atid_row(i)
1523      me_j = atid_col(j)  
# Line 1374 | Line 1549 | contains
1549      if (FF_uses_SC .and. SIM_uses_SC) then
1550         call calc_SC_preforce_Frho(nlocal,pot(METALLIC_POT))
1551      endif
1377
1378
1552    end subroutine do_preforce
1553  
1554  
# Line 1387 | Line 1560 | contains
1560      real( kind = dp ) :: d(3), scaled(3)
1561      integer i
1562  
1563 <    d(1:3) = q_j(1:3) - q_i(1:3)
1563 >    d(1) = q_j(1) - q_i(1)
1564 >    d(2) = q_j(2) - q_i(2)
1565 >    d(3) = q_j(3) - q_i(3)
1566  
1567      ! Wrap back into periodic box if necessary
1568      if ( SIM_uses_PBC ) then
1569  
1570         if( .not.boxIsOrthorhombic ) then
1571            ! calc the scaled coordinates.
1572 +          ! scaled = matmul(HmatInv, d)
1573  
1574 <          scaled = matmul(HmatInv, d)
1575 <
1574 >          scaled(1) = HmatInv(1,1)*d(1) + HmatInv(1,2)*d(2) + HmatInv(1,3)*d(3)
1575 >          scaled(2) = HmatInv(2,1)*d(1) + HmatInv(2,2)*d(2) + HmatInv(2,3)*d(3)
1576 >          scaled(3) = HmatInv(3,1)*d(1) + HmatInv(3,2)*d(2) + HmatInv(3,3)*d(3)
1577 >          
1578            ! wrap the scaled coordinates
1579  
1580 <          scaled = scaled  - anint(scaled)
1580 >          scaled(1) = scaled(1) - anint(scaled(1), kind=dp)
1581 >          scaled(2) = scaled(2) - anint(scaled(2), kind=dp)
1582 >          scaled(3) = scaled(3) - anint(scaled(3), kind=dp)
1583  
1404
1584            ! calc the wrapped real coordinates from the wrapped scaled
1585            ! coordinates
1586 +          ! d = matmul(Hmat,scaled)
1587 +          d(1)= Hmat(1,1)*scaled(1) + Hmat(1,2)*scaled(2) + Hmat(1,3)*scaled(3)
1588 +          d(2)= Hmat(2,1)*scaled(1) + Hmat(2,2)*scaled(2) + Hmat(2,3)*scaled(3)
1589 +          d(3)= Hmat(3,1)*scaled(1) + Hmat(3,2)*scaled(2) + Hmat(3,3)*scaled(3)
1590  
1408          d = matmul(Hmat,scaled)
1409
1591         else
1592            ! calc the scaled coordinates.
1593  
1594 <          do i = 1, 3
1595 <             scaled(i) = d(i) * HmatInv(i,i)
1594 >          scaled(1) = d(1) * HmatInv(1,1)
1595 >          scaled(2) = d(2) * HmatInv(2,2)
1596 >          scaled(3) = d(3) * HmatInv(3,3)
1597 >          
1598 >          ! wrap the scaled coordinates
1599 >          
1600 >          scaled(1) = scaled(1) - anint(scaled(1), kind=dp)
1601 >          scaled(2) = scaled(2) - anint(scaled(2), kind=dp)
1602 >          scaled(3) = scaled(3) - anint(scaled(3), kind=dp)
1603  
1604 <             ! wrap the scaled coordinates
1604 >          ! calc the wrapped real coordinates from the wrapped scaled
1605 >          ! coordinates
1606  
1607 <             scaled(i) = scaled(i) - anint(scaled(i))
1607 >          d(1) = scaled(1)*Hmat(1,1)
1608 >          d(2) = scaled(2)*Hmat(2,2)
1609 >          d(3) = scaled(3)*Hmat(3,3)
1610  
1420             ! calc the wrapped real coordinates from the wrapped scaled
1421             ! coordinates
1422
1423             d(i) = scaled(i)*Hmat(i,i)
1424          enddo
1611         endif
1612  
1613      endif
1614  
1615 <    r_sq = dot_product(d,d)
1615 >    r_sq = d(1)*d(1) + d(2)*d(2) + d(3)*d(3)
1616  
1617    end subroutine get_interatomic_vector
1618  
# Line 1464 | Line 1650 | contains
1650         call clean_EAM()
1651      endif
1652  
1467    tau_Temp = 0.0_dp
1468    virial_Temp = 0.0_dp
1653    end subroutine zero_work_arrays
1654  
1655    function skipThisPair(atom1, atom2) result(skip_it)
# Line 1570 | Line 1754 | contains
1754  
1755    !! This cleans componets of force arrays belonging only to fortran
1756  
1757 <  subroutine add_stress_tensor(dpair, fpair)
1757 >  subroutine add_stress_tensor(dpair, fpair, tau)
1758  
1759      real( kind = dp ), dimension(3), intent(in) :: dpair, fpair
1760 +    real( kind = dp ), dimension(9), intent(inout) :: tau
1761  
1762      ! because the d vector is the rj - ri vector, and
1763      ! because fx, fy, fz are the force on atom i, we need a
1764      ! negative sign here:  
1765  
1766 <    tau_Temp(1) = tau_Temp(1) - dpair(1) * fpair(1)
1767 <    tau_Temp(2) = tau_Temp(2) - dpair(1) * fpair(2)
1768 <    tau_Temp(3) = tau_Temp(3) - dpair(1) * fpair(3)
1769 <    tau_Temp(4) = tau_Temp(4) - dpair(2) * fpair(1)
1770 <    tau_Temp(5) = tau_Temp(5) - dpair(2) * fpair(2)
1771 <    tau_Temp(6) = tau_Temp(6) - dpair(2) * fpair(3)
1772 <    tau_Temp(7) = tau_Temp(7) - dpair(3) * fpair(1)
1773 <    tau_Temp(8) = tau_Temp(8) - dpair(3) * fpair(2)
1774 <    tau_Temp(9) = tau_Temp(9) - dpair(3) * fpair(3)
1766 >    tau(1) = tau(1) - dpair(1) * fpair(1)
1767 >    tau(2) = tau(2) - dpair(1) * fpair(2)
1768 >    tau(3) = tau(3) - dpair(1) * fpair(3)
1769 >    tau(4) = tau(4) - dpair(2) * fpair(1)
1770 >    tau(5) = tau(5) - dpair(2) * fpair(2)
1771 >    tau(6) = tau(6) - dpair(2) * fpair(3)
1772 >    tau(7) = tau(7) - dpair(3) * fpair(1)
1773 >    tau(8) = tau(8) - dpair(3) * fpair(2)
1774 >    tau(9) = tau(9) - dpair(3) * fpair(3)
1775  
1591    virial_Temp = virial_Temp + &
1592         (tau_Temp(1) + tau_Temp(5) + tau_Temp(9))
1593
1776    end subroutine add_stress_tensor
1777  
1778   end module doForces

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines