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 1634 by gezelter, Fri Oct 22 21:21:02 2004 UTC vs.
Revision 2354 by chuckv, Tue Oct 11 22:00:30 2005 UTC

# Line 1 | Line 1
1 + !!
2 + !! Copyright (c) 2005 The University of Notre Dame. All Rights Reserved.
3 + !!
4 + !! The University of Notre Dame grants you ("Licensee") a
5 + !! non-exclusive, royalty free, license to use, modify and
6 + !! redistribute this software in source and binary code form, provided
7 + !! that the following conditions are met:
8 + !!
9 + !! 1. Acknowledgement of the program authors must be made in any
10 + !!    publication of scientific results based in part on use of the
11 + !!    program.  An acceptable form of acknowledgement is citation of
12 + !!    the article in which the program was described (Matthew
13 + !!    A. Meineke, Charles F. Vardeman II, Teng Lin, Christopher
14 + !!    J. Fennell and J. Daniel Gezelter, "OOPSE: An Object-Oriented
15 + !!    Parallel Simulation Engine for Molecular Dynamics,"
16 + !!    J. Comput. Chem. 26, pp. 252-271 (2005))
17 + !!
18 + !! 2. Redistributions of source code must retain the above copyright
19 + !!    notice, this list of conditions and the following disclaimer.
20 + !!
21 + !! 3. Redistributions in binary form must reproduce the above copyright
22 + !!    notice, this list of conditions and the following disclaimer in the
23 + !!    documentation and/or other materials provided with the
24 + !!    distribution.
25 + !!
26 + !! This software is provided "AS IS," without a warranty of any
27 + !! kind. All express or implied conditions, representations and
28 + !! warranties, including any implied warranty of merchantability,
29 + !! fitness for a particular purpose or non-infringement, are hereby
30 + !! excluded.  The University of Notre Dame and its licensors shall not
31 + !! be liable for any damages suffered by licensee as a result of
32 + !! using, modifying or distributing the software or its
33 + !! derivatives. In no event will the University of Notre Dame or its
34 + !! licensors be liable for any lost revenue, profit or data, or for
35 + !! direct, indirect, special, consequential, incidental or punitive
36 + !! damages, however caused and regardless of the theory of liability,
37 + !! arising out of the use of or inability to use software, even if the
38 + !! University of Notre Dame has been advised of the possibility of
39 + !! such damages.
40 + !!
41 +
42   !! doForces.F90
43   !! module doForces
44   !! Calculates Long Range forces.
45  
46   !! @author Charles F. Vardeman II
47   !! @author Matthew Meineke
48 < !! @version $Id: doForces.F90,v 1.3 2004-10-22 21:20:53 gezelter Exp $, $Date: 2004-10-22 21:20:53 $, $Name: not supported by cvs2svn $, $Revision: 1.3 $
48 > !! @version $Id: doForces.F90,v 1.53 2005-10-11 22:00:30 chuckv Exp $, $Date: 2005-10-11 22:00:30 $, $Name: not supported by cvs2svn $, $Revision: 1.53 $
49  
50 +
51   module doForces
52    use force_globals
53    use simulation
# Line 14 | Line 56 | module doForces
56    use switcheroo
57    use neighborLists  
58    use lj
59 <  use sticky_pair
60 <  use dipole_dipole
61 <  use charge_charge
20 <  use reaction_field
59 >  use sticky
60 >  use electrostatic_module
61 >  use reaction_field_module
62    use gb_pair
63 +  use shapes
64    use vector_class
65    use eam
66    use status
# Line 31 | 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 + #include "UseTheForce/DarkSide/fElectrostaticSummationMethod.h"
79  
80 +
81    INTEGER, PARAMETER:: PREPAIR_LOOP = 1
82    INTEGER, PARAMETER:: PAIR_LOOP    = 2
83  
38  logical, save :: haveRlist = .false.
84    logical, save :: haveNeighborList = .false.
85    logical, save :: haveSIMvariables = .false.
41  logical, save :: havePropertyMap = .false.
86    logical, save :: haveSaneForceField = .false.
87 <  
87 >  logical, save :: haveInteractionHash = .false.
88 >  logical, save :: haveGtypeCutoffMap = .false.
89 >  logical, save :: haveDefaultCutoffs = .false.
90 >  logical, save :: haveRlist = .false.
91 >
92    logical, save :: FF_uses_DirectionalAtoms
93 <  logical, save :: FF_uses_LennardJones
46 <  logical, save :: FF_uses_Electrostatic
47 <  logical, save :: FF_uses_charges
48 <  logical, save :: FF_uses_dipoles
49 <  logical, save :: FF_uses_sticky
93 >  logical, save :: FF_uses_Dipoles
94    logical, save :: FF_uses_GayBerne
95    logical, save :: FF_uses_EAM
52  logical, save :: FF_uses_Shapes
53  logical, save :: FF_uses_FLARB
54  logical, save :: FF_uses_RF
96  
97    logical, save :: SIM_uses_DirectionalAtoms
57  logical, save :: SIM_uses_LennardJones
58  logical, save :: SIM_uses_Electrostatics
59  logical, save :: SIM_uses_Charges
60  logical, save :: SIM_uses_Dipoles
61  logical, save :: SIM_uses_Sticky
62  logical, save :: SIM_uses_GayBerne
98    logical, save :: SIM_uses_EAM
64  logical, save :: SIM_uses_Shapes
65  logical, save :: SIM_uses_FLARB
66  logical, save :: SIM_uses_RF
99    logical, save :: SIM_requires_postpair_calc
100    logical, save :: SIM_requires_prepair_calc
101    logical, save :: SIM_uses_PBC
70  logical, save :: SIM_uses_molecular_cutoffs
102  
103 <  real(kind=dp), save :: rlist, rlistsq
103 >  integer, save :: electrostaticSummationMethod
104  
105    public :: init_FF
106 +  public :: setDefaultCutoffs
107    public :: do_force_loop
108 <  public :: setRlistDF
108 >  public :: createInteractionHash
109 >  public :: createGtypeCutoffMap
110 >  public :: getStickyCut
111 >  public :: getStickyPowerCut
112 >  public :: getGayBerneCut
113 >  public :: getEAMCut
114 >  public :: getShapeCut
115  
116   #ifdef PROFILE
117    public :: getforcetime
# Line 81 | Line 119 | module doForces
119    real :: forceTimeInitial, forceTimeFinal
120    integer :: nLoops
121   #endif
122 +  
123 +  !! Variables for cutoff mapping and interaction mapping
124 +  ! Bit hash to determine pair-pair interactions.
125 +  integer, dimension(:,:), allocatable :: InteractionHash
126 +  real(kind=dp), dimension(:), allocatable :: atypeMaxCutoff
127 +  real(kind=dp), dimension(:), allocatable, target :: groupMaxCutoffRow
128 +  real(kind=dp), dimension(:), pointer :: groupMaxCutoffCol
129  
130 <  type :: Properties
131 <     logical :: is_Directional   = .false.
87 <     logical :: is_LennardJones  = .false.
88 <     logical :: is_Electrostatic = .false.
89 <     logical :: is_Charge        = .false.
90 <     logical :: is_Dipole        = .false.
91 <     logical :: is_Sticky        = .false.
92 <     logical :: is_GayBerne      = .false.
93 <     logical :: is_EAM           = .false.
94 <     logical :: is_Shape         = .false.
95 <     logical :: is_FLARB         = .false.
96 <  end type Properties
130 >  integer, dimension(:), allocatable, target :: groupToGtypeRow
131 >  integer, dimension(:), pointer :: groupToGtypeCol => null()
132  
133 <  type(Properties), dimension(:),allocatable :: PropertyMap
133 >  real(kind=dp), dimension(:), allocatable,target :: gtypeMaxCutoffRow
134 >  real(kind=dp), dimension(:), pointer :: gtypeMaxCutoffCol
135 >  type ::gtypeCutoffs
136 >     real(kind=dp) :: rcut
137 >     real(kind=dp) :: rcutsq
138 >     real(kind=dp) :: rlistsq
139 >  end type gtypeCutoffs
140 >  type(gtypeCutoffs), dimension(:,:), allocatable :: gtypeCutoffMap
141  
142 +  integer, save :: cutoffPolicy = TRADITIONAL_CUTOFF_POLICY
143 +  real(kind=dp),save :: defaultRcut, defaultRsw, defaultRlist
144 +  real(kind=dp),save :: listSkin
145 +  
146   contains
147  
148 <  subroutine setRlistDF( this_rlist )
103 <    
104 <    real(kind=dp) :: this_rlist
105 <
106 <    rlist = this_rlist
107 <    rlistsq = rlist * rlist
108 <    
109 <    haveRlist = .true.
110 <
111 <  end subroutine setRlistDF    
112 <
113 <  subroutine createPropertyMap(status)
148 >  subroutine createInteractionHash(status)
149      integer :: nAtypes
150 <    integer :: status
150 >    integer, intent(out) :: status
151      integer :: i
152 <    logical :: thisProperty
153 <    real (kind=DP) :: thisDPproperty
152 >    integer :: j
153 >    integer :: iHash
154 >    !! Test Types
155 >    logical :: i_is_LJ
156 >    logical :: i_is_Elect
157 >    logical :: i_is_Sticky
158 >    logical :: i_is_StickyP
159 >    logical :: i_is_GB
160 >    logical :: i_is_EAM
161 >    logical :: i_is_Shape
162 >    logical :: j_is_LJ
163 >    logical :: j_is_Elect
164 >    logical :: j_is_Sticky
165 >    logical :: j_is_StickyP
166 >    logical :: j_is_GB
167 >    logical :: j_is_EAM
168 >    logical :: j_is_Shape
169 >    real(kind=dp) :: myRcut
170  
171 <    status = 0
171 >    status = 0  
172  
173 +    if (.not. associated(atypes)) then
174 +       call handleError("atype", "atypes was not present before call of createInteractionHash!")
175 +       status = -1
176 +       return
177 +    endif
178 +    
179      nAtypes = getSize(atypes)
180 <
180 >    
181      if (nAtypes == 0) then
182         status = -1
183         return
184      end if
185 <        
186 <    if (.not. allocated(PropertyMap)) then
187 <       allocate(PropertyMap(nAtypes))
185 >
186 >    if (.not. allocated(InteractionHash)) then
187 >       allocate(InteractionHash(nAtypes,nAtypes))
188 >    else
189 >       deallocate(InteractionHash)
190 >       allocate(InteractionHash(nAtypes,nAtypes))
191      endif
192  
193 +    if (.not. allocated(atypeMaxCutoff)) then
194 +       allocate(atypeMaxCutoff(nAtypes))
195 +    else
196 +       deallocate(atypeMaxCutoff)
197 +       allocate(atypeMaxCutoff(nAtypes))
198 +    endif
199 +        
200      do i = 1, nAtypes
201 <       call getElementProperty(atypes, i, "is_Directional", thisProperty)
202 <       PropertyMap(i)%is_Directional = thisProperty
201 >       call getElementProperty(atypes, i, "is_LennardJones", i_is_LJ)
202 >       call getElementProperty(atypes, i, "is_Electrostatic", i_is_Elect)
203 >       call getElementProperty(atypes, i, "is_Sticky", i_is_Sticky)
204 >       call getElementProperty(atypes, i, "is_StickyPower", i_is_StickyP)
205 >       call getElementProperty(atypes, i, "is_GayBerne", i_is_GB)
206 >       call getElementProperty(atypes, i, "is_EAM", i_is_EAM)
207 >       call getElementProperty(atypes, i, "is_Shape", i_is_Shape)
208  
209 <       call getElementProperty(atypes, i, "is_LennardJones", thisProperty)
138 <       PropertyMap(i)%is_LennardJones = thisProperty
139 <      
140 <       call getElementProperty(atypes, i, "is_Electrostatic", thisProperty)
141 <       PropertyMap(i)%is_Electrostatic = thisProperty
209 >       do j = i, nAtypes
210  
211 <       call getElementProperty(atypes, i, "is_Charge", thisProperty)
212 <       PropertyMap(i)%is_Charge = thisProperty
145 <      
146 <       call getElementProperty(atypes, i, "is_Dipole", thisProperty)
147 <       PropertyMap(i)%is_Dipole = thisProperty
211 >          iHash = 0
212 >          myRcut = 0.0_dp
213  
214 <       call getElementProperty(atypes, i, "is_Sticky", thisProperty)
215 <       PropertyMap(i)%is_Sticky = thisProperty
214 >          call getElementProperty(atypes, j, "is_LennardJones", j_is_LJ)
215 >          call getElementProperty(atypes, j, "is_Electrostatic", j_is_Elect)
216 >          call getElementProperty(atypes, j, "is_Sticky", j_is_Sticky)
217 >          call getElementProperty(atypes, j, "is_StickyPower", j_is_StickyP)
218 >          call getElementProperty(atypes, j, "is_GayBerne", j_is_GB)
219 >          call getElementProperty(atypes, j, "is_EAM", j_is_EAM)
220 >          call getElementProperty(atypes, j, "is_Shape", j_is_Shape)
221  
222 <       call getElementProperty(atypes, i, "is_GayBerne", thisProperty)
223 <       PropertyMap(i)%is_GayBerne = thisProperty
222 >          if (i_is_LJ .and. j_is_LJ) then
223 >             iHash = ior(iHash, LJ_PAIR)            
224 >          endif
225 >          
226 >          if (i_is_Elect .and. j_is_Elect) then
227 >             iHash = ior(iHash, ELECTROSTATIC_PAIR)
228 >          endif
229 >          
230 >          if (i_is_Sticky .and. j_is_Sticky) then
231 >             iHash = ior(iHash, STICKY_PAIR)
232 >          endif
233  
234 <       call getElementProperty(atypes, i, "is_EAM", thisProperty)
235 <       PropertyMap(i)%is_EAM = thisProperty
234 >          if (i_is_StickyP .and. j_is_StickyP) then
235 >             iHash = ior(iHash, STICKYPOWER_PAIR)
236 >          endif
237  
238 <       call getElementProperty(atypes, i, "is_Shape", thisProperty)
239 <       PropertyMap(i)%is_Shape = thisProperty
238 >          if (i_is_EAM .and. j_is_EAM) then
239 >             iHash = ior(iHash, EAM_PAIR)
240 >          endif
241  
242 <       call getElementProperty(atypes, i, "is_FLARB", thisProperty)
243 <       PropertyMap(i)%is_FLARB = thisProperty
242 >          if (i_is_GB .and. j_is_GB) iHash = ior(iHash, GAYBERNE_PAIR)
243 >          if (i_is_GB .and. j_is_LJ) iHash = ior(iHash, GAYBERNE_LJ)
244 >          if (i_is_LJ .and. j_is_GB) iHash = ior(iHash, GAYBERNE_LJ)
245 >
246 >          if (i_is_Shape .and. j_is_Shape) iHash = ior(iHash, SHAPE_PAIR)
247 >          if (i_is_Shape .and. j_is_LJ) iHash = ior(iHash, SHAPE_LJ)
248 >          if (i_is_LJ .and. j_is_Shape) iHash = ior(iHash, SHAPE_LJ)
249 >
250 >
251 >          InteractionHash(i,j) = iHash
252 >          InteractionHash(j,i) = iHash
253 >
254 >       end do
255 >
256      end do
257  
258 <    havePropertyMap = .true.
258 >    haveInteractionHash = .true.
259 >  end subroutine createInteractionHash
260  
261 <  end subroutine createPropertyMap
261 >  subroutine createGtypeCutoffMap(stat)
262 >
263 >    integer, intent(out), optional :: stat
264 >    logical :: i_is_LJ
265 >    logical :: i_is_Elect
266 >    logical :: i_is_Sticky
267 >    logical :: i_is_StickyP
268 >    logical :: i_is_GB
269 >    logical :: i_is_EAM
270 >    logical :: i_is_Shape
271 >    logical :: GtypeFound
272 >
273 >    integer :: myStatus, nAtypes,  i, j, istart, iend, jstart, jend
274 >    integer :: n_in_i, me_i, ia, g, atom1, ja, n_in_j,me_j
275 >    integer :: nGroupsInRow
276 >    integer :: nGroupsInCol
277 >    integer :: nGroupTypesRow,nGroupTypesCol
278 >    real(kind=dp):: thisSigma, bigSigma, thisRcut, tradRcut, tol, skin
279 >    real(kind=dp) :: biggestAtypeCutoff
280 >
281 >    stat = 0
282 >    if (.not. haveInteractionHash) then
283 >       call createInteractionHash(myStatus)      
284 >       if (myStatus .ne. 0) then
285 >          write(default_error, *) 'createInteractionHash failed in doForces!'
286 >          stat = -1
287 >          return
288 >       endif
289 >    endif
290 > #ifdef IS_MPI
291 >    nGroupsInRow = getNgroupsInRow(plan_group_row)
292 >    nGroupsInCol = getNgroupsInCol(plan_group_col)
293 > #endif
294 >    nAtypes = getSize(atypes)
295 > ! Set all of the initial cutoffs to zero.
296 >    atypeMaxCutoff = 0.0_dp
297 >    do i = 1, nAtypes
298 >       if (SimHasAtype(i)) then    
299 >          call getElementProperty(atypes, i, "is_LennardJones", i_is_LJ)
300 >          call getElementProperty(atypes, i, "is_Electrostatic", i_is_Elect)
301 >          call getElementProperty(atypes, i, "is_Sticky", i_is_Sticky)
302 >          call getElementProperty(atypes, i, "is_StickyPower", i_is_StickyP)
303 >          call getElementProperty(atypes, i, "is_GayBerne", i_is_GB)
304 >          call getElementProperty(atypes, i, "is_EAM", i_is_EAM)
305 >          call getElementProperty(atypes, i, "is_Shape", i_is_Shape)
306 >          
307 >
308 >          if (haveDefaultCutoffs) then
309 >             atypeMaxCutoff(i) = defaultRcut
310 >          else
311 >             if (i_is_LJ) then          
312 >                thisRcut = getSigma(i) * 2.5_dp
313 >                if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
314 >             endif
315 >             if (i_is_Elect) then
316 >                thisRcut = defaultRcut
317 >                if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
318 >             endif
319 >             if (i_is_Sticky) then
320 >                thisRcut = getStickyCut(i)
321 >                if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
322 >             endif
323 >             if (i_is_StickyP) then
324 >                thisRcut = getStickyPowerCut(i)
325 >                if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
326 >             endif
327 >             if (i_is_GB) then
328 >                thisRcut = getGayBerneCut(i)
329 >                if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
330 >             endif
331 >             if (i_is_EAM) then
332 >                thisRcut = getEAMCut(i)
333 >                if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
334 >             endif
335 >             if (i_is_Shape) then
336 >                thisRcut = getShapeCut(i)
337 >                if (thisRCut .gt. atypeMaxCutoff(i)) atypeMaxCutoff(i) = thisRCut
338 >             endif
339 >          endif
340 >          
341 >          
342 >          if (atypeMaxCutoff(i).gt.biggestAtypeCutoff) then
343 >             biggestAtypeCutoff = atypeMaxCutoff(i)
344 >          endif
345 >
346 >       endif
347 >    enddo
348 >  
349 >
350 >    
351 >    istart = 1
352 >    jstart = 1
353 > #ifdef IS_MPI
354 >    iend = nGroupsInRow
355 >    jend = nGroupsInCol
356 > #else
357 >    iend = nGroups
358 >    jend = nGroups
359 > #endif
360 >    
361 >    !! allocate the groupToGtype and gtypeMaxCutoff here.
362 >    if(.not.allocated(groupToGtypeRow)) then
363 >     !  allocate(groupToGtype(iend))
364 >       allocate(groupToGtypeRow(iend))
365 >    else
366 >       deallocate(groupToGtypeRow)
367 >       allocate(groupToGtypeRow(iend))
368 >    endif
369 >    if(.not.allocated(groupMaxCutoffRow)) then
370 >       allocate(groupMaxCutoffRow(iend))
371 >    else
372 >       deallocate(groupMaxCutoffRow)
373 >       allocate(groupMaxCutoffRow(iend))
374 >    end if
375 >
376 >    if(.not.allocated(gtypeMaxCutoffRow)) then
377 >       allocate(gtypeMaxCutoffRow(iend))
378 >    else
379 >       deallocate(gtypeMaxCutoffRow)
380 >       allocate(gtypeMaxCutoffRow(iend))
381 >    endif
382 >
383 >
384 > #ifdef IS_MPI
385 >       ! We only allocate new storage if we are in MPI because Ncol /= Nrow
386 >    if(.not.associated(groupToGtypeCol)) then
387 >       allocate(groupToGtypeCol(jend))
388 >    else
389 >       deallocate(groupToGtypeCol)
390 >       allocate(groupToGtypeCol(jend))
391 >    end if
392 >
393 >    if(.not.associated(groupToGtypeCol)) then
394 >       allocate(groupToGtypeCol(jend))
395 >    else
396 >       deallocate(groupToGtypeCol)
397 >       allocate(groupToGtypeCol(jend))
398 >    end if
399 >    if(.not.associated(gtypeMaxCutoffCol)) then
400 >       allocate(gtypeMaxCutoffCol(jend))
401 >    else
402 >       deallocate(gtypeMaxCutoffCol)      
403 >       allocate(gtypeMaxCutoffCol(jend))
404 >    end if
405 >
406 >       groupMaxCutoffCol = 0.0_dp
407 >       gtypeMaxCutoffCol = 0.0_dp
408 >
409 > #endif
410 >       groupMaxCutoffRow = 0.0_dp
411 >       gtypeMaxCutoffRow = 0.0_dp
412 >
413 >
414 >    !! first we do a single loop over the cutoff groups to find the
415 >    !! largest cutoff for any atypes present in this group.  We also
416 >    !! create gtypes at this point.
417 >    
418 >    tol = 1.0d-6
419 >    nGroupTypesRow = 0
420 >
421 >    do i = istart, iend      
422 >       n_in_i = groupStartRow(i+1) - groupStartRow(i)
423 >       groupMaxCutoffRow(i) = 0.0_dp
424 >       do ia = groupStartRow(i), groupStartRow(i+1)-1
425 >          atom1 = groupListRow(ia)
426 > #ifdef IS_MPI
427 >          me_i = atid_row(atom1)
428 > #else
429 >          me_i = atid(atom1)
430 > #endif          
431 >          if (atypeMaxCutoff(me_i).gt.groupMaxCutoffRow(i)) then
432 >             groupMaxCutoffRow(i)=atypeMaxCutoff(me_i)
433 >          endif          
434 >       enddo
435  
436 +       if (nGroupTypesRow.eq.0) then
437 +          nGroupTypesRow = nGroupTypesRow + 1
438 +          gtypeMaxCutoffRow(nGroupTypesRow) = groupMaxCutoffRow(i)
439 +          groupToGtypeRow(i) = nGroupTypesRow
440 +       else
441 +          GtypeFound = .false.
442 +          do g = 1, nGroupTypesRow
443 +             if ( abs(groupMaxCutoffRow(i) - gtypeMaxCutoffRow(g)).lt.tol) then
444 +                groupToGtypeRow(i) = g
445 +                GtypeFound = .true.
446 +             endif
447 +          enddo
448 +          if (.not.GtypeFound) then            
449 +             nGroupTypesRow = nGroupTypesRow + 1
450 +             gtypeMaxCutoffRow(nGroupTypesRow) = groupMaxCutoffRow(i)
451 +             groupToGtypeRow(i) = nGroupTypesRow
452 +          endif
453 +       endif
454 +    enddo    
455 +
456 + #ifdef IS_MPI
457 +    do j = jstart, jend      
458 +       n_in_j = groupStartCol(j+1) - groupStartCol(j)
459 +       groupMaxCutoffCol(j) = 0.0_dp
460 +       do ja = groupStartCol(j), groupStartCol(j+1)-1
461 +          atom1 = groupListCol(ja)
462 +
463 +          me_j = atid_col(atom1)
464 +
465 +          if (atypeMaxCutoff(me_j).gt.groupMaxCutoffCol(j)) then
466 +             groupMaxCutoffCol(j)=atypeMaxCutoff(me_j)
467 +          endif          
468 +       enddo
469 +
470 +       if (nGroupTypesCol.eq.0) then
471 +          nGroupTypesCol = nGroupTypesCol + 1
472 +          gtypeMaxCutoffCol(nGroupTypesCol) = groupMaxCutoffCol(j)
473 +          groupToGtypeCol(j) = nGroupTypesCol
474 +       else
475 +          GtypeFound = .false.
476 +          do g = 1, nGroupTypesCol
477 +             if ( abs(groupMaxCutoffCol(j) - gtypeMaxCutoffCol(g)).lt.tol) then
478 +                groupToGtypeCol(j) = g
479 +                GtypeFound = .true.
480 +             endif
481 +          enddo
482 +          if (.not.GtypeFound) then            
483 +             nGroupTypesCol = nGroupTypesCol + 1
484 +             gtypeMaxCutoffCol(nGroupTypesCol) = groupMaxCutoffCol(j)
485 +             groupToGtypeCol(j) = nGroupTypesCol
486 +          endif
487 +       endif
488 +    enddo    
489 +
490 + #else
491 + ! Set pointers to information we just found
492 +    nGroupTypesCol = nGroupTypesRow
493 +    groupToGtypeCol => groupToGtypeRow
494 +    gtypeMaxCutoffCol => gtypeMaxCutoffRow
495 +    groupMaxCutoffCol => groupMaxCutoffRow
496 + #endif
497 +
498 +
499 +
500 +
501 +
502 +    !! allocate the gtypeCutoffMap here.
503 +    allocate(gtypeCutoffMap(nGroupTypesRow,nGroupTypesCol))
504 +    !! then we do a double loop over all the group TYPES to find the cutoff
505 +    !! map between groups of two types
506 +    tradRcut = max(maxval(gtypeMaxCutoffRow),maxval(gtypeMaxCutoffCol))
507 +
508 +    do i = 1, nGroupTypesRow
509 +       do j = 1, nGroupTypesCol
510 +      
511 +          select case(cutoffPolicy)
512 +          case(TRADITIONAL_CUTOFF_POLICY)
513 +             thisRcut = tradRcut
514 +          case(MIX_CUTOFF_POLICY)
515 +             thisRcut = 0.5_dp * (gtypeMaxCutoffRow(i) + gtypeMaxCutoffCol(j))
516 +          case(MAX_CUTOFF_POLICY)
517 +             thisRcut = max(gtypeMaxCutoffRow(i), gtypeMaxCutoffCol(j))
518 +          case default
519 +             call handleError("createGtypeCutoffMap", "Unknown Cutoff Policy")
520 +             return
521 +          end select
522 +          gtypeCutoffMap(i,j)%rcut = thisRcut
523 +          gtypeCutoffMap(i,j)%rcutsq = thisRcut*thisRcut
524 +          skin = defaultRlist - defaultRcut
525 +          listSkin = skin ! set neighbor list skin thickness
526 +          gtypeCutoffMap(i,j)%rlistsq = (thisRcut + skin)**2
527 +
528 +          ! sanity check
529 +
530 +          if (haveDefaultCutoffs) then
531 +             if (abs(gtypeCutoffMap(i,j)%rcut - defaultRcut).gt.0.0001) then
532 +                call handleError("createGtypeCutoffMap", "user-specified rCut does not match computed group Cutoff")
533 +             endif
534 +          endif
535 +       enddo
536 +    enddo
537 +    if(allocated(gtypeMaxCutoffRow)) deallocate(gtypeMaxCutoffRow)
538 +    if(allocated(groupMaxCutoffRow)) deallocate(groupMaxCutoffRow)
539 +    if(allocated(atypeMaxCutoff)) deallocate(atypeMaxCutoff)
540 + #ifdef IS_MPI
541 +    if(associated(groupMaxCutoffCol)) deallocate(groupMaxCutoffCol)
542 +    if(associated(gtypeMaxCutoffCol)) deallocate(gtypeMaxCutoffCol)
543 + #endif
544 +    groupMaxCutoffCol => null()
545 +    gtypeMaxCutoffCol => null()
546 +    
547 +    haveGtypeCutoffMap = .true.
548 +   end subroutine createGtypeCutoffMap
549 +
550 +   subroutine setDefaultCutoffs(defRcut, defRsw, defRlist, cutPolicy)
551 +     real(kind=dp),intent(in) :: defRcut, defRsw, defRlist
552 +     integer, intent(in) :: cutPolicy
553 +
554 +     defaultRcut = defRcut
555 +     defaultRsw = defRsw
556 +     defaultRlist = defRlist
557 +     cutoffPolicy = cutPolicy
558 +
559 +     haveDefaultCutoffs = .true.
560 +   end subroutine setDefaultCutoffs
561 +
562 +   subroutine setCutoffPolicy(cutPolicy)
563 +
564 +     integer, intent(in) :: cutPolicy
565 +     cutoffPolicy = cutPolicy
566 +     call createGtypeCutoffMap()
567 +   end subroutine setCutoffPolicy
568 +    
569 +    
570    subroutine setSimVariables()
571      SIM_uses_DirectionalAtoms = SimUsesDirectionalAtoms()
171    SIM_uses_LennardJones = SimUsesLennardJones()
172    SIM_uses_Electrostatics = SimUsesElectrostatics()
173    SIM_uses_Charges = SimUsesCharges()
174    SIM_uses_Dipoles = SimUsesDipoles()
175    SIM_uses_Sticky = SimUsesSticky()
176    SIM_uses_GayBerne = SimUsesGayBerne()
572      SIM_uses_EAM = SimUsesEAM()
178    SIM_uses_Shapes = SimUsesShapes()
179    SIM_uses_FLARB = SimUsesFLARB()
180    SIM_uses_RF = SimUsesRF()
573      SIM_requires_postpair_calc = SimRequiresPostpairCalc()
574      SIM_requires_prepair_calc = SimRequiresPrepairCalc()
575      SIM_uses_PBC = SimUsesPBC()
# Line 193 | Line 585 | contains
585      integer :: myStatus
586  
587      error = 0
196    
197    if (.not. havePropertyMap) then
588  
589 <       myStatus = 0
589 >    if (.not. haveInteractionHash) then      
590 >       myStatus = 0      
591 >       call createInteractionHash(myStatus)      
592 >       if (myStatus .ne. 0) then
593 >          write(default_error, *) 'createInteractionHash failed in doForces!'
594 >          error = -1
595 >          return
596 >       endif
597 >    endif
598  
599 <       call createPropertyMap(myStatus)
600 <
599 >    if (.not. haveGtypeCutoffMap) then        
600 >       myStatus = 0      
601 >       call createGtypeCutoffMap(myStatus)      
602         if (myStatus .ne. 0) then
603 <          write(default_error, *) 'createPropertyMap failed in doForces!'
603 >          write(default_error, *) 'createGtypeCutoffMap failed in doForces!'
604            error = -1
605            return
606         endif
# Line 211 | Line 610 | contains
610         call setSimVariables()
611      endif
612  
613 <    if (.not. haveRlist) then
614 <       write(default_error, *) 'rList has not been set in doForces!'
615 <       error = -1
616 <       return
617 <    endif
613 >  !  if (.not. haveRlist) then
614 >  !     write(default_error, *) 'rList has not been set in doForces!'
615 >  !     error = -1
616 >  !     return
617 >  !  endif
618  
619      if (.not. haveNeighborList) then
620         write(default_error, *) 'neighbor list has not been initialized in doForces!'
# Line 238 | Line 637 | contains
637   #endif
638      return
639    end subroutine doReadyCheck
241    
640  
243  subroutine init_FF(use_RF_c, thisStat)
641  
642 <    logical, intent(in) :: use_RF_c
642 >  subroutine init_FF(thisESM, thisStat)
643  
644 +    integer, intent(in) :: thisESM
645      integer, intent(out) :: thisStat  
646      integer :: my_status, nMatches
647      integer, pointer :: MatchList(:) => null()
# Line 252 | Line 650 | contains
650      !! assume things are copacetic, unless they aren't
651      thisStat = 0
652  
653 <    !! Fortran's version of a cast:
654 <    FF_uses_RF = use_RF_c
257 <    
653 >    electrostaticSummationMethod = thisESM
654 >
655      !! init_FF is called *after* all of the atom types have been
656      !! defined in atype_module using the new_atype subroutine.
657      !!
658      !! this will scan through the known atypes and figure out what
659      !! interactions are used by the force field.    
660 <  
660 >
661      FF_uses_DirectionalAtoms = .false.
265    FF_uses_LennardJones = .false.
266    FF_uses_Electrostatic = .false.
267    FF_uses_Charges = .false.    
662      FF_uses_Dipoles = .false.
269    FF_uses_Sticky = .false.
663      FF_uses_GayBerne = .false.
664      FF_uses_EAM = .false.
665 <    FF_uses_Shapes = .false.
273 <    FF_uses_FLARB = .false.
274 <    
665 >
666      call getMatchingElementList(atypes, "is_Directional", .true., &
667           nMatches, MatchList)
668      if (nMatches .gt. 0) FF_uses_DirectionalAtoms = .true.
669  
279    call getMatchingElementList(atypes, "is_LennardJones", .true., &
280         nMatches, MatchList)
281    if (nMatches .gt. 0) FF_uses_LennardJones = .true.
282    
283    call getMatchingElementList(atypes, "is_Electrostatic", .true., &
284         nMatches, MatchList)
285    if (nMatches .gt. 0) then
286       FF_uses_Electrostatic = .true.
287    endif
288
289    call getMatchingElementList(atypes, "is_Charge", .true., &
290         nMatches, MatchList)
291    if (nMatches .gt. 0) then
292       FF_uses_charges = .true.  
293       FF_uses_electrostatic = .true.
294    endif
295    
670      call getMatchingElementList(atypes, "is_Dipole", .true., &
671           nMatches, MatchList)
672 <    if (nMatches .gt. 0) then
299 <       FF_uses_dipoles = .true.
300 <       FF_uses_electrostatic = .true.
301 <       FF_uses_DirectionalAtoms = .true.
302 <    endif
672 >    if (nMatches .gt. 0) FF_uses_Dipoles = .true.
673      
304    call getMatchingElementList(atypes, "is_Sticky", .true., nMatches, &
305         MatchList)
306    if (nMatches .gt. 0) then
307       FF_uses_Sticky = .true.
308       FF_uses_DirectionalAtoms = .true.
309    endif
310    
674      call getMatchingElementList(atypes, "is_GayBerne", .true., &
675           nMatches, MatchList)
676 <    if (nMatches .gt. 0) then
677 <       FF_uses_GayBerne = .true.
315 <       FF_uses_DirectionalAtoms = .true.
316 <    endif
317 <    
676 >    if (nMatches .gt. 0) FF_uses_GayBerne = .true.
677 >
678      call getMatchingElementList(atypes, "is_EAM", .true., nMatches, MatchList)
679      if (nMatches .gt. 0) FF_uses_EAM = .true.
320    
321    call getMatchingElementList(atypes, "is_Shape", .true., &
322         nMatches, MatchList)
323    if (nMatches .gt. 0) then
324       FF_uses_Shapes = .true.
325       FF_uses_DirectionalAtoms = .true.
326    endif
680  
328    call getMatchingElementList(atypes, "is_FLARB", .true., &
329         nMatches, MatchList)
330    if (nMatches .gt. 0) FF_uses_FLARB = .true.
681  
332    !! Assume sanity (for the sake of argument)
682      haveSaneForceField = .true.
683 <    
684 <    !! check to make sure the FF_uses_RF setting makes sense
685 <    
686 <    if (FF_uses_dipoles) then
687 <       if (FF_uses_RF) then
683 >
684 >    !! check to make sure the reaction field setting makes sense
685 >
686 >    if (FF_uses_Dipoles) then
687 >       if (electrostaticSummationMethod == REACTION_FIELD) then
688            dielect = getDielect()
689            call initialize_rf(dielect)
690         endif
691      else
692 <       if (FF_uses_RF) then          
692 >       if (electrostaticSummationMethod == REACTION_FIELD) then
693            write(default_error,*) 'Using Reaction Field with no dipoles?  Huh?'
694            thisStat = -1
695            haveSaneForceField = .false.
696            return
697         endif
349    endif
350
351    if (FF_uses_sticky) then
352       call check_sticky_FF(my_status)
353       if (my_status /= 0) then
354          thisStat = -1
355          haveSaneForceField = .false.
356          return
357       end if
698      endif
699  
700      if (FF_uses_EAM) then
701 <         call init_EAM_FF(my_status)
701 >       call init_EAM_FF(my_status)
702         if (my_status /= 0) then
703            write(default_error, *) "init_EAM_FF returned a bad status"
704            thisStat = -1
# Line 376 | Line 716 | contains
716         endif
717      endif
718  
379    if (FF_uses_GayBerne .and. FF_uses_LennardJones) then
380    endif
381    
719      if (.not. haveNeighborList) then
720         !! Create neighbor lists
721         call expandNeighborList(nLocal, my_status)
# Line 388 | Line 725 | contains
725            return
726         endif
727         haveNeighborList = .true.
728 <    endif    
729 <    
728 >    endif
729 >
730    end subroutine init_FF
394  
731  
732 +
733    !! Does force loop over i,j pairs. Calls do_pair to calculates forces.
734    !------------------------------------------------------------->
735 <  subroutine do_force_loop(q, q_group, A, u_l, f, t, tau, pot, &
735 >  subroutine do_force_loop(q, q_group, A, eFrame, f, t, tau, pot, &
736         do_pot_c, do_stress_c, error)
737      !! Position array provided by C, dimensioned by getNlocal
738      real ( kind = dp ), dimension(3, nLocal) :: q
# Line 404 | Line 741 | contains
741      !! Rotation Matrix for each long range particle in simulation.
742      real( kind = dp), dimension(9, nLocal) :: A    
743      !! Unit vectors for dipoles (lab frame)
744 <    real( kind = dp ), dimension(3,nLocal) :: u_l
744 >    real( kind = dp ), dimension(9,nLocal) :: eFrame
745      !! Force array provided by C, dimensioned by getNlocal
746      real ( kind = dp ), dimension(3,nLocal) :: f
747      !! Torsion array provided by C, dimensioned by getNlocal
# Line 442 | Line 779 | contains
779      integer :: localError
780      integer :: propPack_i, propPack_j
781      integer :: loopStart, loopEnd, loop
782 +    integer :: iHash
783 +  
784  
446    real(kind=dp) :: listSkin = 1.0  
447    
785      !! initialize local variables  
786 <    
786 >
787   #ifdef IS_MPI
788      pot_local = 0.0_dp
789      nAtomsInRow   = getNatomsInRow(plan_atom_row)
# Line 456 | Line 793 | contains
793   #else
794      natoms = nlocal
795   #endif
796 <    
796 >
797      call doReadyCheck(localError)
798      if ( localError .ne. 0 ) then
799         call handleError("do_force_loop", "Not Initialized")
# Line 464 | Line 801 | contains
801         return
802      end if
803      call zero_work_arrays()
804 <        
804 >
805      do_pot = do_pot_c
806      do_stress = do_stress_c
807 <    
807 >
808      ! Gather all information needed by all force loops:
809 <    
809 >
810   #ifdef IS_MPI    
811 <    
811 >
812      call gather(q, q_Row, plan_atom_row_3d)
813      call gather(q, q_Col, plan_atom_col_3d)
814  
815      call gather(q_group, q_group_Row, plan_group_row_3d)
816      call gather(q_group, q_group_Col, plan_group_col_3d)
817 <        
817 >
818      if (FF_UsesDirectionalAtoms() .and. SIM_uses_DirectionalAtoms) then
819 <       call gather(u_l, u_l_Row, plan_atom_row_3d)
820 <       call gather(u_l, u_l_Col, plan_atom_col_3d)
821 <      
819 >       call gather(eFrame, eFrame_Row, plan_atom_row_rotation)
820 >       call gather(eFrame, eFrame_Col, plan_atom_col_rotation)
821 >
822         call gather(A, A_Row, plan_atom_row_rotation)
823         call gather(A, A_Col, plan_atom_col_rotation)
824      endif
825 <    
825 >
826   #endif
827 <    
827 >
828      !! Begin force loop timing:
829   #ifdef PROFILE
830      call cpu_time(forceTimeInitial)
831      nloops = nloops + 1
832   #endif
833 <    
833 >
834      loopEnd = PAIR_LOOP
835      if (FF_RequiresPrepairCalc() .and. SIM_requires_prepair_calc) then
836         loopStart = PREPAIR_LOOP
# Line 508 | Line 845 | contains
845         if (loop .eq. loopStart) then
846   #ifdef IS_MPI
847            call checkNeighborList(nGroupsInRow, q_group_row, listSkin, &
848 <             update_nlist)
848 >               update_nlist)
849   #else
850            call checkNeighborList(nGroups, q_group, listSkin, &
851 <             update_nlist)
851 >               update_nlist)
852   #endif
853         endif
854 <      
854 >
855         if (update_nlist) then
856            !! save current configuration and construct neighbor list
857   #ifdef IS_MPI
# Line 525 | Line 862 | contains
862            neighborListSize = size(list)
863            nlist = 0
864         endif
865 <      
865 >
866         istart = 1
867   #ifdef IS_MPI
868         iend = nGroupsInRow
# Line 535 | Line 872 | contains
872         outer: do i = istart, iend
873  
874            if (update_nlist) point(i) = nlist + 1
875 <          
875 >
876            n_in_i = groupStartRow(i+1) - groupStartRow(i)
877 <          
877 >
878            if (update_nlist) then
879   #ifdef IS_MPI
880               jstart = 1
# Line 552 | Line 889 | contains
889               ! make sure group i has neighbors
890               if (jstart .gt. jend) cycle outer
891            endif
892 <          
892 >
893            do jnab = jstart, jend
894               if (update_nlist) then
895                  j = jnab
# Line 561 | Line 898 | contains
898               endif
899  
900   #ifdef IS_MPI
901 +             me_j = atid_col(j)
902               call get_interatomic_vector(q_group_Row(:,i), &
903                    q_group_Col(:,j), d_grp, rgrpsq)
904   #else
905 +             me_j = atid(j)
906               call get_interatomic_vector(q_group(:,i), &
907                    q_group(:,j), d_grp, rgrpsq)
908 < #endif
908 > #endif      
909  
910 <             if (rgrpsq < rlistsq) then
910 >             if (rgrpsq < gtypeCutoffMap(groupToGtypeRow(i),groupToGtypeCol(j))%rListsq) then
911                  if (update_nlist) then
912                     nlist = nlist + 1
913 <                  
913 >
914                     if (nlist > neighborListSize) then
915   #ifdef IS_MPI                
916                        call expandNeighborList(nGroupsInRow, listerror)
# Line 585 | Line 924 | contains
924                        end if
925                        neighborListSize = size(list)
926                     endif
927 <                  
927 >
928                     list(nlist) = j
929                  endif
930 <                
930 >
931                  if (loop .eq. PAIR_LOOP) then
932                     vij = 0.0d0
933                     fij(1:3) = 0.0d0
934                  endif
935 <                
935 >
936                  call get_switch(rgrpsq, sw, dswdr, rgrp, group_switch, &
937                       in_switching_region)
938 <                
938 >
939                  n_in_j = groupStartCol(j+1) - groupStartCol(j)
940 <                
940 >
941                  do ia = groupStartRow(i), groupStartRow(i+1)-1
942 <                  
942 >
943                     atom1 = groupListRow(ia)
944 <                  
944 >
945                     inner: do jb = groupStartCol(j), groupStartCol(j+1)-1
946 <                      
946 >
947                        atom2 = groupListCol(jb)
948 <                      
948 >
949                        if (skipThisPair(atom1, atom2)) cycle inner
950  
951                        if ((n_in_i .eq. 1).and.(n_in_j .eq. 1)) then
# Line 626 | Line 965 | contains
965   #ifdef IS_MPI                      
966                           call do_prepair(atom1, atom2, ratmsq, d_atm, sw, &
967                                rgrpsq, d_grp, do_pot, do_stress, &
968 <                              u_l, A, f, t, pot_local)
968 >                              eFrame, A, f, t, pot_local)
969   #else
970                           call do_prepair(atom1, atom2, ratmsq, d_atm, sw, &
971                                rgrpsq, d_grp, do_pot, do_stress, &
972 <                              u_l, A, f, t, pot)
972 >                              eFrame, A, f, t, pot)
973   #endif                                              
974                        else
975   #ifdef IS_MPI                      
976                           call do_pair(atom1, atom2, ratmsq, d_atm, sw, &
977                                do_pot, &
978 <                              u_l, A, f, t, pot_local, vpair, fpair)
978 >                              eFrame, A, f, t, pot_local, vpair, fpair)
979   #else
980                           call do_pair(atom1, atom2, ratmsq, d_atm, sw, &
981                                do_pot,  &
982 <                              u_l, A, f, t, pot, vpair, fpair)
982 >                              eFrame, A, f, t, pot, vpair, fpair)
983   #endif
984  
985                           vij = vij + vpair
# Line 648 | Line 987 | contains
987                        endif
988                     enddo inner
989                  enddo
990 <                
990 >
991                  if (loop .eq. PAIR_LOOP) then
992                     if (in_switching_region) then
993                        swderiv = vij*dswdr/rgrp
994                        fij(1) = fij(1) + swderiv*d_grp(1)
995                        fij(2) = fij(2) + swderiv*d_grp(2)
996                        fij(3) = fij(3) + swderiv*d_grp(3)
997 <                      
997 >
998                        do ia=groupStartRow(i), groupStartRow(i+1)-1
999                           atom1=groupListRow(ia)
1000                           mf = mfactRow(atom1)
# Line 669 | Line 1008 | contains
1008                           f(3,atom1) = f(3,atom1) + swderiv*d_grp(3)*mf
1009   #endif
1010                        enddo
1011 <                      
1011 >
1012                        do jb=groupStartCol(j), groupStartCol(j+1)-1
1013                           atom2=groupListCol(jb)
1014                           mf = mfactCol(atom2)
# Line 684 | Line 1023 | contains
1023   #endif
1024                        enddo
1025                     endif
1026 <                  
1026 >
1027                     if (do_stress) call add_stress_tensor(d_grp, fij)
1028                  endif
1029               end if
1030            enddo
1031 +
1032         enddo outer
1033 <      
1033 >
1034         if (update_nlist) then
1035   #ifdef IS_MPI
1036            point(nGroupsInRow + 1) = nlist + 1
# Line 704 | Line 1044 | contains
1044               update_nlist = .false.                              
1045            endif
1046         endif
1047 <            
1047 >
1048         if (loop .eq. PREPAIR_LOOP) then
1049            call do_preforce(nlocal, pot)
1050         endif
1051 <      
1051 >
1052      enddo
1053 <    
1053 >
1054      !! Do timing
1055   #ifdef PROFILE
1056      call cpu_time(forceTimeFinal)
1057      forceTime = forceTime + forceTimeFinal - forceTimeInitial
1058   #endif    
1059 <    
1059 >
1060   #ifdef IS_MPI
1061      !!distribute forces
1062 <    
1062 >
1063      f_temp = 0.0_dp
1064      call scatter(f_Row,f_temp,plan_atom_row_3d)
1065      do i = 1,nlocal
1066         f(1:3,i) = f(1:3,i) + f_temp(1:3,i)
1067      end do
1068 <    
1068 >
1069      f_temp = 0.0_dp
1070      call scatter(f_Col,f_temp,plan_atom_col_3d)
1071      do i = 1,nlocal
1072         f(1:3,i) = f(1:3,i) + f_temp(1:3,i)
1073      end do
1074 <    
1074 >
1075      if (FF_UsesDirectionalAtoms() .and. SIM_uses_DirectionalAtoms) then
1076         t_temp = 0.0_dp
1077         call scatter(t_Row,t_temp,plan_atom_row_3d)
# Line 740 | Line 1080 | contains
1080         end do
1081         t_temp = 0.0_dp
1082         call scatter(t_Col,t_temp,plan_atom_col_3d)
1083 <      
1083 >
1084         do i = 1,nlocal
1085            t(1:3,i) = t(1:3,i) + t_temp(1:3,i)
1086         end do
1087      endif
1088 <    
1088 >
1089      if (do_pot) then
1090         ! scatter/gather pot_row into the members of my column
1091         call scatter(pot_Row, pot_Temp, plan_atom_row)
1092 <      
1092 >
1093         ! scatter/gather pot_local into all other procs
1094         ! add resultant to get total pot
1095         do i = 1, nlocal
1096            pot_local = pot_local + pot_Temp(i)
1097         enddo
1098 <      
1098 >
1099         pot_Temp = 0.0_DP
1100 <      
1100 >
1101         call scatter(pot_Col, pot_Temp, plan_atom_col)
1102         do i = 1, nlocal
1103            pot_local = pot_local + pot_Temp(i)
1104         enddo
1105 <      
1105 >
1106      endif
1107   #endif
1108 <    
1108 >
1109      if (FF_RequiresPostpairCalc() .and. SIM_requires_postpair_calc) then
1110 <      
1111 <       if (FF_uses_RF .and. SIM_uses_RF) then
1112 <          
1110 >
1111 >       if (electrostaticSummationMethod == REACTION_FIELD) then
1112 >
1113   #ifdef IS_MPI
1114            call scatter(rf_Row,rf,plan_atom_row_3d)
1115            call scatter(rf_Col,rf_Temp,plan_atom_col_3d)
# Line 777 | Line 1117 | contains
1117               rf(1:3,i) = rf(1:3,i) + rf_Temp(1:3,i)
1118            end do
1119   #endif
1120 <          
1120 >
1121            do i = 1, nLocal
1122 <            
1122 >
1123               rfpot = 0.0_DP
1124   #ifdef IS_MPI
1125               me_i = atid_row(i)
1126   #else
1127               me_i = atid(i)
1128   #endif
1129 +             iHash = InteractionHash(me_i,me_j)
1130              
1131 <             if (PropertyMap(me_i)%is_Dipole) then
1132 <                
1131 >             if ( iand(iHash, ELECTROSTATIC_PAIR).ne.0 ) then
1132 >
1133                  mu_i = getDipoleMoment(me_i)
1134 <                
1134 >
1135                  !! The reaction field needs to include a self contribution
1136                  !! to the field:
1137 <                call accumulate_self_rf(i, mu_i, u_l)
1137 >                call accumulate_self_rf(i, mu_i, eFrame)
1138                  !! Get the reaction field contribution to the
1139                  !! potential and torques:
1140 <                call reaction_field_final(i, mu_i, u_l, rfpot, t, do_pot)
1140 >                call reaction_field_final(i, mu_i, eFrame, rfpot, t, do_pot)
1141   #ifdef IS_MPI
1142                  pot_local = pot_local + rfpot
1143   #else
1144                  pot = pot + rfpot
1145 <      
1145 >
1146   #endif
1147 <             endif            
1147 >             endif
1148            enddo
1149         endif
1150      endif
1151 <    
1152 <    
1151 >
1152 >
1153   #ifdef IS_MPI
1154 <    
1154 >
1155      if (do_pot) then
1156         pot = pot + pot_local
1157         !! we assume the c code will do the allreduce to get the total potential
1158         !! we could do it right here if we needed to...
1159      endif
1160 <    
1160 >
1161      if (do_stress) then
1162         call mpi_allreduce(tau_Temp, tau, 9,mpi_double_precision,mpi_sum, &
1163              mpi_comm_world,mpi_err)
1164         call mpi_allreduce(virial_Temp, virial,1,mpi_double_precision,mpi_sum, &
1165              mpi_comm_world,mpi_err)
1166      endif
1167 <    
1167 >
1168   #else
1169 <    
1169 >
1170      if (do_stress) then
1171         tau = tau_Temp
1172         virial = virial_Temp
1173      endif
1174 <    
1174 >
1175   #endif
1176 <      
1176 >
1177    end subroutine do_force_loop
1178 <  
1178 >
1179    subroutine do_pair(i, j, rijsq, d, sw, do_pot, &
1180 <       u_l, A, f, t, pot, vpair, fpair)
1180 >       eFrame, A, f, t, pot, vpair, fpair)
1181  
1182      real( kind = dp ) :: pot, vpair, sw
1183      real( kind = dp ), dimension(3) :: fpair
1184      real( kind = dp ), dimension(nLocal)   :: mfact
1185 <    real( kind = dp ), dimension(3,nLocal) :: u_l
1185 >    real( kind = dp ), dimension(9,nLocal) :: eFrame
1186      real( kind = dp ), dimension(9,nLocal) :: A
1187      real( kind = dp ), dimension(3,nLocal) :: f
1188      real( kind = dp ), dimension(3,nLocal) :: t
# Line 853 | Line 1194 | contains
1194      real ( kind = dp ), intent(inout) :: d(3)
1195      integer :: me_i, me_j
1196  
1197 +    integer :: iHash
1198 +
1199      r = sqrt(rijsq)
1200      vpair = 0.0d0
1201      fpair(1:3) = 0.0d0
# Line 864 | Line 1207 | contains
1207      me_i = atid(i)
1208      me_j = atid(j)
1209   #endif
867    
868    if (FF_uses_LennardJones .and. SIM_uses_LennardJones) then
869      
870       if ( PropertyMap(me_i)%is_LennardJones .and. &
871            PropertyMap(me_j)%is_LennardJones ) then
872          call do_lj_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, do_pot)
873       endif
874      
875    endif
876    
877    if (FF_uses_charges .and. SIM_uses_charges) then
878      
879       if (PropertyMap(me_i)%is_Charge .and. PropertyMap(me_j)%is_Charge) then
880          call do_charge_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
881               pot, f, do_pot)
882       endif
883      
884    endif
885    
886    if (FF_uses_dipoles .and. SIM_uses_dipoles) then
887      
888       if ( PropertyMap(me_i)%is_Dipole .and. PropertyMap(me_j)%is_Dipole) then
889          call do_dipole_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
890               pot, u_l, f, t, do_pot)
891          if (FF_uses_RF .and. SIM_uses_RF) then
892             call accumulate_rf(i, j, r, u_l, sw)
893             call rf_correct_forces(i, j, d, r, u_l, sw, f, fpair)
894          endif
895       endif
1210  
1211 +    iHash = InteractionHash(me_i, me_j)
1212 +
1213 +    if ( iand(iHash, LJ_PAIR).ne.0 ) then
1214 +       call do_lj_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, do_pot)
1215      endif
1216  
1217 <    if (FF_uses_Sticky .and. SIM_uses_sticky) then
1217 >    if ( iand(iHash, ELECTROSTATIC_PAIR).ne.0 ) then
1218 >       call doElectrostaticPair(i, j, d, r, rijsq, sw, vpair, fpair, &
1219 >            pot, eFrame, f, t, do_pot)
1220  
1221 <       if ( PropertyMap(me_i)%is_Sticky .and. PropertyMap(me_j)%is_Sticky) then
1222 <          call do_sticky_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1223 <               pot, A, f, t, do_pot)
1221 >       if (electrostaticSummationMethod == REACTION_FIELD) then
1222 >
1223 >          ! CHECK ME (RF needs to know about all electrostatic types)
1224 >          call accumulate_rf(i, j, r, eFrame, sw)
1225 >          call rf_correct_forces(i, j, d, r, eFrame, sw, f, fpair)
1226         endif
1227 <      
1227 >
1228      endif
1229  
1230 +    if ( iand(iHash, STICKY_PAIR).ne.0 ) then
1231 +       call do_sticky_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1232 +            pot, A, f, t, do_pot)
1233 +    endif
1234  
1235 <    if (FF_uses_GayBerne .and. SIM_uses_GayBerne) then
1236 <      
1237 <       if ( PropertyMap(me_i)%is_GayBerne .and. &
912 <            PropertyMap(me_j)%is_GayBerne) then
913 <          call do_gb_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
914 <               pot, u_l, f, t, do_pot)
915 <       endif
916 <      
1235 >    if ( iand(iHash, STICKYPOWER_PAIR).ne.0 ) then
1236 >       call do_sticky_power_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1237 >            pot, A, f, t, do_pot)
1238      endif
1239 +
1240 +    if ( iand(iHash, GAYBERNE_PAIR).ne.0 ) then
1241 +       call do_gb_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1242 +            pot, A, f, t, do_pot)
1243 +    endif
1244      
1245 <    if (FF_uses_EAM .and. SIM_uses_EAM) then
1246 <      
1247 <       if ( PropertyMap(me_i)%is_EAM .and. PropertyMap(me_j)%is_EAM) then
922 <          call do_eam_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, &
923 <               do_pot)
924 <       endif
925 <      
1245 >    if ( iand(iHash, GAYBERNE_LJ).ne.0 ) then
1246 > !      call do_gblj_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1247 > !           pot, A, f, t, do_pot)
1248      endif
1249  
1250 <    if (FF_uses_Shapes .and. SIM_uses_Shapes) then
1251 <      
1252 <       if ( PropertyMap(me_i)%is_Shape .and. &
931 <            PropertyMap(me_j)%is_Shape ) then
932 <          call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
933 <               pot, u_l, f, t, do_pot)
934 <       endif
935 <      
1250 >    if ( iand(iHash, EAM_PAIR).ne.0 ) then      
1251 >       call do_eam_pair(i, j, d, r, rijsq, sw, vpair, fpair, pot, f, &
1252 >            do_pot)
1253      endif
1254 +
1255 +    if ( iand(iHash, SHAPE_PAIR).ne.0 ) then      
1256 +       call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1257 +            pot, A, f, t, do_pot)
1258 +    endif
1259 +
1260 +    if ( iand(iHash, SHAPE_LJ).ne.0 ) then      
1261 +       call do_shape_pair(i, j, d, r, rijsq, sw, vpair, fpair, &
1262 +            pot, A, f, t, do_pot)
1263 +    endif
1264      
1265    end subroutine do_pair
1266  
1267    subroutine do_prepair(i, j, rijsq, d, sw, rcijsq, dc, &
1268 <       do_pot, do_stress, u_l, A, f, t, pot)
1268 >       do_pot, do_stress, eFrame, A, f, t, pot)
1269  
1270 <   real( kind = dp ) :: pot, sw
1271 <   real( kind = dp ), dimension(3,nLocal) :: u_l
1272 <   real (kind=dp), dimension(9,nLocal) :: A
1273 <   real (kind=dp), dimension(3,nLocal) :: f
1274 <   real (kind=dp), dimension(3,nLocal) :: t
948 <  
949 <   logical, intent(inout) :: do_pot, do_stress
950 <   integer, intent(in) :: i, j
951 <   real ( kind = dp ), intent(inout)    :: rijsq, rcijsq
952 <   real ( kind = dp )                :: r, rc
953 <   real ( kind = dp ), intent(inout) :: d(3), dc(3)
954 <  
955 <   logical :: is_EAM_i, is_EAM_j
956 <  
957 <   integer :: me_i, me_j
958 <  
1270 >    real( kind = dp ) :: pot, sw
1271 >    real( kind = dp ), dimension(9,nLocal) :: eFrame
1272 >    real (kind=dp), dimension(9,nLocal) :: A
1273 >    real (kind=dp), dimension(3,nLocal) :: f
1274 >    real (kind=dp), dimension(3,nLocal) :: t
1275  
1276 +    logical, intent(inout) :: do_pot, do_stress
1277 +    integer, intent(in) :: i, j
1278 +    real ( kind = dp ), intent(inout)    :: rijsq, rcijsq
1279 +    real ( kind = dp )                :: r, rc
1280 +    real ( kind = dp ), intent(inout) :: d(3), dc(3)
1281 +
1282 +    integer :: me_i, me_j, iHash
1283 +
1284      r = sqrt(rijsq)
961    if (SIM_uses_molecular_cutoffs) then
962       rc = sqrt(rcijsq)
963    else
964       rc = r
965    endif
966  
1285  
1286   #ifdef IS_MPI  
1287 <   me_i = atid_row(i)
1288 <   me_j = atid_col(j)  
1287 >    me_i = atid_row(i)
1288 >    me_j = atid_col(j)  
1289   #else  
1290 <   me_i = atid(i)
1291 <   me_j = atid(j)  
1290 >    me_i = atid(i)
1291 >    me_j = atid(j)  
1292   #endif
975  
976   if (FF_uses_EAM .and. SIM_uses_EAM) then
977      
978      if (PropertyMap(me_i)%is_EAM .and. PropertyMap(me_j)%is_EAM) &
979           call calc_EAM_prepair_rho(i, j, d, r, rijsq )
980      
981   endif
982  
983 end subroutine do_prepair
984
985
986 subroutine do_preforce(nlocal,pot)
987   integer :: nlocal
988   real( kind = dp ) :: pot
989  
990   if (FF_uses_EAM .and. SIM_uses_EAM) then
991      call calc_EAM_preforce_Frho(nlocal,pot)
992   endif
993  
994  
995 end subroutine do_preforce
996
997
998 subroutine get_interatomic_vector(q_i, q_j, d, r_sq)
999  
1000   real (kind = dp), dimension(3) :: q_i
1001   real (kind = dp), dimension(3) :: q_j
1002   real ( kind = dp ), intent(out) :: r_sq
1003   real( kind = dp ) :: d(3), scaled(3)
1004   integer i
1005  
1006   d(1:3) = q_j(1:3) - q_i(1:3)
1007  
1008   ! Wrap back into periodic box if necessary
1009   if ( SIM_uses_PBC ) then
1010      
1011      if( .not.boxIsOrthorhombic ) then
1012         ! calc the scaled coordinates.
1013        
1014         scaled = matmul(HmatInv, d)
1015        
1016         ! wrap the scaled coordinates
1017        
1018         scaled = scaled  - anint(scaled)
1019        
1020        
1021         ! calc the wrapped real coordinates from the wrapped scaled
1022         ! coordinates
1023        
1024         d = matmul(Hmat,scaled)
1025        
1026      else
1027         ! calc the scaled coordinates.
1028        
1029         do i = 1, 3
1030            scaled(i) = d(i) * HmatInv(i,i)
1031            
1032            ! wrap the scaled coordinates
1033            
1034            scaled(i) = scaled(i) - anint(scaled(i))
1035            
1036            ! calc the wrapped real coordinates from the wrapped scaled
1037            ! coordinates
1038            
1039            d(i) = scaled(i)*Hmat(i,i)
1040         enddo
1041      endif
1042      
1043   endif
1044  
1045   r_sq = dot_product(d,d)
1046  
1047 end subroutine get_interatomic_vector
1048
1049 subroutine zero_work_arrays()
1050  
1051 #ifdef IS_MPI
1052  
1053   q_Row = 0.0_dp
1054   q_Col = 0.0_dp
1293  
1294 <   q_group_Row = 0.0_dp
1295 <   q_group_Col = 0.0_dp  
1296 <  
1297 <   u_l_Row = 0.0_dp
1298 <   u_l_Col = 0.0_dp
1299 <  
1300 <   A_Row = 0.0_dp
1301 <   A_Col = 0.0_dp
1302 <  
1303 <   f_Row = 0.0_dp
1304 <   f_Col = 0.0_dp
1305 <   f_Temp = 0.0_dp
1306 <  
1307 <   t_Row = 0.0_dp
1308 <   t_Col = 0.0_dp
1309 <   t_Temp = 0.0_dp
1310 <  
1311 <   pot_Row = 0.0_dp
1312 <   pot_Col = 0.0_dp
1313 <   pot_Temp = 0.0_dp
1314 <  
1315 <   rf_Row = 0.0_dp
1316 <   rf_Col = 0.0_dp
1317 <   rf_Temp = 0.0_dp
1318 <  
1319 < #endif
1320 <
1321 <   if (FF_uses_EAM .and. SIM_uses_EAM) then
1322 <      call clean_EAM()
1323 <   endif
1324 <  
1325 <   rf = 0.0_dp
1326 <   tau_Temp = 0.0_dp
1327 <   virial_Temp = 0.0_dp
1328 < end subroutine zero_work_arrays
1329 <
1330 < function skipThisPair(atom1, atom2) result(skip_it)
1331 <   integer, intent(in) :: atom1
1332 <   integer, intent(in), optional :: atom2
1333 <   logical :: skip_it
1334 <   integer :: unique_id_1, unique_id_2
1335 <   integer :: me_i,me_j
1336 <   integer :: i
1337 <  
1338 <   skip_it = .false.
1339 <  
1340 <   !! there are a number of reasons to skip a pair or a particle
1341 <   !! mostly we do this to exclude atoms who are involved in short
1342 <   !! range interactions (bonds, bends, torsions), but we also need
1343 <   !! to exclude some overcounted interactions that result from
1344 <   !! the parallel decomposition
1345 <  
1346 < #ifdef IS_MPI
1347 <   !! in MPI, we have to look up the unique IDs for each atom
1348 <   unique_id_1 = AtomRowToGlobal(atom1)
1349 < #else
1350 <   !! in the normal loop, the atom numbers are unique
1351 <   unique_id_1 = atom1
1352 < #endif
1353 <  
1354 <   !! We were called with only one atom, so just check the global exclude
1355 <   !! list for this atom
1356 <   if (.not. present(atom2)) then
1357 <      do i = 1, nExcludes_global
1358 <         if (excludesGlobal(i) == unique_id_1) then
1359 <            skip_it = .true.
1360 <            return
1361 <         end if
1362 <      end do
1363 <      return
1364 <   end if
1365 <  
1366 < #ifdef IS_MPI
1367 <   unique_id_2 = AtomColToGlobal(atom2)
1294 >    iHash = InteractionHash(me_i, me_j)
1295 >
1296 >    if ( iand(iHash, EAM_PAIR).ne.0 ) then      
1297 >            call calc_EAM_prepair_rho(i, j, d, r, rijsq )
1298 >    endif
1299 >    
1300 >  end subroutine do_prepair
1301 >
1302 >
1303 >  subroutine do_preforce(nlocal,pot)
1304 >    integer :: nlocal
1305 >    real( kind = dp ) :: pot
1306 >
1307 >    if (FF_uses_EAM .and. SIM_uses_EAM) then
1308 >       call calc_EAM_preforce_Frho(nlocal,pot)
1309 >    endif
1310 >
1311 >
1312 >  end subroutine do_preforce
1313 >
1314 >
1315 >  subroutine get_interatomic_vector(q_i, q_j, d, r_sq)
1316 >
1317 >    real (kind = dp), dimension(3) :: q_i
1318 >    real (kind = dp), dimension(3) :: q_j
1319 >    real ( kind = dp ), intent(out) :: r_sq
1320 >    real( kind = dp ) :: d(3), scaled(3)
1321 >    integer i
1322 >
1323 >    d(1:3) = q_j(1:3) - q_i(1:3)
1324 >
1325 >    ! Wrap back into periodic box if necessary
1326 >    if ( SIM_uses_PBC ) then
1327 >
1328 >       if( .not.boxIsOrthorhombic ) then
1329 >          ! calc the scaled coordinates.
1330 >
1331 >          scaled = matmul(HmatInv, d)
1332 >
1333 >          ! wrap the scaled coordinates
1334 >
1335 >          scaled = scaled  - anint(scaled)
1336 >
1337 >
1338 >          ! calc the wrapped real coordinates from the wrapped scaled
1339 >          ! coordinates
1340 >
1341 >          d = matmul(Hmat,scaled)
1342 >
1343 >       else
1344 >          ! calc the scaled coordinates.
1345 >
1346 >          do i = 1, 3
1347 >             scaled(i) = d(i) * HmatInv(i,i)
1348 >
1349 >             ! wrap the scaled coordinates
1350 >
1351 >             scaled(i) = scaled(i) - anint(scaled(i))
1352 >
1353 >             ! calc the wrapped real coordinates from the wrapped scaled
1354 >             ! coordinates
1355 >
1356 >             d(i) = scaled(i)*Hmat(i,i)
1357 >          enddo
1358 >       endif
1359 >
1360 >    endif
1361 >
1362 >    r_sq = dot_product(d,d)
1363 >
1364 >  end subroutine get_interatomic_vector
1365 >
1366 >  subroutine zero_work_arrays()
1367 >
1368 > #ifdef IS_MPI
1369 >
1370 >    q_Row = 0.0_dp
1371 >    q_Col = 0.0_dp
1372 >
1373 >    q_group_Row = 0.0_dp
1374 >    q_group_Col = 0.0_dp  
1375 >
1376 >    eFrame_Row = 0.0_dp
1377 >    eFrame_Col = 0.0_dp
1378 >
1379 >    A_Row = 0.0_dp
1380 >    A_Col = 0.0_dp
1381 >
1382 >    f_Row = 0.0_dp
1383 >    f_Col = 0.0_dp
1384 >    f_Temp = 0.0_dp
1385 >
1386 >    t_Row = 0.0_dp
1387 >    t_Col = 0.0_dp
1388 >    t_Temp = 0.0_dp
1389 >
1390 >    pot_Row = 0.0_dp
1391 >    pot_Col = 0.0_dp
1392 >    pot_Temp = 0.0_dp
1393 >
1394 >    rf_Row = 0.0_dp
1395 >    rf_Col = 0.0_dp
1396 >    rf_Temp = 0.0_dp
1397 >
1398 > #endif
1399 >
1400 >    if (FF_uses_EAM .and. SIM_uses_EAM) then
1401 >       call clean_EAM()
1402 >    endif
1403 >
1404 >    rf = 0.0_dp
1405 >    tau_Temp = 0.0_dp
1406 >    virial_Temp = 0.0_dp
1407 >  end subroutine zero_work_arrays
1408 >
1409 >  function skipThisPair(atom1, atom2) result(skip_it)
1410 >    integer, intent(in) :: atom1
1411 >    integer, intent(in), optional :: atom2
1412 >    logical :: skip_it
1413 >    integer :: unique_id_1, unique_id_2
1414 >    integer :: me_i,me_j
1415 >    integer :: i
1416 >
1417 >    skip_it = .false.
1418 >
1419 >    !! there are a number of reasons to skip a pair or a particle
1420 >    !! mostly we do this to exclude atoms who are involved in short
1421 >    !! range interactions (bonds, bends, torsions), but we also need
1422 >    !! to exclude some overcounted interactions that result from
1423 >    !! the parallel decomposition
1424 >
1425 > #ifdef IS_MPI
1426 >    !! in MPI, we have to look up the unique IDs for each atom
1427 >    unique_id_1 = AtomRowToGlobal(atom1)
1428   #else
1429 <   unique_id_2 = atom2
1429 >    !! in the normal loop, the atom numbers are unique
1430 >    unique_id_1 = atom1
1431   #endif
1432 <  
1432 >
1433 >    !! We were called with only one atom, so just check the global exclude
1434 >    !! list for this atom
1435 >    if (.not. present(atom2)) then
1436 >       do i = 1, nExcludes_global
1437 >          if (excludesGlobal(i) == unique_id_1) then
1438 >             skip_it = .true.
1439 >             return
1440 >          end if
1441 >       end do
1442 >       return
1443 >    end if
1444 >
1445   #ifdef IS_MPI
1446 <   !! this situation should only arise in MPI simulations
1447 <   if (unique_id_1 == unique_id_2) then
1448 <      skip_it = .true.
1138 <      return
1139 <   end if
1140 <  
1141 <   !! this prevents us from doing the pair on multiple processors
1142 <   if (unique_id_1 < unique_id_2) then
1143 <      if (mod(unique_id_1 + unique_id_2,2) == 0) then
1144 <         skip_it = .true.
1145 <         return
1146 <      endif
1147 <   else                
1148 <      if (mod(unique_id_1 + unique_id_2,2) == 1) then
1149 <         skip_it = .true.
1150 <         return
1151 <      endif
1152 <   endif
1446 >    unique_id_2 = AtomColToGlobal(atom2)
1447 > #else
1448 >    unique_id_2 = atom2
1449   #endif
1450 <  
1451 <   !! the rest of these situations can happen in all simulations:
1452 <   do i = 1, nExcludes_global      
1453 <      if ((excludesGlobal(i) == unique_id_1) .or. &
1454 <           (excludesGlobal(i) == unique_id_2)) then
1455 <         skip_it = .true.
1456 <         return
1457 <      endif
1458 <   enddo
1459 <  
1460 <   do i = 1, nSkipsForAtom(atom1)
1461 <      if (skipsForAtom(atom1, i) .eq. unique_id_2) then
1462 <         skip_it = .true.
1463 <         return
1464 <      endif
1465 <   end do
1466 <  
1467 <   return
1468 < end function skipThisPair
1469 <
1470 < function FF_UsesDirectionalAtoms() result(doesit)
1471 <   logical :: doesit
1472 <   doesit = FF_uses_DirectionalAtoms .or. FF_uses_Dipoles .or. &
1473 <        FF_uses_Sticky .or. FF_uses_GayBerne .or. FF_uses_Shapes
1474 < end function FF_UsesDirectionalAtoms
1475 <
1476 < function FF_RequiresPrepairCalc() result(doesit)
1477 <   logical :: doesit
1478 <   doesit = FF_uses_EAM
1479 < end function FF_RequiresPrepairCalc
1480 <
1481 < function FF_RequiresPostpairCalc() result(doesit)
1482 <   logical :: doesit
1483 <   doesit = FF_uses_RF
1484 < end function FF_RequiresPostpairCalc
1485 <
1450 >
1451 > #ifdef IS_MPI
1452 >    !! this situation should only arise in MPI simulations
1453 >    if (unique_id_1 == unique_id_2) then
1454 >       skip_it = .true.
1455 >       return
1456 >    end if
1457 >
1458 >    !! this prevents us from doing the pair on multiple processors
1459 >    if (unique_id_1 < unique_id_2) then
1460 >       if (mod(unique_id_1 + unique_id_2,2) == 0) then
1461 >          skip_it = .true.
1462 >          return
1463 >       endif
1464 >    else                
1465 >       if (mod(unique_id_1 + unique_id_2,2) == 1) then
1466 >          skip_it = .true.
1467 >          return
1468 >       endif
1469 >    endif
1470 > #endif
1471 >
1472 >    !! the rest of these situations can happen in all simulations:
1473 >    do i = 1, nExcludes_global      
1474 >       if ((excludesGlobal(i) == unique_id_1) .or. &
1475 >            (excludesGlobal(i) == unique_id_2)) then
1476 >          skip_it = .true.
1477 >          return
1478 >       endif
1479 >    enddo
1480 >
1481 >    do i = 1, nSkipsForAtom(atom1)
1482 >       if (skipsForAtom(atom1, i) .eq. unique_id_2) then
1483 >          skip_it = .true.
1484 >          return
1485 >       endif
1486 >    end do
1487 >
1488 >    return
1489 >  end function skipThisPair
1490 >
1491 >  function FF_UsesDirectionalAtoms() result(doesit)
1492 >    logical :: doesit
1493 >    doesit = FF_uses_DirectionalAtoms
1494 >  end function FF_UsesDirectionalAtoms
1495 >
1496 >  function FF_RequiresPrepairCalc() result(doesit)
1497 >    logical :: doesit
1498 >    doesit = FF_uses_EAM
1499 >  end function FF_RequiresPrepairCalc
1500 >
1501 >  function FF_RequiresPostpairCalc() result(doesit)
1502 >    logical :: doesit
1503 >    if (electrostaticSummationMethod == REACTION_FIELD) doesit = .true.
1504 >  end function FF_RequiresPostpairCalc
1505 >
1506   #ifdef PROFILE
1507 < function getforcetime() result(totalforcetime)
1508 <   real(kind=dp) :: totalforcetime
1509 <   totalforcetime = forcetime
1510 < end function getforcetime
1507 >  function getforcetime() result(totalforcetime)
1508 >    real(kind=dp) :: totalforcetime
1509 >    totalforcetime = forcetime
1510 >  end function getforcetime
1511   #endif
1196
1197 !! This cleans componets of force arrays belonging only to fortran
1512  
1513 < subroutine add_stress_tensor(dpair, fpair)
1200 <  
1201 <   real( kind = dp ), dimension(3), intent(in) :: dpair, fpair
1202 <  
1203 <   ! because the d vector is the rj - ri vector, and
1204 <   ! because fx, fy, fz are the force on atom i, we need a
1205 <   ! negative sign here:  
1206 <  
1207 <   tau_Temp(1) = tau_Temp(1) - dpair(1) * fpair(1)
1208 <   tau_Temp(2) = tau_Temp(2) - dpair(1) * fpair(2)
1209 <   tau_Temp(3) = tau_Temp(3) - dpair(1) * fpair(3)
1210 <   tau_Temp(4) = tau_Temp(4) - dpair(2) * fpair(1)
1211 <   tau_Temp(5) = tau_Temp(5) - dpair(2) * fpair(2)
1212 <   tau_Temp(6) = tau_Temp(6) - dpair(2) * fpair(3)
1213 <   tau_Temp(7) = tau_Temp(7) - dpair(3) * fpair(1)
1214 <   tau_Temp(8) = tau_Temp(8) - dpair(3) * fpair(2)
1215 <   tau_Temp(9) = tau_Temp(9) - dpair(3) * fpair(3)
1216 <  
1217 <   virial_Temp = virial_Temp + &
1218 <        (tau_Temp(1) + tau_Temp(5) + tau_Temp(9))
1219 <  
1220 < end subroutine add_stress_tensor
1221 <
1222 < end module doForces
1513 >  !! This cleans componets of force arrays belonging only to fortran
1514  
1515 < !! Interfaces for C programs to module....
1515 >  subroutine add_stress_tensor(dpair, fpair)
1516  
1517 < subroutine initFortranFF(use_RF_c, thisStat)
1227 <    use doForces, ONLY: init_FF
1228 <    logical, intent(in) :: use_RF_c
1517 >    real( kind = dp ), dimension(3), intent(in) :: dpair, fpair
1518  
1519 <    integer, intent(out) :: thisStat  
1520 <    call init_FF(use_RF_c, thisStat)
1519 >    ! because the d vector is the rj - ri vector, and
1520 >    ! because fx, fy, fz are the force on atom i, we need a
1521 >    ! negative sign here:  
1522  
1523 < end subroutine initFortranFF
1523 >    tau_Temp(1) = tau_Temp(1) - dpair(1) * fpair(1)
1524 >    tau_Temp(2) = tau_Temp(2) - dpair(1) * fpair(2)
1525 >    tau_Temp(3) = tau_Temp(3) - dpair(1) * fpair(3)
1526 >    tau_Temp(4) = tau_Temp(4) - dpair(2) * fpair(1)
1527 >    tau_Temp(5) = tau_Temp(5) - dpair(2) * fpair(2)
1528 >    tau_Temp(6) = tau_Temp(6) - dpair(2) * fpair(3)
1529 >    tau_Temp(7) = tau_Temp(7) - dpair(3) * fpair(1)
1530 >    tau_Temp(8) = tau_Temp(8) - dpair(3) * fpair(2)
1531 >    tau_Temp(9) = tau_Temp(9) - dpair(3) * fpair(3)
1532  
1533 <  subroutine doForceloop(q, q_group, A, u_l, f, t, tau, pot, &
1534 <       do_pot_c, do_stress_c, error)
1237 <      
1238 <       use definitions, ONLY: dp
1239 <       use simulation
1240 <       use doForces, ONLY: do_force_loop
1241 <    !! Position array provided by C, dimensioned by getNlocal
1242 <    real ( kind = dp ), dimension(3, nLocal) :: q
1243 <    !! molecular center-of-mass position array
1244 <    real ( kind = dp ), dimension(3, nGroups) :: q_group
1245 <    !! Rotation Matrix for each long range particle in simulation.
1246 <    real( kind = dp), dimension(9, nLocal) :: A    
1247 <    !! Unit vectors for dipoles (lab frame)
1248 <    real( kind = dp ), dimension(3,nLocal) :: u_l
1249 <    !! Force array provided by C, dimensioned by getNlocal
1250 <    real ( kind = dp ), dimension(3,nLocal) :: f
1251 <    !! Torsion array provided by C, dimensioned by getNlocal
1252 <    real( kind = dp ), dimension(3,nLocal) :: t    
1533 >    virial_Temp = virial_Temp + &
1534 >         (tau_Temp(1) + tau_Temp(5) + tau_Temp(9))
1535  
1536 <    !! Stress Tensor
1537 <    real( kind = dp), dimension(9) :: tau  
1538 <    real ( kind = dp ) :: pot
1257 <    logical ( kind = 2) :: do_pot_c, do_stress_c
1258 <    integer :: error
1259 <    
1260 <    call do_force_loop(q, q_group, A, u_l, f, t, tau, pot, &
1261 <       do_pot_c, do_stress_c, error)
1262 <      
1263 < end subroutine doForceloop
1536 >  end subroutine add_stress_tensor
1537 >
1538 > end module doForces

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines