forked from NOAA-PSL/stochastic_physics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cellular_automata_global.F90
352 lines (279 loc) · 9.22 KB
/
cellular_automata_global.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
module cellular_automata_global_mod
implicit none
contains
subroutine cellular_automata_global(kstep,ca1_cpl,ca2_cpl,ca3_cpl,ca1_diag,ca2_diag,ca3_diag, &
domain_for_coupler,nblks,isc,iec,jsc,jec,npx,npy,nlev, &
nca,ncells,nlives,nfracseed,nseed,nthresh,ca_global,ca_sgs,iseed_ca, &
ca_smooth,nspinup,blocksize,nsmooth,ca_amplitude,mpiroot,mpicomm)
use kinddef, only: kind_phys
use update_ca, only: update_cells_sgs, update_cells_global
use halo_exchange, only: atmosphere_scalar_field_halo
use mersenne_twister, only: random_setseed,random_gauss,random_stat,random_number
use mpp_domains_mod, only: domain2D
use block_control_mod, only: block_control_type, define_blocks_packed
use mpi_wrapper, only: mype,mp_reduce_sum,mp_bcst,mp_reduce_max,mp_reduce_min, &
mpi_wrapper_initialize
implicit none
!L.Bengtsson, 2017-06
!This program evolves a cellular automaton uniform over the globe given
!the flag ca_global
integer, intent(in) :: kstep,ncells,nca,nlives,nseed,nspinup,nsmooth,mpiroot,mpicomm
integer, intent(in) :: iseed_ca
real(kind=kind_phys), intent(in) :: nfracseed,nthresh,ca_amplitude
logical, intent(in) :: ca_global, ca_sgs, ca_smooth
integer, intent(in) :: nblks,isc,iec,jsc,jec,npx,npy,nlev,blocksize
real(kind=kind_phys), intent(out) :: ca1_cpl(:,:),ca2_cpl(:,:),ca3_cpl(:,:)
real(kind=kind_phys), intent(out) :: ca1_diag(:,:),ca2_diag(:,:),ca3_diag(:,:)
type(domain2D), intent(inout) :: domain_for_coupler
type(block_control_type) :: Atm_block
type(random_stat) :: rstate
integer :: nlon, nlat, isize,jsize,nf,nn
integer :: inci, incj, nxc, nyc, nxch, nych
integer :: halo, k_in, i, j, k
integer :: seed, ierr7,blk, ix, iix, count4,ih,jh
integer :: blocksz,levs
integer(8) :: count, count_rate, count_max, count_trunc
integer(8) :: iscale = 10000000000
integer, allocatable :: iini_g(:,:,:),ilives_g(:,:)
real(kind=kind_phys), allocatable :: field_out(:,:,:), field_in(:,:),field_smooth(:,:)
real(kind=kind_phys), allocatable :: CA(:,:),CA1(:,:),CA2(:,:),CA3(:,:)
real(kind=kind_phys), allocatable :: noise1D(:),vertvelhigh(:,:),noise(:,:,:)
real(kind=kind_phys) :: psum,csum,CAmean,sq_diff,CAstdv
real(kind=kind_phys) :: Detmax(nca),Detmin(nca),Detmean(nca)
logical,save :: block_message=.true.
!nca :: switch for number of cellular automata to be used.
!ca_global :: switch for global cellular automata
!ca_sgs :: switch for cellular automata conditioned on SGS perturbed vertvel.
!nfracseed :: switch for number of random cells initially seeded
!nlives :: switch for maximum number of lives a cell can have
!nspinup :: switch for number of itterations to spin up the ca
!ncells :: switch for higher resolution grid e.g ncells=4
! gives 4x4 times the FV3 model grid resolution.
!ca_smooth :: switch to smooth the cellular automata
!nthresh :: threshold of perturbed vertical velocity used in case of sgs
! Initialize MPI and OpenMP
if (kstep==0) then
call mpi_wrapper_initialize(mpiroot,mpicomm)
end if
halo=1
k_in=1
!----------------------------------------------------------------------------
! Get information about the compute domain, allocate fields on this
! domain
! WRITE(*,*)'Entering cellular automata calculations'
! Some security checks for namelist combinations:
if(nca > 3)then
write(0,*)'Namelist option nca cannot be larger than 3 - exiting'
stop
endif
! if(ca_global == .true. .and. ca_sgs == .true.)then
! write(0,*)'Namelist options ca_global and ca_sgs cannot both be true - exiting'
! stop
! endif
! if(ca_sgs == .true. .and. ca_smooth == .true.)then
! write(0,*)'Currently ca_smooth does not work with ca_sgs - exiting'
! stop
! endif
nlon=iec-isc+1
nlat=jec-jsc+1
isize=nlon+2*halo
jsize=nlat+2*halo
inci=ncells
incj=ncells
nxc=nlon*ncells
nyc=nlat*ncells
nxch=nxc+2*halo
nych=nyc+2*halo
!Allocate fields:
allocate(field_in(nlon*nlat,1))
allocate(field_out(isize,jsize,1))
allocate(field_smooth(nlon,nlat))
allocate(iini_g(nxc,nyc,nca))
allocate(ilives_g(nxc,nyc))
allocate(vertvelhigh(nxc,nyc))
allocate(CA(nlon,nlat))
allocate(CA1(nlon,nlat))
allocate(CA2(nlon,nlat))
allocate(CA3(nlon,nlat))
allocate(noise(nxc,nyc,nca))
allocate(noise1D(nxc*nyc))
!Initialize:
noise(:,:,:) = 0.0
noise1D(:) = 0.0
iini_g(:,:,:) = 0
ilives_g(:,:) = 0
CA1(:,:) = 0.0
CA2(:,:) = 0.0
CA3(:,:) = 0.0
!Put the blocks of model fields into a 2d array - can't use nlev and blocksize directly,
!because the arguments to define_blocks_packed are intent(inout) and not intent(in).
levs=nlev
blocksz=blocksize
call define_blocks_packed('cellular_automata', Atm_block, isc, iec, jsc, jec, levs, &
blocksz, block_message)
!Generate random number, following stochastic physics code:
!if(kstep==0) then
if (iseed_ca == 0) then
! generate a random seed from system clock and ens member number
call system_clock(count, count_rate, count_max)
! iseed is elapsed time since unix epoch began (secs)
! truncate to 4 byte integer
count_trunc = iscale*(count/iscale)
count4 = count - count_trunc
else if (iseed_ca > 0) then
! don't rely on compiler to truncate integer(8) to integer(4) on
! overflow, do wrap around explicitly.
count4 = mod(mype + iseed_ca + 2147483648, 4294967296) - 2147483648
endif
!endif !kstep == 0
call random_setseed(count4,rstate)
do nf=1,nca
!Set seed (to be different) on all tasks. Save random state.
call random_number(noise1D,rstate)
!Put on 2D:
do j=1,nyc
do i=1,nxc
noise(i,j,nf)=noise1D(i+(j-1)*nxc)
enddo
enddo
enddo
!Initiate the cellular automaton with random numbers larger than nfracseed
if(kstep ==0)then
do nf=1,nca
do j = 1,nyc
do i = 1,nxc
if (noise(i,j,nf) > nfracseed ) then
iini_g(i,j,nf)=1
else
iini_g(i,j,nf)=0
endif
enddo
enddo
enddo !nf
endif ! kstep==0
!In case we want to condition the cellular automaton on a large scale field
!we here set the "condition" variable to a different model field depending
!on nf. (this is not used if ca_global = .true.)
do nf=1,nca !update each ca
do j = 1,nyc
do i = 1,nxc
ilives_g(i,j)=int(real(nlives)*1.5*noise(i,j,nf))
enddo
enddo
!Calculate neighbours and update the automata
!If ca-global is used, then nca independent CAs are called and weighted together to create one field; CA
CA(:,:)=0.
call update_cells_global(kstep,nca,nxc,nyc,nxch,nych,nlon,nlat,isc,iec,jsc,jec, &
npx,npy,domain_for_coupler,CA,iini_g,ilives_g, &
nlives,ncells,nfracseed,nseed,nthresh,nspinup,nf)
if (ca_smooth) then
do nn=1,nsmooth !number of iterations for the smoothing.
field_in=0.
!get halo
do j=1,nlat
do i=1,nlon
field_in(i+(j-1)*nlon,1)=CA(i,j)
enddo
enddo
field_out=0.
call atmosphere_scalar_field_halo(field_out,halo,isize,jsize,k_in,field_in,isc,iec,jsc,jec,npx,npy,domain_for_coupler)
do j=1,nlat
do i=1,nlon
ih=i+halo
jh=j+halo
field_smooth(i,j)=(2.0*field_out(ih,jh,1)+2.0*field_out(ih-1,jh,1)+ &
2.0*field_out(ih,jh-1,1)+2.0*field_out(ih+1,jh,1)+&
2.0*field_out(ih,jh+1,1)+2.0*field_out(ih-1,jh-1,1)+&
2.0*field_out(ih-1,jh+1,1)+2.0*field_out(ih+1,jh+1,1)+&
2.0*field_out(ih+1,jh-1,1))/18.
enddo
enddo
do j=1,nlat
do i=1,nlon
CA(i,j)=field_smooth(i,j)
enddo
enddo
enddo !nn
endif !smooth
!!!!Post processing, should be made into a separate subroutine
Detmax(1)=maxval(CA)
call mp_reduce_max(Detmax(1))
Detmin(1)=minval(CA)
call mp_reduce_min(Detmin(1))
do j=1,nlat
do i=1,nlon
CA(i,j) = ((CA(i,j) - Detmin(1))/(Detmax(1)-Detmin(1)))
enddo
enddo
!mean:
CAmean=0.
psum=0.
csum=0.
do j=1,nlat
do i=1,nlon
psum=psum+(CA(i,j))
csum=csum+1
enddo
enddo
call mp_reduce_sum(psum)
call mp_reduce_sum(csum)
CAmean=psum/csum
!std:
CAstdv=0.
sq_diff = 0.
do j=1,nlat
do i=1,nlon
sq_diff = sq_diff + (CA(i,j)-CAmean)**2.0
enddo
enddo
call mp_reduce_sum(sq_diff)
CAstdv = sqrt(sq_diff/csum)
!Transform to mean of 1 and ca_amplitude standard deviation
do j=1,nlat
do i=1,nlon
CA(i,j)=1.0 + (CA(i,j)-CAmean)*(ca_amplitude/CAstdv)
enddo
enddo
do j=1,nlat
do i=1,nlon
CA(i,j)=min(max(CA(i,j),0.),2.0)
enddo
enddo
!Put back into blocks 1D array to be passed to physics
!or diagnostics output
if(kstep < 1)then
CA(:,:)=1.
endif
if(nf==1)then
CA1(:,:)=CA(:,:)
elseif(nf==2)then
CA2(:,:)=CA(:,:)
else
CA3(:,:)=CA(:,:)
endif
enddo !nf
do blk = 1, Atm_block%nblks
do ix = 1,Atm_block%blksz(blk)
i = Atm_block%index(blk)%ii(ix) - isc + 1
j = Atm_block%index(blk)%jj(ix) - jsc + 1
ca1_diag(blk,ix)=CA1(i,j)
ca2_diag(blk,ix)=CA2(i,j)
ca3_diag(blk,ix)=CA3(i,j)
ca1_cpl(blk,ix)=CA1(i,j)
ca2_cpl(blk,ix)=CA2(i,j)
ca3_cpl(blk,ix)=CA3(i,j)
enddo
enddo
deallocate(field_in)
deallocate(field_out)
deallocate(field_smooth)
deallocate(iini_g)
deallocate(ilives_g)
deallocate(CA)
deallocate(CA1)
deallocate(CA2)
deallocate(CA3)
deallocate(noise)
deallocate(noise1D)
end subroutine cellular_automata_global
end module cellular_automata_global_mod