-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm_precells.f90
508 lines (426 loc) · 11.8 KB
/
m_precells.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
!---------------------------------------------------------------------------
! MELQUIADES: Metropolis Monte Carlo Program !
!---------------------------------------------------------------------------
!bop
!
! !Module: m_precells
!
! !Description: This module contains a group of routines needed to build
!the Linked-Cells List
!\\
!\\
! !Interface:
!
module m_precells
!
! !Uses:
!
use m_kind
use m_simtype
use m_boxtype
use m_constants, only : ndim
use m_cutoffs
implicit none
!
! !Public member functions:
!
public :: r_intcell
public :: f_idcell
public :: r_idneighs
public :: r_headinit
public :: r_headinit2
public :: r_headinit3
public :: r_linkscell
public :: r_linkscell2
public :: r_linkscell3
!
! !Revision history:
! 06Aug 2015 Asdrubal Lozada
!
!eop
!----------------------------------------------------------------------
contains
!
!bop
!
! !Iroutine: r_intcell
!
! !Description: This routine calculates the total
!number of cells on which the box simulation will be divided.
!\\
!\\
! !Interface:
!
subroutine r_intcell( y, x )
!
implicit none
!
! !Input parameters:
type(simulation), intent(inout) :: y
type(box), pointer :: x
!
! !Revision history:
! 06Aug 2015 Asdubal Lozada
!
!eop
!----------------------------------------------------------------------
! Local variables
character(len=8) :: ival
y%m_ncelln = 0 ! Default value
if( .not.y%m_solute ) then
x%m_ndiv(1) = int(x%m_edge(1))
x%m_ndiv(2) = int(x%m_edge(2))
x%m_ndiv(3) = int(x%m_edge(3))
do while((x%m_edge(1)/x%m_ndiv(1)) < y%m_cutoff .and. (x%m_edge(2)/x%m_ndiv(2)) < y%m_cutoff&
& .and. (x%m_edge(3)/x%m_ndiv(3)) < y%m_cutoff)
x%m_ndiv(1) = x%m_ndiv(1) - 1
x%m_ndiv(2) = x%m_ndiv(2) - 1
x%m_ndiv(3) = x%m_ndiv(3) - 1
x%m_cell(1) = x%m_ndiv(1)
x%m_cell(2) = x%m_ndiv(2)
x%m_cell(3) = x%m_ndiv(3)
end do
if(x%m_cell(1) >= 1 .and. x%m_cell(2) >= 1 .and. x%m_cell(3) >= 1) then
y%m_ncellc = x%m_cell(1) * x%m_cell(2) * x%m_cell(3)
else
write(*,'("Error cells number too small [<1]")')
write(*,'("Check cut-off")')
stop
end if
x%m_celli(1) = x%m_cell(1)/x%m_edge(1)
x%m_celli(2) = x%m_cell(2)/x%m_edge(2)
x%m_celli(3) = x%m_cell(3)/x%m_edge(3)
write(*,'("---------------------------------------------------------")')
write(*,'(" Linked-Cells method specfications")')
write(ival,'(i8)') y%m_ncellc
write(*,'(" Total number of cells : ",a8)') adjustl(ival)
write(*,'(" Size of subcells : ",3f8.1," [Å]")') x%m_edge(:)/x%m_cell(:)
write(*,'("---------------------------------------------------------")')
else
x%m_ndiv(1) = int(x%m_edge(1))
x%m_ndiv(2) = int(x%m_edge(2))
x%m_ndiv(3) = int(x%m_edge(3))
do while((x%m_edge(1)/x%m_ndiv(1)) < y%m_cutoff .and. (x%m_edge(2)/x%m_ndiv(2)) < y%m_cutoff&
& .and. (x%m_edge(3)/x%m_ndiv(3)) < y%m_cutoff)
x%m_ndiv(1) = x%m_ndiv(1) - 1
x%m_ndiv(2) = x%m_ndiv(2) - 1
x%m_ndiv(3) = x%m_ndiv(3) - 1
x%m_cell(1) = x%m_ndiv(1)
x%m_cell(2) = x%m_ndiv(2)
x%m_cell(3) = x%m_ndiv(3)
end do
if(x%m_cell(1) >= 1 .and. x%m_cell(2) >= 1 .and. x%m_cell(3) >= 1) then
y%m_ncellc = x%m_cell(1) * x%m_cell(2) * x%m_cell(3)
else
write(*,'("Error cells number too small [<1]")')
write(*,'("Check cut-off")')
stop
end if
x%m_celli(1) = x%m_cell(1)/x%m_edge(1)
x%m_celli(2) = x%m_cell(2)/x%m_edge(2)
x%m_celli(3) = x%m_cell(3)/x%m_edge(3)
write(*,'("---------------------------------------------------------")')
write(*,'(" Linked-Cells method specfications")')
write(*,'(" corresponding to components not excluded ")')
write(ival,'(i8)') y%m_ncellc
write(*,'(" Total number of cells : ",a8)') adjustl(ival)
write(*,'(" Size of subcells : ",3f8.1," [Å]")') x%m_edge(:)/x%m_cell(:)
write(*,'("---------------------------------------------------------")')
x%m_ndiv(1) = int(x%m_edge(1))
x%m_ndiv(2) = int(x%m_edge(2))
x%m_ndiv(3) = int(x%m_edge(3))
do while((x%m_edge(1)/x%m_ndiv(1)) < y%m_cutsol .and. (x%m_edge(2)/x%m_ndiv(2)) < y%m_cutsol&
& .and. (x%m_edge(3)/x%m_ndiv(3)) < y%m_cutsol)
x%m_ndiv(1) = x%m_ndiv(1) - 1
x%m_ndiv(2) = x%m_ndiv(2) - 1
x%m_ndiv(3) = x%m_ndiv(3) - 1
x%m_cells(1) = x%m_ndiv(1)
x%m_cells(2) = x%m_ndiv(2)
x%m_cells(3) = x%m_ndiv(3)
end do
if(x%m_cells(1) >= 1 .and. x%m_cells(2) >= 1 .and. x%m_cells(3) >= 1) then
y%m_ncelln = x%m_cells(1) * x%m_cells(2) * x%m_cells(3)
else
write(*,'("Error cells number too small [<1]")')
write(*,'("Check cut-off")')
stop
end if
x%m_cellsi(1) = x%m_cells(1)/x%m_edge(1)
x%m_cellsi(2) = x%m_cells(2)/x%m_edge(2)
x%m_cellsi(3) = x%m_cells(3)/x%m_edge(3)
write(*,*)'---------------------------------------------------------'
write(*,*)' Linked-Cell method specfications'
write(*,*)' corresponding to oversize compounds '
write(ival,'(i8)') y%m_ncelln
write(*,'(" Total number of cells : ",a8)') adjustl(ival)
write(*,'(" Size of subcells : ",3f8.1," [Å]")') x%m_edge(:)/x%m_cells(:)
write(*,*)'---------------------------------------------------------'
end if ! End active
end subroutine r_intcell
!
!bop
!
! !Iroutine: idcell
!
! !Description: This function calculates the index cell.
!\\
!\\
! !Interface:
!
function f_idcell( com, y, x )
implicit none
!
! !Input parameters:
type(simulation), intent(inout) :: y
type(box), pointer :: x
real(rkind), dimension(:), intent(in) :: com
!
! !Output parameters:
integer :: f_idcell
!
! !Revision history:
! 06Aug 2015 Asdrubal Lozada
!
!eop
!------------------------------------------------
!
! Local variables
real(rkind) :: xx, yy, zz
integer :: ix, iy, iz
xx = com(1) + x%m_hedge(1)
yy = com(2) + x%m_hedge(2)
zz = com(3) + x%m_hedge(3)
if( .not.y%m_solute ) then
ix = int(xx * x%m_celli(1))
iy = int(yy * x%m_celli(2))
iz = int(zz * x%m_celli(3))
!boc
f_idcell = ix + iy * x%m_cell(1) + iz * x%m_cell(1) * x%m_cell(2)
!eoc
else
ix = int(xx * x%m_cellsi(1))
iy = int(yy * x%m_cellsi(2))
iz = int(zz * x%m_cellsi(3))
f_idcell = ix + iy * x%m_cells(1) + iz * x%m_cells(1) * x%m_cells(2)
end if ! Active
end function f_idcell
!
!bop
!
! !Iroutine: r_idneighs
!
! !Description: This routine specifies and saves the list of neighbors.
!\\
!\\
! !Interface:
!
subroutine r_idneighs( idcell, y, x)
implicit none
!
! !Input parameters:
!
type(simulation), intent(inout) :: y
type(box), pointer :: x
integer,intent(in) :: idcell
!
! !Revision history:
! 06Aug 2015 Asdrubal Lozada
!
!eop
!-----------------------------------------------------------
! Local variables
integer :: jd_cell, iter, k
integer :: cell_ix, cell_iy, cell_iz
integer :: cell_jx, cell_jy, cell_jz
integer, dimension(ndim*ndim*ndim) :: nx, ny, nz
data nz/-1,-1,-1,-1,-1,-1,-1,-1,-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1/
data ny/-1,-1,-1, 0, 0, 0, 1, 1, 1,-1,-1,-1, 0, 0, 0, 1, 1, 1,-1,-1,-1, 0, 0, 0, 1, 1, 1/
data nx/-1, 0, 1,-1, 0, 1,-1, 0, 1,-1, 0, 1,-1, 0, 1,-1, 0, 1,-1, 0, 1,-1, 0, 1,-1, 0, 1/
iter = 0
if( .not.y%m_solute ) then
cell_iz = idcell / (x%m_cell(1)*x%m_cell(2))
cell_iy = mod((idcell/x%m_cell(1)),x%m_cell(2))
cell_ix = mod(idcell,x%m_cell(1))
do k = 1, y%m_viz
cell_jz = cell_iz + nz(k)
if( cell_jz < 0 ) then
cell_jz = cell_jz + x%m_cell(3)
else if(cell_jz >= x%m_cell(3)) then
cell_jz = cell_jz - x%m_cell(3)
end if
cell_jy = cell_iy + ny(k)
if( cell_jy < 0 ) then
cell_jy = cell_jy + x%m_cell(2)
else if(cell_jy >= x%m_cell(2)) then
cell_jy = cell_jy - x%m_cell(2)
end if
cell_jx = cell_ix + nx(k)
if( cell_jx < 0 ) then
cell_jx = cell_jx + x%m_cell(1)
else if( cell_jx >= x%m_cell(1) ) then
cell_jx = cell_jx - x%m_cell(1)
end if
jd_cell = cell_jx + cell_jy * x%m_cell(1) + cell_jz * x%m_cell(1) * x%m_cell(2)
iter = iter + 1
x%m_ncell(iter) = jd_cell ! Saves the list of neighbors
end do !k
else
!boc
cell_iz = idcell / (x%m_cells(1)*x%m_cells(2))
cell_iy = mod((idcell/x%m_cells(1)),x%m_cells(2))
cell_ix = mod(idcell,x%m_cells(1))
!eoc
do k = 1, y%m_viz
cell_jz = cell_iz + nz(k)
if( cell_jz < 0 ) then
cell_jz = cell_jz + x%m_cells(3)
else if( cell_jz >= x%m_cells(3) ) then
cell_jz = cell_jz - x%m_cells(3)
end if
cell_jy = cell_iy + ny(k)
if( cell_jy < 0 ) then
cell_jy = cell_jy + x%m_cells(2)
else if( cell_jy >= x%m_cells(2) ) then
cell_jy = cell_jy - x%m_cells(2)
end if
cell_jx = cell_ix + nx(k)
if(cell_jx < 0) then
cell_jx = cell_jx + x%m_cells(1)
else if(cell_jx >= x%m_cells(1)) then
cell_jx = cell_jx - x%m_cells(1)
end if
jd_cell = cell_jx + cell_jy * x%m_cells(1) + cell_jz * x%m_cells(1) * x%m_cells(2)
iter = iter + 1
x%m_ncelsa(iter) = jd_cell ! Store neighbor list common
end do !k
end if ! Active
end subroutine r_idneighs
!
!bop
!
! !Iroutine: r_linkscell
!
! !Description: In this routine the Linked-Cells List are builded.
!Head is at the initial position in the list. The last position have zero value.
!\\
!\\
! !Interface:
!
subroutine r_linkscell( y, x )
implicit none
!
! !Input parameters:
!
type(simulation), intent(inout) :: y
type(box), pointer :: x
!
! !Revision history:
! 06Aug 2015 Asdrubal Lozada
!
!eop
!-----------------------------------------------------------
! Local variables
integer :: idcell
integer :: j
real(rkind), dimension(3) :: com
do j = 1, y%m_mxmol
com(1) = x%m_cmass(1,j)
com(2) = x%m_cmass(2,j)
com(3) = x%m_cmass(3,j)
!boc
idcell = f_idcell( com, y, x )
x%m_list(j) = x%m_head(idcell)
x%m_head(idcell) = j
!eoc
end do ! j
end subroutine r_linkscell
subroutine r_linkscell2(y,x)
implicit none
! Dummy arguments
type(simulation), intent(inout) :: y
type(box), pointer :: x
! Local variables
integer :: idcell, j
real(rkind), dimension(3) :: com
do j = 1, y%m_mxmol
com(1) = x%m_cmass(1,j)
com(2) = x%m_cmass(2,j)
com(3) = x%m_cmass(3,j)
idcell = f_idcell( com, y, x )
x%m_list(j) = x%m_head(idcell)
x%m_head(idcell) = j
end do ! j
end subroutine r_linkscell2
subroutine r_linkscell3(y,x)
implicit none
! Dummy arguments
type(simulation), intent(inout) :: y
type(box), pointer :: x
! Local variables
integer :: idcell, j
real(rkind), dimension(3) :: com
do j = 1, y%m_mxmol
com(1) = x%m_cmass(1,j)
com(2) = x%m_cmass(2,j)
com(3) = x%m_cmass(3,j)
idcell = f_idcell( com, y, x )
x%m_listb(j) = x%m_hedsb(idcell)
x%m_hedsb(idcell) = j
end do ! j
end subroutine r_linkscell3
!
!bop
!
! !Iroutine: r_headinit
!
! !Description: This routine initializes the head values
!in Linked-Cell List.
!\\
!\\
! !Interface:
!
subroutine r_headinit( y, x )
implicit none
!
! !Input parameters:
type(simulation), intent(inout) :: y
type(box), pointer :: x
!
! !Revision history:
! 06Aug 2015 Asdrubal Lozada
!
!eop
!------------------------------------------------------
! Local variables
integer :: i
!boc
do i = 0, y%m_ncellc-1
x%m_head(i) = 0 ! Check
end do
!eoc
end subroutine r_headinit
subroutine r_headinit2( y, x )
implicit none
! Dummy arguments
type(simulation), intent(inout) :: y
type(box), pointer :: x
! Local variables
integer :: i
do i = 0, y%m_ncellc-1
x%m_head(i) = 0
end do ! i
end subroutine r_headinit2
subroutine r_headinit3( y, x )
implicit none
! Dummy arguments
type(simulation), intent(inout) :: y
type(box), pointer :: x
! Local variables
integer :: i
if(y%m_ncelln >= 1) then
do i = 0, y%m_ncelln-1
x%m_hedsb(i) = 0
end do ! i
end if ! ncells
end subroutine r_headinit3
end module m_precells