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 2204 by gezelter, Fri Apr 15 22:04:00 2005 UTC vs.
Revision 2274 by gezelter, Wed Aug 17 15:26:42 2005 UTC

# Line 45 | Line 45
45  
46   !! @author Charles F. Vardeman II
47   !! @author Matthew Meineke
48 < !! @version $Id: doForces.F90,v 1.13 2005-04-15 22:03:37 gezelter Exp $, $Date: 2005-04-15 22:03:37 $, $Name: not supported by cvs2svn $, $Revision: 1.13 $
48 > !! @version $Id: doForces.F90,v 1.30 2005-08-17 15:26:37 gezelter Exp $, $Date: 2005-08-17 15:26:37 $, $Name: not supported by cvs2svn $, $Revision: 1.30 $
49  
50  
51   module doForces
# Line 73 | Line 73 | module doForces
73  
74   #define __FORTRAN90
75   #include "UseTheForce/fSwitchingFunction.h"
76 + #include "UseTheForce/fCutoffPolicy.h"
77 + #include "UseTheForce/DarkSide/fInteractionMap.h"
78  
79 +
80    INTEGER, PARAMETER:: PREPAIR_LOOP = 1
81    INTEGER, PARAMETER:: PAIR_LOOP    = 2
82  
80  logical, save :: haveRlist = .false.
83    logical, save :: haveNeighborList = .false.
84    logical, save :: haveSIMvariables = .false.
83  logical, save :: havePropertyMap = .false.
85    logical, save :: haveSaneForceField = .false.
86 +  logical, save :: haveInteractionHash = .false.
87 +  logical, save :: haveGtypeCutoffMap = .false.
88  
89    logical, save :: FF_uses_DirectionalAtoms
87  logical, save :: FF_uses_LennardJones
88  logical, save :: FF_uses_Electrostatics
89  logical, save :: FF_uses_Charges
90    logical, save :: FF_uses_Dipoles
91  logical, save :: FF_uses_Quadrupoles
92  logical, save :: FF_uses_sticky
91    logical, save :: FF_uses_GayBerne
92    logical, save :: FF_uses_EAM
95  logical, save :: FF_uses_Shapes
96  logical, save :: FF_uses_FLARB
93    logical, save :: FF_uses_RF
94  
95    logical, save :: SIM_uses_DirectionalAtoms
100  logical, save :: SIM_uses_LennardJones
101  logical, save :: SIM_uses_Electrostatics
102  logical, save :: SIM_uses_Charges
103  logical, save :: SIM_uses_Dipoles
104  logical, save :: SIM_uses_Quadrupoles
105  logical, save :: SIM_uses_Sticky
106  logical, save :: SIM_uses_GayBerne
96    logical, save :: SIM_uses_EAM
108  logical, save :: SIM_uses_Shapes
109  logical, save :: SIM_uses_FLARB
97    logical, save :: SIM_uses_RF
98    logical, save :: SIM_requires_postpair_calc
99    logical, save :: SIM_requires_prepair_calc
100    logical, save :: SIM_uses_PBC
114  logical, save :: SIM_uses_molecular_cutoffs
101  
116  real(kind=dp), save :: rlist, rlistsq
117
102    public :: init_FF
103 +  public :: setDefaultCutoffs
104    public :: do_force_loop
105 <  public :: setRlistDF
105 >  public :: createInteractionHash
106 >  public :: createGtypeCutoffMap
107  
108   #ifdef PROFILE
109    public :: getforcetime
# Line 125 | Line 111 | module doForces
111    real :: forceTimeInitial, forceTimeFinal
112    integer :: nLoops
113   #endif
114 +  
115 +  !! Variables for cutoff mapping and interaction mapping
116 +  ! Bit hash to determine pair-pair interactions.
117 +  integer, dimension(:,:), allocatable :: InteractionHash
118 +  real(kind=dp), dimension(:), allocatable :: atypeMaxCutoff
119 +  real(kind=dp), dimension(:), allocatable :: groupMaxCutoff
120 +  integer, dimension(:), allocatable :: groupToGtype
121 +  real(kind=dp), dimension(:), allocatable :: gtypeMaxCutoff
122 +  type ::gtypeCutoffs
123 +     real(kind=dp) :: rcut
124 +     real(kind=dp) :: rcutsq
125 +     real(kind=dp) :: rlistsq
126 +  end type gtypeCutoffs
127 +  type(gtypeCutoffs), dimension(:,:), allocatable :: gtypeCutoffMap
128  
129 <  type :: Properties
130 <     logical :: is_Directional   = .false.
131 <     logical :: is_LennardJones  = .false.
132 <     logical :: is_Electrostatic = .false.
133 <     logical :: is_Charge        = .false.
134 <     logical :: is_Dipole        = .false.
135 <     logical :: is_Quadrupole    = .false.
136 <     logical :: is_Sticky        = .false.
137 <     logical :: is_GayBerne      = .false.
138 <     logical :: is_EAM           = .false.
139 <     logical :: is_Shape         = .false.
140 <     logical :: is_FLARB         = .false.
141 <  end type Properties
142 <
143 <  type(Properties), dimension(:),allocatable :: PropertyMap
144 <
129 >  integer, save :: cutoffPolicy = TRADITIONAL_CUTOFF_POLICY
130 >  real(kind=dp),save :: defaultRcut, defaultRsw, defaultRlist
131 >  
132   contains
133  
134 <  subroutine setRlistDF( this_rlist )
148 <
149 <    real(kind=dp) :: this_rlist
150 <
151 <    rlist = this_rlist
152 <    rlistsq = rlist * rlist
153 <
154 <    haveRlist = .true.
155 <
156 <  end subroutine setRlistDF
157 <
158 <  subroutine createPropertyMap(status)
134 >  subroutine createInteractionHash(status)
135      integer :: nAtypes
136 <    integer :: status
136 >    integer, intent(out) :: status
137      integer :: i
138 <    logical :: thisProperty
139 <    real (kind=DP) :: thisDPproperty
138 >    integer :: j
139 >    integer :: iHash
140 >    !! Test Types
141 >    logical :: i_is_LJ
142 >    logical :: i_is_Elect
143 >    logical :: i_is_Sticky
144 >    logical :: i_is_StickyP
145 >    logical :: i_is_GB
146 >    logical :: i_is_EAM
147 >    logical :: i_is_Shape
148 >    logical :: j_is_LJ
149 >    logical :: j_is_Elect
150 >    logical :: j_is_Sticky
151 >    logical :: j_is_StickyP
152 >    logical :: j_is_GB
153 >    logical :: j_is_EAM
154 >    logical :: j_is_Shape
155 >    
156 >    status = 0  
157  
158 <    status = 0
159 <
158 >    if (.not. associated(atypes)) then
159 >       call handleError("atype", "atypes was not present before call of createInteractionHash!")
160 >       status = -1
161 >       return
162 >    endif
163 >    
164      nAtypes = getSize(atypes)
165 <
165 >    
166      if (nAtypes == 0) then
167         status = -1
168         return
169      end if
170  
171 <    if (.not. allocated(PropertyMap)) then
172 <       allocate(PropertyMap(nAtypes))
171 >    if (.not. allocated(InteractionHash)) then
172 >       allocate(InteractionHash(nAtypes,nAtypes))
173      endif
174  
175 +    if (.not. allocated(atypeMaxCutoff)) then
176 +       allocate(atypeMaxCutoff(nAtypes))
177 +    endif
178 +        
179      do i = 1, nAtypes
180 <       call getElementProperty(atypes, i, "is_Directional", thisProperty)
181 <       PropertyMap(i)%is_Directional = thisProperty
180 >       call getElementProperty(atypes, i, "is_LennardJones", i_is_LJ)
181 >       call getElementProperty(atypes, i, "is_Electrostatic", i_is_Elect)
182 >       call getElementProperty(atypes, i, "is_Sticky", i_is_Sticky)
183 >       call getElementProperty(atypes, i, "is_StickyPower", i_is_StickyP)
184 >       call getElementProperty(atypes, i, "is_GayBerne", i_is_GB)
185 >       call getElementProperty(atypes, i, "is_EAM", i_is_EAM)
186 >       call getElementProperty(atypes, i, "is_Shape", i_is_Shape)
187  
188 <       call getElementProperty(atypes, i, "is_LennardJones", thisProperty)
183 <       PropertyMap(i)%is_LennardJones = thisProperty
188 >       do j = i, nAtypes
189  
190 <       call getElementProperty(atypes, i, "is_Electrostatic", thisProperty)
191 <       PropertyMap(i)%is_Electrostatic = thisProperty
190 >          iHash = 0
191 >          myRcut = 0.0_dp
192  
193 <       call getElementProperty(atypes, i, "is_Charge", thisProperty)
194 <       PropertyMap(i)%is_Charge = thisProperty
193 >          call getElementProperty(atypes, j, "is_LennardJones", j_is_LJ)
194 >          call getElementProperty(atypes, j, "is_Electrostatic", j_is_Elect)
195 >          call getElementProperty(atypes, j, "is_Sticky", j_is_Sticky)
196 >          call getElementProperty(atypes, j, "is_StickyPower", j_is_StickyP)
197 >          call getElementProperty(atypes, j, "is_GayBerne", j_is_GB)
198 >          call getElementProperty(atypes, j, "is_EAM", j_is_EAM)
199 >          call getElementProperty(atypes, j, "is_Shape", j_is_Shape)
200  
201 <       call getElementProperty(atypes, i, "is_Dipole", thisProperty)
202 <       PropertyMap(i)%is_Dipole = thisProperty
201 >          if (i_is_LJ .and. j_is_LJ) then
202 >             iHash = ior(iHash, LJ_PAIR)            
203 >          endif
204 >          
205 >          if (i_is_Elect .and. j_is_Elect) then
206 >             iHash = ior(iHash, ELECTROSTATIC_PAIR)
207 >          endif
208 >          
209 >          if (i_is_Sticky .and. j_is_Sticky) then
210 >             iHash = ior(iHash, STICKY_PAIR)
211 >          endif
212  
213 <       call getElementProperty(atypes, i, "is_Quadrupole", thisProperty)
214 <       PropertyMap(i)%is_Quadrupole = thisProperty
213 >          if (i_is_StickyP .and. j_is_StickyP) then
214 >             iHash = ior(iHash, STICKYPOWER_PAIR)
215 >          endif
216  
217 <       call getElementProperty(atypes, i, "is_Sticky", thisProperty)
218 <       PropertyMap(i)%is_Sticky = thisProperty
217 >          if (i_is_EAM .and. j_is_EAM) then
218 >             iHash = ior(iHash, EAM_PAIR)
219 >          endif
220  
221 <       call getElementProperty(atypes, i, "is_GayBerne", thisProperty)
222 <       PropertyMap(i)%is_GayBerne = thisProperty
221 >          if (i_is_GB .and. j_is_GB) iHash = ior(iHash, GAYBERNE_PAIR)
222 >          if (i_is_GB .and. j_is_LJ) iHash = ior(iHash, GAYBERNE_LJ)
223 >          if (i_is_LJ .and. j_is_GB) iHash = ior(iHash, GAYBERNE_LJ)
224  
225 <       call getElementProperty(atypes, i, "is_EAM", thisProperty)
226 <       PropertyMap(i)%is_EAM = thisProperty
225 >          if (i_is_Shape .and. j_is_Shape) iHash = ior(iHash, SHAPE_PAIR)
226 >          if (i_is_Shape .and. j_is_LJ) iHash = ior(iHash, SHAPE_LJ)
227 >          if (i_is_LJ .and. j_is_Shape) iHash = ior(iHash, SHAPE_LJ)
228  
206       call getElementProperty(atypes, i, "is_Shape", thisProperty)
207       PropertyMap(i)%is_Shape = thisProperty
229  
230 <       call getElementProperty(atypes, i, "is_FLARB", thisProperty)
231 <       PropertyMap(i)%is_FLARB = thisProperty
230 >          InteractionHash(i,j) = iHash
231 >          InteractionHash(j,i) = iHash
232 >
233 >       end do
234 >
235      end do
236  
237 <    havePropertyMap = .true.
237 >    haveInteractionHash = .true.
238 >  end subroutine createInteractionHash
239  
240 <  end subroutine createPropertyMap
240 >  subroutine createGtypeCutoffMap()
241  
242 +    logical :: i_is_LJ
243 +    logical :: i_is_Elect
244 +    logical :: i_is_Sticky
245 +    logical :: i_is_StickyP
246 +    logical :: i_is_GB
247 +    logical :: i_is_EAM
248 +    logical :: i_is_Shape
249 +
250 +    integer :: myStatus, nAtypes
251 +    real(kind=dp):: thisSigma, bigSigma
252 +
253 +    stat = 0
254 +    if (.not. haveInteractionHash) then
255 +       call createInteractionHash(myStatus)      
256 +       if (myStatus .ne. 0) then
257 +          write(default_error, *) 'createInteractionHash failed in doForces!'
258 +          stat = -1
259 +          return
260 +       endif
261 +    endif
262 +
263 +    nAtypes = getSize(atypes)
264 +    
265 +    do i = 1, nAtypes
266 +       if (SimHasAtype(i)) then          
267 +          call getElementProperty(atypes, i, "is_LennardJones", i_is_LJ)
268 +          call getElementProperty(atypes, i, "is_Electrostatic", i_is_Elect)
269 +          call getElementProperty(atypes, i, "is_Sticky", i_is_Sticky)
270 +          call getElementProperty(atypes, i, "is_StickyPower", i_is_StickyP)
271 +          call getElementProperty(atypes, i, "is_GayBerne", i_is_GB)
272 +          call getElementProperty(atypes, i, "is_EAM", i_is_EAM)
273 +          call getElementProperty(atypes, i, "is_Shape", i_is_Shape)
274 +          
275 +          if (i_is_LJ) then
276 +             thisRcut = getSigma(i) * 2.5_dp
277 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
278 +          endif
279 +          if (i_is_Elect) then
280 +             thisRcut = defaultRcut
281 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
282 +          endif
283 +          if (i_is_Sticky) then
284 +             thisRcut = getStickyCut(i)
285 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
286 +          endif
287 +          if (i_is_StickyPower) then
288 +             thisRcut = getStickyPowerCut(i)
289 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
290 +          endif
291 +          if (i_is_GayBerne) then
292 +             thisRcut = getGayBerneCut(i)
293 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
294 +          endif
295 +          if (i_is_EAM) then
296 +             thisRcut = getEAMCut(i)
297 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
298 +          endif
299 +          if (i_is_Shape) then
300 +             thisRcut = getShapeCut(i)
301 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
302 +          endif
303 +          
304 +          if (atypeMaxCutoff(i).gt.biggestAtypeCutoff) then
305 +             biggestAtypeCutoff = atypeMaxCutoff(i)
306 +          endif
307 +       endif
308 +    enddo
309 +
310 +    istart = 1
311 + #ifdef IS_MPI
312 +    iend = nGroupsInRow
313 + #else
314 +    iend = nGroups
315 + #endif
316 +    outer: do i = istart, iend
317 +
318 +       n_in_i = groupStartRow(i+1) - groupStartRow(i)
319 +
320 + #ifdef IS_MPI
321 +             jstart = 1
322 +             jend = nGroupsInCol
323 + #else
324 +             jstart = i+1
325 +             jend = nGroups
326 + #endif
327 +
328 +
329 +
330 +            
331 +
332 +
333 +
334 +     haveGtypeCutoffMap = .true.
335 +   end subroutine createGtypeCutoffMap
336 +
337 +   subroutine setDefaultCutoffs(defRcut, defRsw, defRlist, cutPolicy)
338 +     real(kind=dp),intent(in) :: defRcut, defRsw, defRlist
339 +     integer, intent(in) :: cutPolicy
340 +
341 +     defaultRcut = defRcut
342 +     defaultRsw = defRsw
343 +     defaultRlist = defRlist
344 +     cutoffPolicy = cutPolicy
345 +   end subroutine setDefaultCutoffs
346 +
347 +   subroutine setCutoffPolicy(cutPolicy)
348 +
349 +     integer, intent(in) :: cutPolicy
350 +     cutoffPolicy = cutPolicy
351 +     call createGtypeCutoffMap()
352 +
353 +   end subroutine setDefaultCutoffs
354 +    
355 +    
356    subroutine setSimVariables()
357      SIM_uses_DirectionalAtoms = SimUsesDirectionalAtoms()
219    SIM_uses_LennardJones = SimUsesLennardJones()
220    SIM_uses_Electrostatics = SimUsesElectrostatics()
221    SIM_uses_Charges = SimUsesCharges()
222    SIM_uses_Dipoles = SimUsesDipoles()
223    SIM_uses_Sticky = SimUsesSticky()
224    SIM_uses_GayBerne = SimUsesGayBerne()
358      SIM_uses_EAM = SimUsesEAM()
226    SIM_uses_Shapes = SimUsesShapes()
227    SIM_uses_FLARB = SimUsesFLARB()
359      SIM_uses_RF = SimUsesRF()
360      SIM_requires_postpair_calc = SimRequiresPostpairCalc()
361      SIM_requires_prepair_calc = SimRequiresPrepairCalc()
# Line 242 | Line 373 | contains
373  
374      error = 0
375  
376 <    if (.not. havePropertyMap) then
376 >    if (.not. haveInteractionHash) then      
377 >       myStatus = 0      
378 >       call createInteractionHash(myStatus)      
379 >       if (myStatus .ne. 0) then
380 >          write(default_error, *) 'createInteractionHash failed in doForces!'
381 >          error = -1
382 >          return
383 >       endif
384 >    endif
385  
386 <       myStatus = 0
387 <
388 <       call createPropertyMap(myStatus)
250 <
386 >    if (.not. haveGtypeCutoffMap) then        
387 >       myStatus = 0      
388 >       call createGtypeCutoffMap(myStatus)      
389         if (myStatus .ne. 0) then
390 <          write(default_error, *) 'createPropertyMap failed in doForces!'
390 >          write(default_error, *) 'createGtypeCutoffMap failed in doForces!'
391            error = -1
392            return
393         endif
# Line 310 | Line 448 | contains
448      !! interactions are used by the force field.    
449  
450      FF_uses_DirectionalAtoms = .false.
313    FF_uses_LennardJones = .false.
314    FF_uses_Electrostatics = .false.
315    FF_uses_Charges = .false.    
451      FF_uses_Dipoles = .false.
317    FF_uses_Sticky = .false.
452      FF_uses_GayBerne = .false.
453      FF_uses_EAM = .false.
320    FF_uses_Shapes = .false.
321    FF_uses_FLARB = .false.
454  
455      call getMatchingElementList(atypes, "is_Directional", .true., &
456           nMatches, MatchList)
457      if (nMatches .gt. 0) FF_uses_DirectionalAtoms = .true.
326
327    call getMatchingElementList(atypes, "is_LennardJones", .true., &
328         nMatches, MatchList)
329    if (nMatches .gt. 0) FF_uses_LennardJones = .true.
330
331    call getMatchingElementList(atypes, "is_Electrostatic", .true., &
332         nMatches, MatchList)
333    if (nMatches .gt. 0) then
334       FF_uses_Electrostatics = .true.
335    endif
336
337    call getMatchingElementList(atypes, "is_Charge", .true., &
338         nMatches, MatchList)
339    if (nMatches .gt. 0) then
340       FF_uses_Charges = .true.  
341       FF_uses_Electrostatics = .true.
342    endif
458  
459      call getMatchingElementList(atypes, "is_Dipole", .true., &
460           nMatches, MatchList)
461 <    if (nMatches .gt. 0) then
462 <       FF_uses_Dipoles = .true.
348 <       FF_uses_Electrostatics = .true.
349 <       FF_uses_DirectionalAtoms = .true.
350 <    endif
351 <
352 <    call getMatchingElementList(atypes, "is_Quadrupole", .true., &
353 <         nMatches, MatchList)
354 <    if (nMatches .gt. 0) then
355 <       FF_uses_Quadrupoles = .true.
356 <       FF_uses_Electrostatics = .true.
357 <       FF_uses_DirectionalAtoms = .true.
358 <    endif
359 <
360 <    call getMatchingElementList(atypes, "is_Sticky", .true., nMatches, &
361 <         MatchList)
362 <    if (nMatches .gt. 0) then
363 <       FF_uses_Sticky = .true.
364 <       FF_uses_DirectionalAtoms = .true.
365 <    endif
366 <
461 >    if (nMatches .gt. 0) FF_uses_Dipoles = .true.
462 >    
463      call getMatchingElementList(atypes, "is_GayBerne", .true., &
464           nMatches, MatchList)
465 <    if (nMatches .gt. 0) then
370 <       FF_uses_GayBerne = .true.
371 <       FF_uses_DirectionalAtoms = .true.
372 <    endif
465 >    if (nMatches .gt. 0) FF_uses_GayBerne = .true.
466  
467      call getMatchingElementList(atypes, "is_EAM", .true., nMatches, MatchList)
468      if (nMatches .gt. 0) FF_uses_EAM = .true.
469  
377    call getMatchingElementList(atypes, "is_Shape", .true., &
378         nMatches, MatchList)
379    if (nMatches .gt. 0) then
380       FF_uses_Shapes = .true.
381       FF_uses_DirectionalAtoms = .true.
382    endif
470  
384    call getMatchingElementList(atypes, "is_FLARB", .true., &
385         nMatches, MatchList)
386    if (nMatches .gt. 0) FF_uses_FLARB = .true.
387
388    !! Assume sanity (for the sake of argument)
471      haveSaneForceField = .true.
472  
473      !! check to make sure the FF_uses_RF setting makes sense
474  
475 <    if (FF_uses_dipoles) then
475 >    if (FF_uses_Dipoles) then
476         if (FF_uses_RF) then
477            dielect = getDielect()
478            call initialize_rf(dielect)
# Line 403 | Line 485 | contains
485            return
486         endif
487      endif
406
407    !sticky module does not contain check_sticky_FF anymore
408    !if (FF_uses_sticky) then
409    !   call check_sticky_FF(my_status)
410    !   if (my_status /= 0) then
411    !      thisStat = -1
412    !      haveSaneForceField = .false.
413    !      return
414    !   end if
415    !endif
488  
489      if (FF_uses_EAM) then
490         call init_EAM_FF(my_status)
# Line 433 | Line 505 | contains
505         endif
506      endif
507  
436    if (FF_uses_GayBerne .and. FF_uses_LennardJones) then
437    endif
438
508      if (.not. haveNeighborList) then
509         !! Create neighbor lists
510         call expandNeighborList(nLocal, my_status)
# Line 499 | Line 568 | contains
568      integer :: localError
569      integer :: propPack_i, propPack_j
570      integer :: loopStart, loopEnd, loop
571 <
571 >    integer :: iHash
572      real(kind=dp) :: listSkin = 1.0  
573  
574      !! initialize local variables  
# Line 618 | Line 687 | contains
687               endif
688  
689   #ifdef IS_MPI
690 +             me_j = atid_col(j)
691               call get_interatomic_vector(q_group_Row(:,i), &
692                    q_group_Col(:,j), d_grp, rgrpsq)
693   #else
694 +             me_j = atid(j)
695               call get_interatomic_vector(q_group(:,i), &
696                    q_group(:,j), d_grp, rgrpsq)
697   #endif
698  
699 <             if (rgrpsq < rlistsq) then
699 >             if (rgrpsq < InteractionHash(me_i,me_j)%rListsq) then
700                  if (update_nlist) then
701                     nlist = nlist + 1
702  
# Line 843 | Line 914 | contains
914   #else
915               me_i = atid(i)
916   #endif
917 <
918 <             if (PropertyMap(me_i)%is_Dipole) then
917 >             iHash = InteractionHash(me_i,me_j)
918 >            
919 >             if ( iand(iHash, ELECTROSTATIC_PAIR).ne.0 ) then
920  
921                  mu_i = getDipoleMoment(me_i)
922  
# Line 908 | Line 980 | contains
980      real ( kind = dp ), intent(inout) :: rijsq
981      real ( kind = dp )                :: r
982      real ( kind = dp ), intent(inout) :: d(3)
983 +    real ( kind = dp ) :: ebalance
984      integer :: me_i, me_j
985  
986 +    integer :: iHash
987 +
988      r = sqrt(rijsq)
989      vpair = 0.0d0
990      fpair(1:3) = 0.0d0
# Line 922 | Line 997 | contains
997      me_j = atid(j)
998   #endif
999  
1000 <    !    write(*,*) i, j, me_i, me_j
1000 >    iHash = InteractionHash(me_i, me_j)
1001  
1002 <    if (FF_uses_LennardJones .and. SIM_uses_LennardJones) then
1003 <
929 <       if ( PropertyMap(me_i)%is_LennardJones .and. &
930 <            PropertyMap(me_j)%is_LennardJones ) then
931 <          call do_lj_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, do_pot)
932 <       endif
933 <
1002 >    if ( iand(iHash, LJ_PAIR).ne.0 ) then
1003 >       call do_lj_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, do_pot)
1004      endif
1005  
1006 <    if (FF_uses_Electrostatics .and. SIM_uses_Electrostatics) then
1006 >    if ( iand(iHash, ELECTROSTATIC_PAIR).ne.0 ) then
1007 >       call doElectrostaticPair(i, j, d, r, rijsq, sw, vpair, fpair, &
1008 >            pot, eFrame, f, t, do_pot)
1009  
1010 <       if (PropertyMap(me_i)%is_Electrostatic .and. &
939 <            PropertyMap(me_j)%is_Electrostatic) then
940 <          call doElectrostaticPair(i, j, d, r, rijsq, sw, vpair, fpair, &
941 <               pot, eFrame, f, t, do_pot)
942 <       endif
1010 >       if (FF_uses_RF .and. SIM_uses_RF) then
1011  
1012 <       if (FF_uses_dipoles .and. SIM_uses_dipoles) then      
1013 <          if ( PropertyMap(me_i)%is_Dipole .and. &
1014 <               PropertyMap(me_j)%is_Dipole) then
947 <             if (FF_uses_RF .and. SIM_uses_RF) then
948 <                call accumulate_rf(i, j, r, eFrame, sw)
949 <                call rf_correct_forces(i, j, d, r, eFrame, sw, f, fpair)
950 <             endif
951 <          endif
1012 >          ! CHECK ME (RF needs to know about all electrostatic types)
1013 >          call accumulate_rf(i, j, r, eFrame, sw)
1014 >          call rf_correct_forces(i, j, d, r, eFrame, sw, f, fpair)
1015         endif
953    endif
1016  
955
956    if (FF_uses_Sticky .and. SIM_uses_sticky) then
957
958       if ( PropertyMap(me_i)%is_Sticky .and. PropertyMap(me_j)%is_Sticky) then
959          call do_sticky_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
960               pot, A, f, t, do_pot)
961       endif
962
1017      endif
1018  
1019 <
1020 <    if (FF_uses_GayBerne .and. SIM_uses_GayBerne) then
1021 <
968 <       if ( PropertyMap(me_i)%is_GayBerne .and. &
969 <            PropertyMap(me_j)%is_GayBerne) then
970 <          call do_gb_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
971 <               pot, A, f, t, do_pot)
972 <       endif
973 <
1019 >    if ( iand(iHash, STICKY_PAIR).ne.0 ) then
1020 >       call do_sticky_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1021 >            pot, A, f, t, do_pot)
1022      endif
1023  
1024 <    if (FF_uses_EAM .and. SIM_uses_EAM) then
1025 <
1026 <       if ( PropertyMap(me_i)%is_EAM .and. PropertyMap(me_j)%is_EAM) then
1027 <          call do_eam_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, &
980 <               do_pot)
981 <       endif
1024 >    if ( iand(iHash, STICKYPOWER_PAIR).ne.0 ) then
1025 >       call do_sticky_power_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1026 >            pot, A, f, t, do_pot)
1027 >    endif
1028  
1029 +    if ( iand(iHash, GAYBERNE_PAIR).ne.0 ) then
1030 +       call do_gb_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1031 +            pot, A, f, t, do_pot)
1032      endif
1033 +    
1034 +    if ( iand(iHash, GAYBERNE_LJ).ne.0 ) then
1035 + !      call do_gblj_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1036 + !           pot, A, f, t, do_pot)
1037 +    endif
1038  
1039 +    if ( iand(iHash, EAM_PAIR).ne.0 ) then      
1040 +       call do_eam_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, &
1041 +            do_pot)
1042 +    endif
1043  
1044 <    !    write(*,*) PropertyMap(me_i)%is_Shape,PropertyMap(me_j)%is_Shape
1045 <
1046 <    if (FF_uses_Shapes .and. SIM_uses_Shapes) then
989 <       if ( PropertyMap(me_i)%is_Shape .and. &
990 <            PropertyMap(me_j)%is_Shape ) then
991 <          call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
992 <               pot, A, f, t, do_pot)
993 <       endif
994 <
1044 >    if ( iand(iHash, SHAPE_PAIR).ne.0 ) then      
1045 >       call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1046 >            pot, A, f, t, do_pot)
1047      endif
1048  
1049 +    if ( iand(iHash, SHAPE_LJ).ne.0 ) then      
1050 +       call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1051 +            pot, A, f, t, do_pot)
1052 +    endif
1053 +    
1054    end subroutine do_pair
1055  
1056    subroutine do_prepair(i, j, rijsq, d, sw, rcijsq, dc, &
# Line 1011 | Line 1068 | contains
1068      real ( kind = dp )                :: r, rc
1069      real ( kind = dp ), intent(inout) :: d(3), dc(3)
1070  
1071 <    logical :: is_EAM_i, is_EAM_j
1071 >    integer :: me_i, me_j, iHash
1072  
1016    integer :: me_i, me_j
1017
1018
1019    r = sqrt(rijsq)
1020    if (SIM_uses_molecular_cutoffs) then
1021       rc = sqrt(rcijsq)
1022    else
1023       rc = r
1024    endif
1025
1026
1073   #ifdef IS_MPI  
1074      me_i = atid_row(i)
1075      me_j = atid_col(j)  
# Line 1032 | Line 1078 | contains
1078      me_j = atid(j)  
1079   #endif
1080  
1081 <    if (FF_uses_EAM .and. SIM_uses_EAM) then
1081 >    iHash = InteractionHash(me_i, me_j)
1082  
1083 <       if (PropertyMap(me_i)%is_EAM .and. PropertyMap(me_j)%is_EAM) &
1083 >    if ( iand(iHash, EAM_PAIR).ne.0 ) then      
1084              call calc_EAM_prepair_rho(i, j, d, r, rijsq )
1039
1085      endif
1086 <
1086 >    
1087    end subroutine do_prepair
1088  
1089  
# Line 1232 | Line 1277 | contains
1277  
1278    function FF_UsesDirectionalAtoms() result(doesit)
1279      logical :: doesit
1280 <    doesit = FF_uses_DirectionalAtoms .or. FF_uses_Dipoles .or. &
1236 <         FF_uses_Quadrupoles .or. FF_uses_Sticky .or. &
1237 <         FF_uses_GayBerne .or. FF_uses_Shapes
1280 >    doesit = FF_uses_DirectionalAtoms
1281    end function FF_UsesDirectionalAtoms
1282  
1283    function FF_RequiresPrepairCalc() result(doesit)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines