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

Comparing trunk/OOPSE-3.0/src/UseTheForce/doForces.F90 (file contents):
Revision 2231 by chrisfen, Wed May 18 18:31:40 2005 UTC vs.
Revision 2279 by chrisfen, Tue Aug 30 18:23:50 2005 UTC

# Line 45 | Line 45
45  
46   !! @author Charles F. Vardeman II
47   !! @author Matthew Meineke
48 < !! @version $Id: doForces.F90,v 1.18 2005-05-18 18:31:40 chrisfen Exp $, $Date: 2005-05-18 18:31:40 $, $Name: not supported by cvs2svn $, $Revision: 1.18 $
48 > !! @version $Id: doForces.F90,v 1.33 2005-08-30 18:23:29 chrisfen Exp $, $Date: 2005-08-30 18:23:29 $, $Name: not supported by cvs2svn $, $Revision: 1.33 $
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
93  logical, save :: FF_uses_StickyPower
91    logical, save :: FF_uses_GayBerne
92    logical, save :: FF_uses_EAM
96  logical, save :: FF_uses_Shapes
97  logical, save :: FF_uses_FLARB
93    logical, save :: FF_uses_RF
94  
95    logical, save :: SIM_uses_DirectionalAtoms
101  logical, save :: SIM_uses_LennardJones
102  logical, save :: SIM_uses_Electrostatics
103  logical, save :: SIM_uses_Charges
104  logical, save :: SIM_uses_Dipoles
105  logical, save :: SIM_uses_Quadrupoles
106  logical, save :: SIM_uses_Sticky
107  logical, save :: SIM_uses_StickyPower
108  logical, save :: SIM_uses_GayBerne
96    logical, save :: SIM_uses_EAM
110  logical, save :: SIM_uses_Shapes
111  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
116  logical, save :: SIM_uses_molecular_cutoffs
101  
102 <  real(kind=dp), save :: rlist, rlistsq
102 >  integer, save :: corrMethod
103  
104    public :: init_FF
105 +  public :: setDefaultCutoffs
106    public :: do_force_loop
107 <  public :: setRlistDF
107 >  public :: createInteractionHash
108 >  public :: createGtypeCutoffMap
109 >  public :: getStickyCut
110 >  public :: getStickyPowerCut
111 >  public :: getGayBerneCut
112 >  public :: getEAMCut
113 >  public :: getShapeCut
114  
115   #ifdef PROFILE
116    public :: getforcetime
# Line 127 | Line 118 | module doForces
118    real :: forceTimeInitial, forceTimeFinal
119    integer :: nLoops
120   #endif
121 +  
122 +  !! Variables for cutoff mapping and interaction mapping
123 +  ! Bit hash to determine pair-pair interactions.
124 +  integer, dimension(:,:), allocatable :: InteractionHash
125 +  real(kind=dp), dimension(:), allocatable :: atypeMaxCutoff
126 +  real(kind=dp), dimension(:), allocatable :: groupMaxCutoff
127 +  integer, dimension(:), allocatable :: groupToGtype
128 +  real(kind=dp), dimension(:), allocatable :: gtypeMaxCutoff
129 +  type ::gtypeCutoffs
130 +     real(kind=dp) :: rcut
131 +     real(kind=dp) :: rcutsq
132 +     real(kind=dp) :: rlistsq
133 +  end type gtypeCutoffs
134 +  type(gtypeCutoffs), dimension(:,:), allocatable :: gtypeCutoffMap
135  
136 <  type :: Properties
137 <     logical :: is_Directional   = .false.
138 <     logical :: is_LennardJones  = .false.
134 <     logical :: is_Electrostatic = .false.
135 <     logical :: is_Charge        = .false.
136 <     logical :: is_Dipole        = .false.
137 <     logical :: is_Quadrupole    = .false.
138 <     logical :: is_Sticky        = .false.
139 <     logical :: is_StickyPower   = .false.
140 <     logical :: is_GayBerne      = .false.
141 <     logical :: is_EAM           = .false.
142 <     logical :: is_Shape         = .false.
143 <     logical :: is_FLARB         = .false.
144 <  end type Properties
145 <
146 <  type(Properties), dimension(:),allocatable :: PropertyMap
147 <
136 >  integer, save :: cutoffPolicy = TRADITIONAL_CUTOFF_POLICY
137 >  real(kind=dp),save :: defaultRcut, defaultRsw, defaultRlist
138 >  
139   contains
140  
141 <  subroutine setRlistDF( this_rlist )
151 <
152 <    real(kind=dp) :: this_rlist
153 <
154 <    rlist = this_rlist
155 <    rlistsq = rlist * rlist
156 <
157 <    haveRlist = .true.
158 <
159 <  end subroutine setRlistDF
160 <
161 <  subroutine createPropertyMap(status)
141 >  subroutine createInteractionHash(status)
142      integer :: nAtypes
143 <    integer :: status
143 >    integer, intent(out) :: status
144      integer :: i
145 <    logical :: thisProperty
146 <    real (kind=DP) :: thisDPproperty
145 >    integer :: j
146 >    integer :: iHash
147 >    !! Test Types
148 >    logical :: i_is_LJ
149 >    logical :: i_is_Elect
150 >    logical :: i_is_Sticky
151 >    logical :: i_is_StickyP
152 >    logical :: i_is_GB
153 >    logical :: i_is_EAM
154 >    logical :: i_is_Shape
155 >    logical :: j_is_LJ
156 >    logical :: j_is_Elect
157 >    logical :: j_is_Sticky
158 >    logical :: j_is_StickyP
159 >    logical :: j_is_GB
160 >    logical :: j_is_EAM
161 >    logical :: j_is_Shape
162 >    real(kind=dp) :: myRcut
163  
164 <    status = 0
164 >    status = 0  
165  
166 +    if (.not. associated(atypes)) then
167 +       call handleError("atype", "atypes was not present before call of createInteractionHash!")
168 +       status = -1
169 +       return
170 +    endif
171 +    
172      nAtypes = getSize(atypes)
173 <
173 >    
174      if (nAtypes == 0) then
175         status = -1
176         return
177      end if
178  
179 <    if (.not. allocated(PropertyMap)) then
180 <       allocate(PropertyMap(nAtypes))
179 >    if (.not. allocated(InteractionHash)) then
180 >       allocate(InteractionHash(nAtypes,nAtypes))
181      endif
182  
183 +    if (.not. allocated(atypeMaxCutoff)) then
184 +       allocate(atypeMaxCutoff(nAtypes))
185 +    endif
186 +        
187      do i = 1, nAtypes
188 <       call getElementProperty(atypes, i, "is_Directional", thisProperty)
189 <       PropertyMap(i)%is_Directional = thisProperty
188 >       call getElementProperty(atypes, i, "is_LennardJones", i_is_LJ)
189 >       call getElementProperty(atypes, i, "is_Electrostatic", i_is_Elect)
190 >       call getElementProperty(atypes, i, "is_Sticky", i_is_Sticky)
191 >       call getElementProperty(atypes, i, "is_StickyPower", i_is_StickyP)
192 >       call getElementProperty(atypes, i, "is_GayBerne", i_is_GB)
193 >       call getElementProperty(atypes, i, "is_EAM", i_is_EAM)
194 >       call getElementProperty(atypes, i, "is_Shape", i_is_Shape)
195  
196 <       call getElementProperty(atypes, i, "is_LennardJones", thisProperty)
186 <       PropertyMap(i)%is_LennardJones = thisProperty
196 >       do j = i, nAtypes
197  
198 <       call getElementProperty(atypes, i, "is_Electrostatic", thisProperty)
199 <       PropertyMap(i)%is_Electrostatic = thisProperty
198 >          iHash = 0
199 >          myRcut = 0.0_dp
200  
201 <       call getElementProperty(atypes, i, "is_Charge", thisProperty)
202 <       PropertyMap(i)%is_Charge = thisProperty
201 >          call getElementProperty(atypes, j, "is_LennardJones", j_is_LJ)
202 >          call getElementProperty(atypes, j, "is_Electrostatic", j_is_Elect)
203 >          call getElementProperty(atypes, j, "is_Sticky", j_is_Sticky)
204 >          call getElementProperty(atypes, j, "is_StickyPower", j_is_StickyP)
205 >          call getElementProperty(atypes, j, "is_GayBerne", j_is_GB)
206 >          call getElementProperty(atypes, j, "is_EAM", j_is_EAM)
207 >          call getElementProperty(atypes, j, "is_Shape", j_is_Shape)
208  
209 <       call getElementProperty(atypes, i, "is_Dipole", thisProperty)
210 <       PropertyMap(i)%is_Dipole = thisProperty
211 <
212 <       call getElementProperty(atypes, i, "is_Quadrupole", thisProperty)
213 <       PropertyMap(i)%is_Quadrupole = thisProperty
209 >          if (i_is_LJ .and. j_is_LJ) then
210 >             iHash = ior(iHash, LJ_PAIR)            
211 >          endif
212 >          
213 >          if (i_is_Elect .and. j_is_Elect) then
214 >             iHash = ior(iHash, ELECTROSTATIC_PAIR)
215 >          endif
216 >          
217 >          if (i_is_Sticky .and. j_is_Sticky) then
218 >             iHash = ior(iHash, STICKY_PAIR)
219 >          endif
220  
221 <       call getElementProperty(atypes, i, "is_Sticky", thisProperty)
222 <       PropertyMap(i)%is_Sticky = thisProperty
223 <      
203 <       call getElementProperty(atypes, i, "is_StickyPower", thisProperty)
204 <       PropertyMap(i)%is_StickyPower = thisProperty
221 >          if (i_is_StickyP .and. j_is_StickyP) then
222 >             iHash = ior(iHash, STICKYPOWER_PAIR)
223 >          endif
224  
225 <       call getElementProperty(atypes, i, "is_GayBerne", thisProperty)
226 <       PropertyMap(i)%is_GayBerne = thisProperty
225 >          if (i_is_EAM .and. j_is_EAM) then
226 >             iHash = ior(iHash, EAM_PAIR)
227 >          endif
228  
229 <       call getElementProperty(atypes, i, "is_EAM", thisProperty)
230 <       PropertyMap(i)%is_EAM = thisProperty
229 >          if (i_is_GB .and. j_is_GB) iHash = ior(iHash, GAYBERNE_PAIR)
230 >          if (i_is_GB .and. j_is_LJ) iHash = ior(iHash, GAYBERNE_LJ)
231 >          if (i_is_LJ .and. j_is_GB) iHash = ior(iHash, GAYBERNE_LJ)
232  
233 <       call getElementProperty(atypes, i, "is_Shape", thisProperty)
234 <       PropertyMap(i)%is_Shape = thisProperty
233 >          if (i_is_Shape .and. j_is_Shape) iHash = ior(iHash, SHAPE_PAIR)
234 >          if (i_is_Shape .and. j_is_LJ) iHash = ior(iHash, SHAPE_LJ)
235 >          if (i_is_LJ .and. j_is_Shape) iHash = ior(iHash, SHAPE_LJ)
236  
237 <       call getElementProperty(atypes, i, "is_FLARB", thisProperty)
238 <       PropertyMap(i)%is_FLARB = thisProperty
237 >
238 >          InteractionHash(i,j) = iHash
239 >          InteractionHash(j,i) = iHash
240 >
241 >       end do
242 >
243      end do
244  
245 <    havePropertyMap = .true.
245 >    haveInteractionHash = .true.
246 >  end subroutine createInteractionHash
247  
248 <  end subroutine createPropertyMap
248 >  subroutine createGtypeCutoffMap(stat)
249  
250 +    integer, intent(out), optional :: stat
251 +    logical :: i_is_LJ
252 +    logical :: i_is_Elect
253 +    logical :: i_is_Sticky
254 +    logical :: i_is_StickyP
255 +    logical :: i_is_GB
256 +    logical :: i_is_EAM
257 +    logical :: i_is_Shape
258 +
259 +    integer :: myStatus, nAtypes,  i, j, istart, iend, jstart, jend
260 +    integer :: n_in_i
261 +    real(kind=dp):: thisSigma, bigSigma, thisRcut
262 +    real(kind=dp) :: biggestAtypeCutoff
263 +
264 +    stat = 0
265 +    if (.not. haveInteractionHash) then
266 +       call createInteractionHash(myStatus)      
267 +       if (myStatus .ne. 0) then
268 +          write(default_error, *) 'createInteractionHash failed in doForces!'
269 +          stat = -1
270 +          return
271 +       endif
272 +    endif
273 +
274 +    nAtypes = getSize(atypes)
275 +    
276 +    do i = 1, nAtypes
277 +       if (SimHasAtype(i)) then          
278 +          call getElementProperty(atypes, i, "is_LennardJones", i_is_LJ)
279 +          call getElementProperty(atypes, i, "is_Electrostatic", i_is_Elect)
280 +          call getElementProperty(atypes, i, "is_Sticky", i_is_Sticky)
281 +          call getElementProperty(atypes, i, "is_StickyPower", i_is_StickyP)
282 +          call getElementProperty(atypes, i, "is_GayBerne", i_is_GB)
283 +          call getElementProperty(atypes, i, "is_EAM", i_is_EAM)
284 +          call getElementProperty(atypes, i, "is_Shape", i_is_Shape)
285 +          
286 +          if (i_is_LJ) then
287 +             thisRcut = getSigma(i) * 2.5_dp
288 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
289 +          endif
290 +          if (i_is_Elect) then
291 +             thisRcut = defaultRcut
292 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
293 +          endif
294 +          if (i_is_Sticky) then
295 +             thisRcut = getStickyCut(i)
296 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
297 +          endif
298 +          if (i_is_StickyP) then
299 +             thisRcut = getStickyPowerCut(i)
300 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
301 +          endif
302 +          if (i_is_GB) then
303 +             thisRcut = getGayBerneCut(i)
304 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
305 +          endif
306 +          if (i_is_EAM) then
307 +             thisRcut = getEAMCut(i)
308 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
309 +          endif
310 +          if (i_is_Shape) then
311 +             thisRcut = getShapeCut(i)
312 +             if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
313 +          endif
314 +          
315 +          if (atypeMaxCutoff(i).gt.biggestAtypeCutoff) then
316 +             biggestAtypeCutoff = atypeMaxCutoff(i)
317 +          endif
318 +       endif
319 +    enddo
320 +
321 +    istart = 1
322 + #ifdef IS_MPI
323 +    iend = nGroupsInRow
324 + #else
325 +    iend = nGroups
326 + #endif
327 +    outer: do i = istart, iend
328 +      
329 +       n_in_i = groupStartRow(i+1) - groupStartRow(i)
330 +      
331 + #ifdef IS_MPI
332 +       jstart = 1
333 +       jend = nGroupsInCol
334 + #else
335 +       jstart = i+1
336 +       jend = nGroups
337 + #endif
338 +      
339 +      
340 +      
341 +      
342 +      
343 +      
344 +    enddo outer        
345 +    
346 +     haveGtypeCutoffMap = .true.
347 +   end subroutine createGtypeCutoffMap
348 +
349 +   subroutine setDefaultCutoffs(defRcut, defRsw, defRlist, cutPolicy)
350 +     real(kind=dp),intent(in) :: defRcut, defRsw, defRlist
351 +     integer, intent(in) :: cutPolicy
352 +
353 +     defaultRcut = defRcut
354 +     defaultRsw = defRsw
355 +     defaultRlist = defRlist
356 +     cutoffPolicy = cutPolicy
357 +   end subroutine setDefaultCutoffs
358 +
359 +   subroutine setCutoffPolicy(cutPolicy)
360 +
361 +     integer, intent(in) :: cutPolicy
362 +     cutoffPolicy = cutPolicy
363 +     call createGtypeCutoffMap()
364 +
365 +   end subroutine setCutoffPolicy
366 +    
367 +    
368    subroutine setSimVariables()
369      SIM_uses_DirectionalAtoms = SimUsesDirectionalAtoms()
225    SIM_uses_LennardJones = SimUsesLennardJones()
226    SIM_uses_Electrostatics = SimUsesElectrostatics()
227    SIM_uses_Charges = SimUsesCharges()
228    SIM_uses_Dipoles = SimUsesDipoles()
229    SIM_uses_Sticky = SimUsesSticky()
230    SIM_uses_StickyPower = SimUsesStickyPower()
231    SIM_uses_GayBerne = SimUsesGayBerne()
370      SIM_uses_EAM = SimUsesEAM()
233    SIM_uses_Shapes = SimUsesShapes()
234    SIM_uses_FLARB = SimUsesFLARB()
371      SIM_uses_RF = SimUsesRF()
372      SIM_requires_postpair_calc = SimRequiresPostpairCalc()
373      SIM_requires_prepair_calc = SimRequiresPrepairCalc()
# Line 249 | Line 385 | contains
385  
386      error = 0
387  
388 <    if (.not. havePropertyMap) then
388 >    if (.not. haveInteractionHash) then      
389 >       myStatus = 0      
390 >       call createInteractionHash(myStatus)      
391 >       if (myStatus .ne. 0) then
392 >          write(default_error, *) 'createInteractionHash failed in doForces!'
393 >          error = -1
394 >          return
395 >       endif
396 >    endif
397  
398 <       myStatus = 0
399 <
400 <       call createPropertyMap(myStatus)
257 <
398 >    if (.not. haveGtypeCutoffMap) then        
399 >       myStatus = 0      
400 >       call createGtypeCutoffMap(myStatus)      
401         if (myStatus .ne. 0) then
402 <          write(default_error, *) 'createPropertyMap failed in doForces!'
402 >          write(default_error, *) 'createGtypeCutoffMap failed in doForces!'
403            error = -1
404            return
405         endif
# Line 295 | Line 438 | contains
438    end subroutine doReadyCheck
439  
440  
441 <  subroutine init_FF(use_RF_c, thisStat)
441 >  subroutine init_FF(use_RF_c, use_UW_c, use_DW_c, thisStat)
442  
443      logical, intent(in) :: use_RF_c
444 <
444 >    logical, intent(in) :: use_UW_c
445 >    logical, intent(in) :: use_DW_c
446      integer, intent(out) :: thisStat  
447      integer :: my_status, nMatches
448 +    integer :: corrMethod
449      integer, pointer :: MatchList(:) => null()
450      real(kind=dp) :: rcut, rrf, rt, dielect
451  
# Line 310 | Line 455 | contains
455      !! Fortran's version of a cast:
456      FF_uses_RF = use_RF_c
457  
458 +    !! set the electrostatic correction method
459 +    if (use_UW_c .eq. .true.) then
460 +       corrMethod = 1
461 +    elseif (use_DW_c .eq. .true.) then
462 +       corrMethod = 2
463 +    else
464 +       corrMethod = 0
465 +    endif
466 +    
467      !! init_FF is called *after* all of the atom types have been
468      !! defined in atype_module using the new_atype subroutine.
469      !!
# Line 317 | Line 471 | contains
471      !! interactions are used by the force field.    
472  
473      FF_uses_DirectionalAtoms = .false.
320    FF_uses_LennardJones = .false.
321    FF_uses_Electrostatics = .false.
322    FF_uses_Charges = .false.    
474      FF_uses_Dipoles = .false.
324    FF_uses_Sticky = .false.
325    FF_uses_StickyPower = .false.
475      FF_uses_GayBerne = .false.
476      FF_uses_EAM = .false.
328    FF_uses_Shapes = .false.
329    FF_uses_FLARB = .false.
477  
478      call getMatchingElementList(atypes, "is_Directional", .true., &
479           nMatches, MatchList)
480      if (nMatches .gt. 0) FF_uses_DirectionalAtoms = .true.
334
335    call getMatchingElementList(atypes, "is_LennardJones", .true., &
336         nMatches, MatchList)
337    if (nMatches .gt. 0) FF_uses_LennardJones = .true.
338
339    call getMatchingElementList(atypes, "is_Electrostatic", .true., &
340         nMatches, MatchList)
341    if (nMatches .gt. 0) then
342       FF_uses_Electrostatics = .true.
343    endif
344
345    call getMatchingElementList(atypes, "is_Charge", .true., &
346         nMatches, MatchList)
347    if (nMatches .gt. 0) then
348       FF_uses_Charges = .true.  
349       FF_uses_Electrostatics = .true.
350    endif
481  
482      call getMatchingElementList(atypes, "is_Dipole", .true., &
483           nMatches, MatchList)
484 <    if (nMatches .gt. 0) then
355 <       FF_uses_Dipoles = .true.
356 <       FF_uses_Electrostatics = .true.
357 <       FF_uses_DirectionalAtoms = .true.
358 <    endif
359 <
360 <    call getMatchingElementList(atypes, "is_Quadrupole", .true., &
361 <         nMatches, MatchList)
362 <    if (nMatches .gt. 0) then
363 <       FF_uses_Quadrupoles = .true.
364 <       FF_uses_Electrostatics = .true.
365 <       FF_uses_DirectionalAtoms = .true.
366 <    endif
367 <
368 <    call getMatchingElementList(atypes, "is_Sticky", .true., nMatches, &
369 <         MatchList)
370 <    if (nMatches .gt. 0) then
371 <       FF_uses_Sticky = .true.
372 <       FF_uses_DirectionalAtoms = .true.
373 <    endif
374 <
375 <    call getMatchingElementList(atypes, "is_StickyPower", .true., nMatches, &
376 <         MatchList)
377 <    if (nMatches .gt. 0) then
378 <       FF_uses_StickyPower = .true.
379 <       FF_uses_DirectionalAtoms = .true.
380 <    endif
484 >    if (nMatches .gt. 0) FF_uses_Dipoles = .true.
485      
486      call getMatchingElementList(atypes, "is_GayBerne", .true., &
487           nMatches, MatchList)
488 <    if (nMatches .gt. 0) then
385 <       FF_uses_GayBerne = .true.
386 <       FF_uses_DirectionalAtoms = .true.
387 <    endif
488 >    if (nMatches .gt. 0) FF_uses_GayBerne = .true.
489  
490      call getMatchingElementList(atypes, "is_EAM", .true., nMatches, MatchList)
491      if (nMatches .gt. 0) FF_uses_EAM = .true.
492  
392    call getMatchingElementList(atypes, "is_Shape", .true., &
393         nMatches, MatchList)
394    if (nMatches .gt. 0) then
395       FF_uses_Shapes = .true.
396       FF_uses_DirectionalAtoms = .true.
397    endif
493  
399    call getMatchingElementList(atypes, "is_FLARB", .true., &
400         nMatches, MatchList)
401    if (nMatches .gt. 0) FF_uses_FLARB = .true.
402
403    !! Assume sanity (for the sake of argument)
494      haveSaneForceField = .true.
495  
496      !! check to make sure the FF_uses_RF setting makes sense
497  
498 <    if (FF_uses_dipoles) then
498 >    if (FF_uses_Dipoles) then
499         if (FF_uses_RF) then
500            dielect = getDielect()
501            call initialize_rf(dielect)
# Line 419 | Line 509 | contains
509         endif
510      endif
511  
422    !sticky module does not contain check_sticky_FF anymore
423    !if (FF_uses_sticky) then
424    !   call check_sticky_FF(my_status)
425    !   if (my_status /= 0) then
426    !      thisStat = -1
427    !      haveSaneForceField = .false.
428    !      return
429    !   end if
430    !endif
431
512      if (FF_uses_EAM) then
513         call init_EAM_FF(my_status)
514         if (my_status /= 0) then
# Line 448 | Line 528 | contains
528         endif
529      endif
530  
451    if (FF_uses_GayBerne .and. FF_uses_LennardJones) then
452    endif
453
531      if (.not. haveNeighborList) then
532         !! Create neighbor lists
533         call expandNeighborList(nLocal, my_status)
# Line 514 | Line 591 | contains
591      integer :: localError
592      integer :: propPack_i, propPack_j
593      integer :: loopStart, loopEnd, loop
594 <
594 >    integer :: iHash
595      real(kind=dp) :: listSkin = 1.0  
596  
597      !! initialize local variables  
# Line 633 | Line 710 | contains
710               endif
711  
712   #ifdef IS_MPI
713 +             me_j = atid_col(j)
714               call get_interatomic_vector(q_group_Row(:,i), &
715                    q_group_Col(:,j), d_grp, rgrpsq)
716   #else
717 +             me_j = atid(j)
718               call get_interatomic_vector(q_group(:,i), &
719                    q_group(:,j), d_grp, rgrpsq)
720   #endif
721  
722 <             if (rgrpsq < rlistsq) then
722 >             if (rgrpsq < InteractionHash(me_i,me_j)%rListsq) then
723                  if (update_nlist) then
724                     nlist = nlist + 1
725  
# Line 858 | Line 937 | contains
937   #else
938               me_i = atid(i)
939   #endif
940 <
941 <             if (PropertyMap(me_i)%is_Dipole) then
940 >             iHash = InteractionHash(me_i,me_j)
941 >            
942 >             if ( iand(iHash, ELECTROSTATIC_PAIR).ne.0 ) then
943  
944                  mu_i = getDipoleMoment(me_i)
945  
# Line 926 | Line 1006 | contains
1006      real ( kind = dp ) :: ebalance
1007      integer :: me_i, me_j
1008  
1009 +    integer :: iHash
1010 +
1011      r = sqrt(rijsq)
1012      vpair = 0.0d0
1013      fpair(1:3) = 0.0d0
# Line 938 | Line 1020 | contains
1020      me_j = atid(j)
1021   #endif
1022  
1023 <    !    write(*,*) i, j, me_i, me_j
1023 >    iHash = InteractionHash(me_i, me_j)
1024  
1025 <    if (FF_uses_LennardJones .and. SIM_uses_LennardJones) then
1026 <
945 <       if ( PropertyMap(me_i)%is_LennardJones .and. &
946 <            PropertyMap(me_j)%is_LennardJones ) then
947 <          call do_lj_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, do_pot)
948 <       endif
949 <
1025 >    if ( iand(iHash, LJ_PAIR).ne.0 ) then
1026 >       call do_lj_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, do_pot)
1027      endif
1028  
1029 <    if (FF_uses_Electrostatics .and. SIM_uses_Electrostatics) then
1029 >    if ( iand(iHash, ELECTROSTATIC_PAIR).ne.0 ) then
1030 >       call doElectrostaticPair(i, j, d, r, rijsq, sw, vpair, fpair, &
1031 >            pot, eFrame, f, t, do_pot, corrMethod)
1032  
1033 <       if (PropertyMap(me_i)%is_Electrostatic .and. &
955 <            PropertyMap(me_j)%is_Electrostatic) then
956 <          call doElectrostaticPair(i, j, d, r, rijsq, sw, vpair, fpair, &
957 <               pot, eFrame, f, t, do_pot, ebalance)
958 <       endif
1033 >       if (FF_uses_RF .and. SIM_uses_RF) then
1034  
1035 <       if (FF_uses_dipoles .and. SIM_uses_dipoles) then      
1036 <          if ( PropertyMap(me_i)%is_Dipole .and. &
1037 <               PropertyMap(me_j)%is_Dipole) then
963 <             if (FF_uses_RF .and. SIM_uses_RF) then
964 <                call accumulate_rf(i, j, r, eFrame, sw)
965 <                call rf_correct_forces(i, j, d, r, eFrame, sw, f, fpair)
966 <             endif
967 <          endif
1035 >          ! CHECK ME (RF needs to know about all electrostatic types)
1036 >          call accumulate_rf(i, j, r, eFrame, sw)
1037 >          call rf_correct_forces(i, j, d, r, eFrame, sw, f, fpair)
1038         endif
1039 +
1040      endif
1041  
1042 +    if ( iand(iHash, STICKY_PAIR).ne.0 ) then
1043 +       call do_sticky_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1044 +            pot, A, f, t, do_pot)
1045 +    endif
1046  
1047 <    if (FF_uses_Sticky .and. SIM_uses_sticky) then
1048 <
1049 <       if ( PropertyMap(me_i)%is_Sticky .and. PropertyMap(me_j)%is_Sticky) then
975 <          call do_sticky_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
976 <               pot, A, f, t, do_pot)
977 <       endif
978 <
1047 >    if ( iand(iHash, STICKYPOWER_PAIR).ne.0 ) then
1048 >       call do_sticky_power_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1049 >            pot, A, f, t, do_pot)
1050      endif
1051  
1052 <    if (FF_uses_StickyPower .and. SIM_uses_stickypower) then
1053 <       if ( PropertyMap(me_i)%is_StickyPower .and. &
1054 <            PropertyMap(me_j)%is_StickyPower) then
984 <          call do_sticky_power_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
985 <               pot, A, f, t, do_pot, ebalance)
986 <       endif
1052 >    if ( iand(iHash, GAYBERNE_PAIR).ne.0 ) then
1053 >       call do_gb_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1054 >            pot, A, f, t, do_pot)
1055      endif
1056      
1057 <    if (FF_uses_GayBerne .and. SIM_uses_GayBerne) then
1058 <
1059 <       if ( PropertyMap(me_i)%is_GayBerne .and. &
1060 <            PropertyMap(me_j)%is_GayBerne) then
993 <          call do_gb_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
994 <               pot, A, f, t, do_pot)
995 <       endif
1057 >    if ( iand(iHash, GAYBERNE_LJ).ne.0 ) then
1058 > !      call do_gblj_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1059 > !           pot, A, f, t, do_pot)
1060 >    endif
1061  
1062 +    if ( iand(iHash, EAM_PAIR).ne.0 ) then      
1063 +       call do_eam_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, &
1064 +            do_pot)
1065      endif
1066  
1067 <    if (FF_uses_EAM .and. SIM_uses_EAM) then
1068 <
1069 <       if ( PropertyMap(me_i)%is_EAM .and. PropertyMap(me_j)%is_EAM) then
1002 <          call do_eam_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, &
1003 <               do_pot)
1004 <       endif
1005 <
1067 >    if ( iand(iHash, SHAPE_PAIR).ne.0 ) then      
1068 >       call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1069 >            pot, A, f, t, do_pot)
1070      endif
1071  
1072 <
1073 <    !    write(*,*) PropertyMap(me_i)%is_Shape,PropertyMap(me_j)%is_Shape
1074 <
1011 <    if (FF_uses_Shapes .and. SIM_uses_Shapes) then
1012 <       if ( PropertyMap(me_i)%is_Shape .and. &
1013 <            PropertyMap(me_j)%is_Shape ) then
1014 <          call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1015 <               pot, A, f, t, do_pot)
1016 <       endif
1017 <       if ( (PropertyMap(me_i)%is_Shape .and. &
1018 <            PropertyMap(me_j)%is_LennardJones) .or. &
1019 <            (PropertyMap(me_i)%is_LennardJones .and. &
1020 <            PropertyMap(me_j)%is_Shape) ) then
1021 <          call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1022 <               pot, A, f, t, do_pot)
1023 <       endif
1072 >    if ( iand(iHash, SHAPE_LJ).ne.0 ) then      
1073 >       call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1074 >            pot, A, f, t, do_pot)
1075      endif
1076 <
1076 >    
1077    end subroutine do_pair
1078  
1079    subroutine do_prepair(i, j, rijsq, d, sw, rcijsq, dc, &
# Line 1040 | Line 1091 | contains
1091      real ( kind = dp )                :: r, rc
1092      real ( kind = dp ), intent(inout) :: d(3), dc(3)
1093  
1094 <    logical :: is_EAM_i, is_EAM_j
1094 >    integer :: me_i, me_j, iHash
1095  
1045    integer :: me_i, me_j
1046
1047
1048    r = sqrt(rijsq)
1049    if (SIM_uses_molecular_cutoffs) then
1050       rc = sqrt(rcijsq)
1051    else
1052       rc = r
1053    endif
1054
1055
1096   #ifdef IS_MPI  
1097      me_i = atid_row(i)
1098      me_j = atid_col(j)  
# Line 1061 | Line 1101 | contains
1101      me_j = atid(j)  
1102   #endif
1103  
1104 <    if (FF_uses_EAM .and. SIM_uses_EAM) then
1104 >    iHash = InteractionHash(me_i, me_j)
1105  
1106 <       if (PropertyMap(me_i)%is_EAM .and. PropertyMap(me_j)%is_EAM) &
1106 >    if ( iand(iHash, EAM_PAIR).ne.0 ) then      
1107              call calc_EAM_prepair_rho(i, j, d, r, rijsq )
1068
1108      endif
1109 <
1109 >    
1110    end subroutine do_prepair
1111  
1112  
# Line 1261 | Line 1300 | contains
1300  
1301    function FF_UsesDirectionalAtoms() result(doesit)
1302      logical :: doesit
1303 <    doesit = FF_uses_DirectionalAtoms .or. FF_uses_Dipoles .or. &
1265 <         FF_uses_Quadrupoles .or. FF_uses_Sticky .or. &
1266 <         FF_uses_StickyPower .or. FF_uses_GayBerne .or. FF_uses_Shapes
1303 >    doesit = FF_uses_DirectionalAtoms
1304    end function FF_UsesDirectionalAtoms
1305  
1306    function FF_RequiresPrepairCalc() result(doesit)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines