| 6 |
|
use force_globals |
| 7 |
|
use vector_class |
| 8 |
|
use atype_module |
| 9 |
– |
use lj |
| 9 |
|
#ifdef IS_MPI |
| 10 |
|
use mpiSimulation |
| 11 |
|
#endif |
| 25 |
|
integer, public, save :: nExcludes_Local = 0 |
| 26 |
|
integer, allocatable, dimension(:,:), public :: excludesLocal |
| 27 |
|
integer, allocatable, dimension(:), public :: excludesGlobal |
| 28 |
+ |
integer, allocatable, dimension(:), public :: molMembershipList |
| 29 |
|
|
| 30 |
|
real(kind=dp), save :: rcut2 = 0.0_DP |
| 31 |
|
real(kind=dp), save :: rcut6 = 0.0_DP |
| 69 |
|
|
| 70 |
|
subroutine SimulationSetup(setThisSim, nComponents, c_idents, & |
| 71 |
|
CnLocalExcludes, CexcludesLocal, CnGlobalExcludes, CexcludesGlobal, & |
| 72 |
+ |
CmolMembership, & |
| 73 |
|
status) |
| 74 |
|
|
| 75 |
|
type (simtype) :: setThisSim |
| 80 |
|
integer, dimension(2,CnLocalExcludes), intent(in) :: CexcludesLocal |
| 81 |
|
integer :: CnGlobalExcludes |
| 82 |
|
integer, dimension(CnGlobalExcludes), intent(in) :: CexcludesGlobal |
| 83 |
+ |
integer, dimension(nComponents),intent(in) :: CmolMembership |
| 84 |
|
!! Result status, success = 0, status = -1 |
| 85 |
|
integer, intent(out) :: status |
| 86 |
|
integer :: i, me, thisStat, alloc_stat, myNode |
| 107 |
|
|
| 108 |
|
call InitializeForceGlobals(natoms, thisStat) |
| 109 |
|
if (thisStat /= 0) then |
| 110 |
+ |
write(default_error,*) "SimSetup: InitializeForceGlobals error" |
| 111 |
|
status = -1 |
| 112 |
|
return |
| 113 |
|
endif |
| 114 |
|
|
| 115 |
|
call InitializeSimGlobals(thisStat) |
| 116 |
|
if (thisStat /= 0) then |
| 117 |
+ |
write(default_error,*) "SimSetup: InitializeSimGlobals error" |
| 118 |
|
status = -1 |
| 119 |
|
return |
| 120 |
|
endif |
| 172 |
|
enddo |
| 173 |
|
#endif |
| 174 |
|
|
| 171 |
– |
!! Create neighbor lists |
| 172 |
– |
call expandNeighborList(nComponents, thisStat) |
| 173 |
– |
if (thisStat /= 0) then |
| 174 |
– |
status = -1 |
| 175 |
– |
return |
| 176 |
– |
endif |
| 175 |
|
|
| 176 |
|
|
| 177 |
|
do i = 1, nExcludes_Local |
| 182 |
|
do i = 1, nExcludes_Global |
| 183 |
|
excludesGlobal(i) = CexcludesGlobal(i) |
| 184 |
|
enddo |
| 185 |
< |
|
| 185 |
> |
|
| 186 |
> |
do i = 1, nComponents |
| 187 |
> |
molMemberShipList(i) = CmolMembership(i) |
| 188 |
> |
! write(0,*) 'molMembershipList(',i,') = ', molMemberShipList(i) |
| 189 |
> |
enddo |
| 190 |
> |
|
| 191 |
|
if (status == 0) simulation_setup_complete = .true. |
| 192 |
|
|
| 193 |
|
end subroutine SimulationSetup |
| 199 |
|
thisSim%box = new_box_size |
| 200 |
|
box = thisSim%box |
| 201 |
|
|
| 199 |
– |
smallest = 1 |
| 200 |
– |
do i = 2, 3 |
| 201 |
– |
if (new_box_size(i) .lt. new_box_size(smallest)) smallest = i |
| 202 |
– |
end do |
| 203 |
– |
if (thisSim%rcut .gt. 0.5_dp * new_box_size(smallest)) & |
| 204 |
– |
call setRcut(0.5_dp * new_box_size(smallest), status) |
| 202 |
|
return |
| 203 |
|
end subroutine setBox_3d |
| 204 |
|
|
| 207 |
|
real(kind=dp) :: new_box_size |
| 208 |
|
thisSim%box(dim) = new_box_size |
| 209 |
|
box(dim) = thisSim%box(dim) |
| 213 |
– |
if (thisSim%rcut .gt. 0.5_dp * new_box_size) & |
| 214 |
– |
call setRcut(0.5_dp * new_box_size, status) |
| 210 |
|
end subroutine setBox_1d |
| 211 |
|
|
| 212 |
|
subroutine setRcut(new_rcut, status) |
| 215 |
|
thisSim%rcut = new_rcut |
| 216 |
|
rcut2 = thisSim%rcut * thisSim%rcut |
| 217 |
|
rcut6 = rcut2 * rcut2 * rcut2 |
| 223 |
– |
myStatus = 0 |
| 224 |
– |
call LJ_new_rcut(new_rcut, myStatus) |
| 225 |
– |
if (myStatus .ne. 0) then |
| 226 |
– |
write(default_error, *) 'LJ module refused our rcut!' |
| 227 |
– |
status = -1 |
| 228 |
– |
return |
| 229 |
– |
endif |
| 218 |
|
status = 0 |
| 219 |
|
return |
| 220 |
|
end subroutine setRcut |
| 352 |
|
thisStat = -1 |
| 353 |
|
return |
| 354 |
|
endif |
| 355 |
+ |
|
| 356 |
+ |
allocate(molMembershipList(getNlocal()), stat=alloc_stat) |
| 357 |
+ |
if (alloc_stat /= 0 ) then |
| 358 |
+ |
thisStat = -1 |
| 359 |
+ |
return |
| 360 |
+ |
endif |
| 361 |
|
|
| 362 |
|
end subroutine InitializeSimGlobals |
| 363 |
|
|
| 364 |
|
subroutine FreeSimGlobals() |
| 365 |
|
|
| 366 |
|
!We free in the opposite order in which we allocate in. |
| 367 |
< |
|
| 367 |
> |
|
| 368 |
> |
if (allocated(molMembershipList)) deallocate(molMembershipList) |
| 369 |
|
if (allocated(excludesGlobal)) deallocate(excludesGlobal) |
| 370 |
|
if (allocated(excludesLocal)) deallocate(excludesLocal) |
| 371 |
|
|