| 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 |
!! Impliments Sutton-Chen Metallic Potential |
| 43 |
!! See A.P.SUTTON and J.CHEN,PHIL MAG LETT 61,139-146,1990 |
| 44 |
|
| 45 |
|
| 46 |
module suttonchen |
| 47 |
use simulation |
| 48 |
use force_globals |
| 49 |
use status |
| 50 |
use atype_module |
| 51 |
use vector_class |
| 52 |
use fForceOptions |
| 53 |
#ifdef IS_MPI |
| 54 |
use mpiSimulation |
| 55 |
#endif |
| 56 |
implicit none |
| 57 |
PRIVATE |
| 58 |
#define __FORTRAN90 |
| 59 |
#include "UseTheForce/DarkSide/fInteractionMap.h" |
| 60 |
|
| 61 |
INTEGER, PARAMETER :: DP = selected_real_kind(15) |
| 62 |
|
| 63 |
logical, save :: SC_FF_initialized = .false. |
| 64 |
integer, save :: SC_Mixing_Policy |
| 65 |
real(kind = dp), save :: SC_rcut |
| 66 |
logical, save :: haveRcut = .false. |
| 67 |
logical, save :: haveMixingMap = .false. |
| 68 |
logical, save :: useGeometricDistanceMixing = .false. |
| 69 |
logical, save :: cleanArrays = .true. |
| 70 |
logical, save :: arraysAllocated = .false. |
| 71 |
|
| 72 |
|
| 73 |
character(len = statusMsgSize) :: errMesg |
| 74 |
integer :: sc_err |
| 75 |
|
| 76 |
character(len = 200) :: errMsg |
| 77 |
character(len=*), parameter :: RoutineName = "Sutton-Chen MODULE" |
| 78 |
!! Logical that determines if eam arrays should be zeroed |
| 79 |
logical :: nmflag = .false. |
| 80 |
|
| 81 |
|
| 82 |
type, private :: SCtype |
| 83 |
integer :: atid |
| 84 |
real(kind=dp) :: c |
| 85 |
real(kind=dp) :: m |
| 86 |
real(kind=dp) :: n |
| 87 |
real(kind=dp) :: alpha |
| 88 |
real(kind=dp) :: epsilon |
| 89 |
real(kind=dp) :: sc_rcut |
| 90 |
end type SCtype |
| 91 |
|
| 92 |
|
| 93 |
!! Arrays for derivatives used in force calculation |
| 94 |
real( kind = dp), dimension(:), allocatable :: rho |
| 95 |
real( kind = dp), dimension(:), allocatable :: frho |
| 96 |
real( kind = dp), dimension(:), allocatable :: dfrhodrho |
| 97 |
|
| 98 |
|
| 99 |
|
| 100 |
!! Arrays for MPI storage |
| 101 |
#ifdef IS_MPI |
| 102 |
real( kind = dp),save, dimension(:), allocatable :: dfrhodrho_col |
| 103 |
real( kind = dp),save, dimension(:), allocatable :: dfrhodrho_row |
| 104 |
real( kind = dp),save, dimension(:), allocatable :: frho_row |
| 105 |
real( kind = dp),save, dimension(:), allocatable :: frho_col |
| 106 |
real( kind = dp),save, dimension(:), allocatable :: rho_row |
| 107 |
real( kind = dp),save, dimension(:), allocatable :: rho_col |
| 108 |
real( kind = dp),save, dimension(:), allocatable :: rho_tmp |
| 109 |
#endif |
| 110 |
|
| 111 |
type, private :: SCTypeList |
| 112 |
integer :: nSCTypes = 0 |
| 113 |
integer :: currentSCtype = 0 |
| 114 |
|
| 115 |
type (SCtype), pointer :: SCtypes(:) => null() |
| 116 |
integer, pointer :: atidToSCtype(:) => null() |
| 117 |
end type SCTypeList |
| 118 |
|
| 119 |
type (SCTypeList), save :: SCList |
| 120 |
|
| 121 |
|
| 122 |
|
| 123 |
|
| 124 |
type :: MixParameters |
| 125 |
real(kind=DP) :: alpha |
| 126 |
real(kind=DP) :: epsilon |
| 127 |
real(kind=DP) :: m |
| 128 |
real(Kind=DP) :: n |
| 129 |
real(kind=DP) :: vpair_pot |
| 130 |
real(kind=dp) :: rCut |
| 131 |
logical :: rCutWasSet = .false. |
| 132 |
|
| 133 |
end type MixParameters |
| 134 |
|
| 135 |
type(MixParameters), dimension(:,:), allocatable :: MixingMap |
| 136 |
|
| 137 |
|
| 138 |
|
| 139 |
public :: setCutoffSC |
| 140 |
public :: do_SC_pair |
| 141 |
public :: newSCtype |
| 142 |
public :: calc_SC_prepair_rho |
| 143 |
public :: calc_SC_preforce_Frho |
| 144 |
public :: clean_SC |
| 145 |
public :: destroySCtypes |
| 146 |
public :: getSCCut |
| 147 |
! public :: setSCDefaultCutoff |
| 148 |
! public :: setSCUniformCutoff |
| 149 |
|
| 150 |
|
| 151 |
contains |
| 152 |
|
| 153 |
|
| 154 |
subroutine newSCtype(c_ident,c,m,n,alpha,epsilon,status) |
| 155 |
real (kind = dp ) :: c ! Density Scaling |
| 156 |
real (kind = dp ) :: m ! Density Exponent |
| 157 |
real (kind = dp ) :: n ! Pair Potential Exponent |
| 158 |
real (kind = dp ) :: alpha ! Length Scaling |
| 159 |
real (kind = dp ) :: epsilon ! Energy Scaling |
| 160 |
|
| 161 |
|
| 162 |
integer :: c_ident |
| 163 |
integer :: status |
| 164 |
|
| 165 |
integer :: nAtypes,nSCTypes,myATID |
| 166 |
integer :: maxVals |
| 167 |
integer :: alloc_stat |
| 168 |
integer :: current |
| 169 |
integer,pointer :: Matchlist(:) => null() |
| 170 |
|
| 171 |
status = 0 |
| 172 |
|
| 173 |
|
| 174 |
!! Assume that atypes has already been set and get the total number of types in atypes |
| 175 |
|
| 176 |
|
| 177 |
! check to see if this is the first time into |
| 178 |
if (.not.associated(SCList%SCTypes)) then |
| 179 |
call getMatchingElementList(atypes, "is_SC", .true., nSCtypes, MatchList) |
| 180 |
SCList%nSCtypes = nSCtypes |
| 181 |
allocate(SCList%SCTypes(nSCTypes)) |
| 182 |
nAtypes = getSize(atypes) |
| 183 |
allocate(SCList%atidToSCType(nAtypes)) |
| 184 |
end if |
| 185 |
|
| 186 |
SCList%currentSCType = SCList%currentSCType + 1 |
| 187 |
current = SCList%currentSCType |
| 188 |
|
| 189 |
myATID = getFirstMatchingElement(atypes, "c_ident", c_ident) |
| 190 |
SCList%atidToSCType(myATID) = current |
| 191 |
|
| 192 |
|
| 193 |
|
| 194 |
SCList%SCTypes(current)%atid = c_ident |
| 195 |
SCList%SCTypes(current)%alpha = alpha |
| 196 |
SCList%SCTypes(current)%c = c |
| 197 |
SCList%SCTypes(current)%m = m |
| 198 |
SCList%SCTypes(current)%n = n |
| 199 |
SCList%SCTypes(current)%epsilon = epsilon |
| 200 |
end subroutine newSCtype |
| 201 |
|
| 202 |
|
| 203 |
subroutine destroySCTypes() |
| 204 |
if (associated(SCList%SCtypes)) then |
| 205 |
deallocate(SCList%SCTypes) |
| 206 |
SCList%SCTypes=>null() |
| 207 |
end if |
| 208 |
if (associated(SCList%atidToSCtype)) then |
| 209 |
deallocate(SCList%atidToSCtype) |
| 210 |
SCList%atidToSCtype=>null() |
| 211 |
end if |
| 212 |
|
| 213 |
|
| 214 |
end subroutine destroySCTypes |
| 215 |
|
| 216 |
|
| 217 |
|
| 218 |
function getSCCut(atomID) result(cutValue) |
| 219 |
integer, intent(in) :: atomID |
| 220 |
integer :: scID |
| 221 |
real(kind=dp) :: cutValue |
| 222 |
|
| 223 |
scID = SCList%atidToSCType(atomID) |
| 224 |
cutValue = 2.0_dp * SCList%SCTypes(scID)%alpha |
| 225 |
end function getSCCut |
| 226 |
|
| 227 |
|
| 228 |
|
| 229 |
|
| 230 |
subroutine createMixingMap() |
| 231 |
integer :: nSCtypes, i, j |
| 232 |
real ( kind = dp ) :: e1, e2,m1,m2,alpha1,alpha2,n1,n2 |
| 233 |
real ( kind = dp ) :: rcut6, tp6, tp12 |
| 234 |
logical :: isSoftCore1, isSoftCore2, doShift |
| 235 |
|
| 236 |
if (SCList%currentSCtype == 0) then |
| 237 |
call handleError("SuttonChen", "No members in SCMap") |
| 238 |
return |
| 239 |
end if |
| 240 |
|
| 241 |
nSCtypes = SCList%nSCtypes |
| 242 |
|
| 243 |
if (.not. allocated(MixingMap)) then |
| 244 |
allocate(MixingMap(nSCtypes, nSCtypes)) |
| 245 |
endif |
| 246 |
useGeometricDistanceMixing = usesGeometricDistanceMixing() |
| 247 |
do i = 1, nSCtypes |
| 248 |
|
| 249 |
e1 = SCList%SCtypes(i)%epsilon |
| 250 |
m1 = SCList%SCtypes(i)%m |
| 251 |
n1 = SCList%SCtypes(i)%n |
| 252 |
alpha1 = SCList%SCtypes(i)%alpha |
| 253 |
|
| 254 |
do j = i, nSCtypes |
| 255 |
|
| 256 |
|
| 257 |
e2 = SCList%SCtypes(j)%epsilon |
| 258 |
m2 = SCList%SCtypes(j)%m |
| 259 |
n2 = SCList%SCtypes(j)%n |
| 260 |
alpha2 = SCList%SCtypes(j)%alpha |
| 261 |
|
| 262 |
if (useGeometricDistanceMixing) then |
| 263 |
MixingMap(i,j)%alpha = sqrt(alpha1 * alpha2) !SC formulation |
| 264 |
else |
| 265 |
MixingMap(i,j)%alpha = 0.5_dp * (alpha1 + alpha2) ! Goddard formulation |
| 266 |
endif |
| 267 |
|
| 268 |
MixingMap(i,j)%epsilon = sqrt(e1 * e2) |
| 269 |
MixingMap(i,j)%m = 0.5_dp*(m1+m2) |
| 270 |
MixingMap(i,j)%n = 0.5_dp*(n1+n2) |
| 271 |
MixingMap(i,j)%alpha = 0.5_dp*(alpha1+alpha2) |
| 272 |
MixingMap(i,j)%rcut = 2.0_dp *MixingMap(i,j)%alpha |
| 273 |
MixingMap(i,j)%vpair_pot = MixingMap(i,j)%epsilon* & |
| 274 |
(MixingMap(i,j)%alpha/MixingMap(i,j)%rcut)**MixingMap(i,j)%n |
| 275 |
|
| 276 |
if (i.ne.j) then |
| 277 |
MixingMap(j,i)%epsilon = MixingMap(i,j)%epsilon |
| 278 |
MixingMap(j,i)%m = MixingMap(i,j)%m |
| 279 |
MixingMap(j,i)%n = MixingMap(i,j)%n |
| 280 |
MixingMap(j,i)%alpha = MixingMap(i,j)%alpha |
| 281 |
MixingMap(j,i)%rcut = MixingMap(i,j)%rcut |
| 282 |
MixingMap(j,i)%vpair_pot = MixingMap(i,j)%vpair_pot |
| 283 |
endif |
| 284 |
enddo |
| 285 |
enddo |
| 286 |
|
| 287 |
haveMixingMap = .true. |
| 288 |
|
| 289 |
end subroutine createMixingMap |
| 290 |
|
| 291 |
|
| 292 |
!! routine checks to see if array is allocated, deallocates array if allocated |
| 293 |
!! and then creates the array to the required size |
| 294 |
subroutine allocateSC() |
| 295 |
integer :: status |
| 296 |
|
| 297 |
#ifdef IS_MPI |
| 298 |
integer :: nAtomsInRow |
| 299 |
integer :: nAtomsInCol |
| 300 |
#endif |
| 301 |
integer :: alloc_stat |
| 302 |
|
| 303 |
|
| 304 |
status = 0 |
| 305 |
#ifdef IS_MPI |
| 306 |
nAtomsInRow = getNatomsInRow(plan_atom_row) |
| 307 |
nAtomsInCol = getNatomsInCol(plan_atom_col) |
| 308 |
#endif |
| 309 |
|
| 310 |
|
| 311 |
|
| 312 |
if (allocated(frho)) deallocate(frho) |
| 313 |
allocate(frho(nlocal),stat=alloc_stat) |
| 314 |
if (alloc_stat /= 0) then |
| 315 |
status = -1 |
| 316 |
end if |
| 317 |
|
| 318 |
if (allocated(rho)) deallocate(rho) |
| 319 |
allocate(rho(nlocal),stat=alloc_stat) |
| 320 |
if (alloc_stat /= 0) then |
| 321 |
status = -1 |
| 322 |
end if |
| 323 |
|
| 324 |
if (allocated(dfrhodrho)) deallocate(dfrhodrho) |
| 325 |
allocate(dfrhodrho(nlocal),stat=alloc_stat) |
| 326 |
if (alloc_stat /= 0) then |
| 327 |
status = -1 |
| 328 |
end if |
| 329 |
|
| 330 |
#ifdef IS_MPI |
| 331 |
|
| 332 |
if (allocated(rho_tmp)) deallocate(rho_tmp) |
| 333 |
allocate(rho_tmp(nlocal),stat=alloc_stat) |
| 334 |
if (alloc_stat /= 0) then |
| 335 |
status = -1 |
| 336 |
end if |
| 337 |
|
| 338 |
|
| 339 |
if (allocated(frho_row)) deallocate(frho_row) |
| 340 |
allocate(frho_row(nAtomsInRow),stat=alloc_stat) |
| 341 |
if (alloc_stat /= 0) then |
| 342 |
status = -1 |
| 343 |
end if |
| 344 |
if (allocated(rho_row)) deallocate(rho_row) |
| 345 |
allocate(rho_row(nAtomsInRow),stat=alloc_stat) |
| 346 |
if (alloc_stat /= 0) then |
| 347 |
status = -1 |
| 348 |
end if |
| 349 |
if (allocated(dfrhodrho_row)) deallocate(dfrhodrho_row) |
| 350 |
allocate(dfrhodrho_row(nAtomsInRow),stat=alloc_stat) |
| 351 |
if (alloc_stat /= 0) then |
| 352 |
status = -1 |
| 353 |
end if |
| 354 |
|
| 355 |
|
| 356 |
! Now do column arrays |
| 357 |
|
| 358 |
if (allocated(frho_col)) deallocate(frho_col) |
| 359 |
allocate(frho_col(nAtomsInCol),stat=alloc_stat) |
| 360 |
if (alloc_stat /= 0) then |
| 361 |
status = -1 |
| 362 |
end if |
| 363 |
if (allocated(rho_col)) deallocate(rho_col) |
| 364 |
allocate(rho_col(nAtomsInCol),stat=alloc_stat) |
| 365 |
if (alloc_stat /= 0) then |
| 366 |
status = -1 |
| 367 |
end if |
| 368 |
if (allocated(dfrhodrho_col)) deallocate(dfrhodrho_col) |
| 369 |
allocate(dfrhodrho_col(nAtomsInCol),stat=alloc_stat) |
| 370 |
if (alloc_stat /= 0) then |
| 371 |
status = -1 |
| 372 |
end if |
| 373 |
|
| 374 |
#endif |
| 375 |
if (status == -1) then |
| 376 |
call handleError("SuttonChen:allocateSC","Error in allocating SC arrays") |
| 377 |
end if |
| 378 |
arraysAllocated = .true. |
| 379 |
end subroutine allocateSC |
| 380 |
|
| 381 |
!! C sets rcut to be the largest cutoff of any atype |
| 382 |
!! present in this simulation. Doesn't include all atypes |
| 383 |
!! sim knows about, just those in the simulation. |
| 384 |
subroutine setCutoffSC(rcut, status) |
| 385 |
real(kind=dp) :: rcut |
| 386 |
integer :: status |
| 387 |
status = 0 |
| 388 |
|
| 389 |
SC_rcut = rcut |
| 390 |
|
| 391 |
end subroutine setCutoffSC |
| 392 |
|
| 393 |
!! This array allocates module arrays if needed and builds mixing map. |
| 394 |
subroutine clean_SC() |
| 395 |
if (.not.arraysAllocated) call allocateSC() |
| 396 |
if (.not.haveMixingMap) call createMixingMap() |
| 397 |
! clean non-IS_MPI first |
| 398 |
frho = 0.0_dp |
| 399 |
rho = 0.0_dp |
| 400 |
dfrhodrho = 0.0_dp |
| 401 |
! clean MPI if needed |
| 402 |
#ifdef IS_MPI |
| 403 |
frho_row = 0.0_dp |
| 404 |
frho_col = 0.0_dp |
| 405 |
rho_row = 0.0_dp |
| 406 |
rho_col = 0.0_dp |
| 407 |
rho_tmp = 0.0_dp |
| 408 |
dfrhodrho_row = 0.0_dp |
| 409 |
dfrhodrho_col = 0.0_dp |
| 410 |
#endif |
| 411 |
end subroutine clean_SC |
| 412 |
|
| 413 |
|
| 414 |
|
| 415 |
!! Calculates rho_r |
| 416 |
subroutine calc_sc_prepair_rho(atom1,atom2,d,r,rijsq, rcut) |
| 417 |
integer :: atom1,atom2 |
| 418 |
real(kind = dp), dimension(3) :: d |
| 419 |
real(kind = dp), intent(inout) :: r |
| 420 |
real(kind = dp), intent(inout) :: rijsq, rcut |
| 421 |
! value of electron density rho do to atom i at atom j |
| 422 |
real(kind = dp) :: rho_i_at_j |
| 423 |
! value of electron density rho do to atom j at atom i |
| 424 |
real(kind = dp) :: rho_j_at_i |
| 425 |
|
| 426 |
! we don't use the derivatives, dummy variables |
| 427 |
real( kind = dp) :: drho |
| 428 |
integer :: sc_err |
| 429 |
|
| 430 |
integer :: atid1,atid2 ! Global atid |
| 431 |
integer :: myid_atom1 ! EAM atid |
| 432 |
integer :: myid_atom2 |
| 433 |
|
| 434 |
|
| 435 |
! check to see if we need to be cleaned at the start of a force loop |
| 436 |
|
| 437 |
if (cleanArrays) call clean_SC() |
| 438 |
cleanArrays = .false. |
| 439 |
|
| 440 |
#ifdef IS_MPI |
| 441 |
Atid1 = Atid_row(Atom1) |
| 442 |
Atid2 = Atid_col(Atom2) |
| 443 |
#else |
| 444 |
Atid1 = Atid(Atom1) |
| 445 |
Atid2 = Atid(Atom2) |
| 446 |
#endif |
| 447 |
|
| 448 |
Myid_atom1 = SCList%atidtoSCtype(Atid1) |
| 449 |
Myid_atom2 = SCList%atidtoSCtype(Atid2) |
| 450 |
|
| 451 |
|
| 452 |
|
| 453 |
rho_i_at_j = (MixingMap(Myid_atom1,Myid_atom2)%alpha/r)& |
| 454 |
**MixingMap(Myid_atom1,Myid_atom2)%m |
| 455 |
rho_j_at_i = rho_i_at_j |
| 456 |
|
| 457 |
#ifdef IS_MPI |
| 458 |
rho_col(atom2) = rho_col(atom2) + rho_i_at_j |
| 459 |
rho_row(atom1) = rho_row(atom1) + rho_j_at_i |
| 460 |
#else |
| 461 |
rho(atom2) = rho(atom2) + rho_i_at_j |
| 462 |
rho(atom1) = rho(atom1) + rho_j_at_i |
| 463 |
#endif |
| 464 |
|
| 465 |
end subroutine calc_sc_prepair_rho |
| 466 |
|
| 467 |
|
| 468 |
!! Calculate the rho_a for all local atoms |
| 469 |
subroutine calc_sc_preforce_Frho(nlocal,pot) |
| 470 |
integer :: nlocal |
| 471 |
real(kind=dp) :: pot |
| 472 |
integer :: i,j |
| 473 |
integer :: atom |
| 474 |
integer :: atype1 |
| 475 |
integer :: atid1 |
| 476 |
integer :: myid |
| 477 |
|
| 478 |
|
| 479 |
!! Scatter the electron density from pre-pair calculation back to local atoms |
| 480 |
#ifdef IS_MPI |
| 481 |
call scatter(rho_row,rho,plan_atom_row,sc_err) |
| 482 |
if (sc_err /= 0 ) then |
| 483 |
write(errMsg,*) " Error scattering rho_row into rho" |
| 484 |
call handleError(RoutineName,errMesg) |
| 485 |
endif |
| 486 |
call scatter(rho_col,rho_tmp,plan_atom_col,sc_err) |
| 487 |
if (sc_err /= 0 ) then |
| 488 |
write(errMsg,*) " Error scattering rho_col into rho" |
| 489 |
call handleError(RoutineName,errMesg) |
| 490 |
|
| 491 |
endif |
| 492 |
|
| 493 |
rho(1:nlocal) = rho(1:nlocal) + rho_tmp(1:nlocal) |
| 494 |
#endif |
| 495 |
|
| 496 |
|
| 497 |
|
| 498 |
!! Calculate F(rho) and derivative |
| 499 |
do atom = 1, nlocal |
| 500 |
Myid = SCList%atidtoSctype(Atid(atom)) |
| 501 |
frho(atom) = -SCList%SCTypes(Myid)%c * & |
| 502 |
SCList%SCTypes(Myid)%epsilon * sqrt(rho(atom)) |
| 503 |
|
| 504 |
dfrhodrho(atom) = 0.5_dp*frho(atom)/rho(atom) |
| 505 |
|
| 506 |
pot = pot + frho(atom) |
| 507 |
enddo |
| 508 |
|
| 509 |
#ifdef IS_MPI |
| 510 |
!! communicate f(rho) and derivatives back into row and column arrays |
| 511 |
call gather(frho,frho_row,plan_atom_row, sc_err) |
| 512 |
if (sc_err /= 0) then |
| 513 |
call handleError("cal_eam_forces()","MPI gather frho_row failure") |
| 514 |
endif |
| 515 |
call gather(dfrhodrho,dfrhodrho_row,plan_atom_row, sc_err) |
| 516 |
if (sc_err /= 0) then |
| 517 |
call handleError("cal_eam_forces()","MPI gather dfrhodrho_row failure") |
| 518 |
endif |
| 519 |
call gather(frho,frho_col,plan_atom_col, sc_err) |
| 520 |
if (sc_err /= 0) then |
| 521 |
call handleError("cal_eam_forces()","MPI gather frho_col failure") |
| 522 |
endif |
| 523 |
call gather(dfrhodrho,dfrhodrho_col,plan_atom_col, sc_err) |
| 524 |
if (sc_err /= 0) then |
| 525 |
call handleError("cal_eam_forces()","MPI gather dfrhodrho_col failure") |
| 526 |
endif |
| 527 |
#endif |
| 528 |
|
| 529 |
|
| 530 |
end subroutine calc_sc_preforce_Frho |
| 531 |
|
| 532 |
|
| 533 |
!! Does Sutton-Chen pairwise Force calculation. |
| 534 |
subroutine do_sc_pair(atom1, atom2, d, rij, r2, rcut, sw, vpair, fpair, & |
| 535 |
pot, f, do_pot) |
| 536 |
!Arguments |
| 537 |
integer, intent(in) :: atom1, atom2 |
| 538 |
real( kind = dp ), intent(in) :: rij, r2, rcut |
| 539 |
real( kind = dp ) :: pot, sw, vpair |
| 540 |
real( kind = dp ), dimension(3,nLocal) :: f |
| 541 |
real( kind = dp ), intent(in), dimension(3) :: d |
| 542 |
real( kind = dp ), intent(inout), dimension(3) :: fpair |
| 543 |
|
| 544 |
logical, intent(in) :: do_pot |
| 545 |
|
| 546 |
real( kind = dp ) :: drdx,drdy,drdz |
| 547 |
real( kind = dp ) :: dvpdr |
| 548 |
real( kind = dp ) :: drhodr |
| 549 |
real( kind = dp ) :: dudr |
| 550 |
real( kind = dp ) :: drhoidr,drhojdr |
| 551 |
real( kind = dp ) :: Fx,Fy,Fz |
| 552 |
real( kind = dp ) :: d2pha,phb,d2phb |
| 553 |
real( kind = dp ) :: pot_temp,vptmp |
| 554 |
real( kind = dp ) :: epsilonij,aij,nij,mij,vcij |
| 555 |
integer :: id1,id2 |
| 556 |
integer :: mytype_atom1 |
| 557 |
integer :: mytype_atom2 |
| 558 |
integer :: atid1,atid2 |
| 559 |
!Local Variables |
| 560 |
|
| 561 |
! write(*,*) "Frho: ", Frho(atom1) |
| 562 |
|
| 563 |
cleanArrays = .true. |
| 564 |
|
| 565 |
dvpdr = 0.0E0_DP |
| 566 |
|
| 567 |
|
| 568 |
#ifdef IS_MPI |
| 569 |
atid1 = atid_row(atom1) |
| 570 |
atid2 = atid_col(atom2) |
| 571 |
#else |
| 572 |
atid1 = atid(atom1) |
| 573 |
atid2 = atid(atom2) |
| 574 |
#endif |
| 575 |
|
| 576 |
mytype_atom1 = SCList%atidToSCType(atid1) |
| 577 |
mytype_atom2 = SCList%atidTOSCType(atid2) |
| 578 |
|
| 579 |
drdx = d(1)/rij |
| 580 |
drdy = d(2)/rij |
| 581 |
drdz = d(3)/rij |
| 582 |
|
| 583 |
|
| 584 |
epsilonij = MixingMap(mytype_atom1,mytype_atom2)%epsilon |
| 585 |
aij = MixingMap(mytype_atom1,mytype_atom2)%alpha |
| 586 |
nij = MixingMap(mytype_atom1,mytype_atom2)%n |
| 587 |
mij = MixingMap(mytype_atom1,mytype_atom2)%m |
| 588 |
vcij = MixingMap(mytype_atom1,mytype_atom2)%vpair_pot |
| 589 |
|
| 590 |
vptmp = epsilonij*((aij/rij)**nij) |
| 591 |
|
| 592 |
|
| 593 |
dvpdr = -nij*vptmp/rij |
| 594 |
drhodr = -mij*((aij/rij)**mij)/rij |
| 595 |
|
| 596 |
|
| 597 |
dudr = drhodr*(dfrhodrho(atom1)+dfrhodrho(atom2)) & |
| 598 |
+ dvpdr |
| 599 |
|
| 600 |
pot_temp = vptmp + vcij |
| 601 |
|
| 602 |
|
| 603 |
#ifdef IS_MPI |
| 604 |
dudr = drhodr*(dfrhodrho_row(atom1)+dfrhodrho_col(atom2)) & |
| 605 |
+ dvpdr |
| 606 |
|
| 607 |
#else |
| 608 |
dudr = drhodr*(dfrhodrho(atom1)+dfrhodrho(atom2)) & |
| 609 |
+ dvpdr |
| 610 |
#endif |
| 611 |
|
| 612 |
|
| 613 |
fx = dudr * drdx |
| 614 |
fy = dudr * drdy |
| 615 |
fz = dudr * drdz |
| 616 |
|
| 617 |
|
| 618 |
#ifdef IS_MPI |
| 619 |
if (do_pot) then |
| 620 |
pot_Row(METALLIC_POT,atom1) = pot_Row(METALLIC_POT,atom1) + (pot_temp)*0.5 |
| 621 |
pot_Col(METALLIC_POT,atom2) = pot_Col(METALLIC_POT,atom2) + (pot_temp)*0.5 |
| 622 |
end if |
| 623 |
|
| 624 |
f_Row(1,atom1) = f_Row(1,atom1) + fx |
| 625 |
f_Row(2,atom1) = f_Row(2,atom1) + fy |
| 626 |
f_Row(3,atom1) = f_Row(3,atom1) + fz |
| 627 |
|
| 628 |
f_Col(1,atom2) = f_Col(1,atom2) - fx |
| 629 |
f_Col(2,atom2) = f_Col(2,atom2) - fy |
| 630 |
f_Col(3,atom2) = f_Col(3,atom2) - fz |
| 631 |
#else |
| 632 |
|
| 633 |
if(do_pot) then |
| 634 |
pot = pot + pot_temp |
| 635 |
end if |
| 636 |
|
| 637 |
f(1,atom1) = f(1,atom1) + fx |
| 638 |
f(2,atom1) = f(2,atom1) + fy |
| 639 |
f(3,atom1) = f(3,atom1) + fz |
| 640 |
|
| 641 |
f(1,atom2) = f(1,atom2) - fx |
| 642 |
f(2,atom2) = f(2,atom2) - fy |
| 643 |
f(3,atom2) = f(3,atom2) - fz |
| 644 |
#endif |
| 645 |
|
| 646 |
|
| 647 |
#ifdef IS_MPI |
| 648 |
id1 = AtomRowToGlobal(atom1) |
| 649 |
id2 = AtomColToGlobal(atom2) |
| 650 |
#else |
| 651 |
id1 = atom1 |
| 652 |
id2 = atom2 |
| 653 |
#endif |
| 654 |
|
| 655 |
if (molMembershipList(id1) .ne. molMembershipList(id2)) then |
| 656 |
|
| 657 |
fpair(1) = fpair(1) + fx |
| 658 |
fpair(2) = fpair(2) + fy |
| 659 |
fpair(3) = fpair(3) + fz |
| 660 |
|
| 661 |
endif |
| 662 |
|
| 663 |
|
| 664 |
end subroutine do_sc_pair |
| 665 |
|
| 666 |
|
| 667 |
|
| 668 |
end module suttonchen |