-
Notifications
You must be signed in to change notification settings - Fork 0
/
averaged_sw_imp.py
275 lines (220 loc) · 8.08 KB
/
averaged_sw_imp.py
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
#Use implicit midpoint with fixed point on advection velocity
#get command arguments
import argparse
parser = argparse.ArgumentParser(description='Williamson 5 testcase for averaged propagator.')
parser.add_argument('--ref_level', type=int, default=3, help='Refinement level of icosahedral grid. Default 3.')
parser.add_argument('--tmax', type=float, default=360, help='Final time in hours. Default 24x15=360.')
parser.add_argument('--dumpt', type=float, default=6, help='Dump time in hours. Default 6.')
parser.add_argument('--dt', type=float, default=3, help='Timestep in hours. Default 3.')
parser.add_argument('--rho', type=float, default=1, help='Averaging window width as a multiple of dt. Default 1.')
parser.add_argument('--linear', action='store_false', dest='nonlinear', help='Run linear model if present, otherwise run nonlinear model')
parser.add_argument('--Mbar', action='store_true', dest='get_Mbar', help='Compute suitable Mbar, print it and exit.')
parser.add_argument('--filter', action='store_true', help='Use a filter in the averaging exponential')
parser.add_argument('--filter_val', type=float, default=0.75, help='Cut-off for filter')
parser.add_argument('--ppp', type=float, default=3, help='Points per time-period for averaging.')
parser.add_argument('--ncycles', type=int, default=2, help='Number of subcycles in nonlinear step')
parser.add_argument('--filename', type=str, default='w2')
parser.add_argument('--theta', type=float, default=0.5, help='Implicit timestepping parameter for nonlinear propagator. 0.5 = implicit midpoint rule, 1.0 = full implicit')
args = parser.parse_known_args()
args = args[0]
filter = args.filter
filter_val = args.filter_val
theta = args.theta
#checking cheby parameters based on ref_level
ref_level = args.ref_level
eigs = [0.003465, 0.007274, 0.014955] #maximum frequency
from math import pi
min_time_period = 2*pi/eigs[ref_level-3]
hours = args.dt
dt = 60*60*hours
rho = args.rho #averaging window is rho*dt
L = eigs[ref_level-3]*dt*rho
ppp = args.ppp #points per (minimum) time period
# rho*dt/min_time_period = number of min_time_periods that fit in rho*dt
# we want at least ppp times this number of sample points
from math import ceil
Mbar = ceil(ppp*rho*dt*eigs[ref_level-3]/2/pi)
print(args)
if args.get_Mbar:
print("Mbar="+str(Mbar))
import sys; sys.exit()
from cheby_exp import *
from firedrake import *
import numpy as np
from firedrake.petsc import PETSc
print = PETSc.Sys.Print
assert Mbar==COMM_WORLD.size, str(Mbar)+' '+str(COMM_WORLD.size)
print('averaging window', rho*dt, 'sample width', rho*dt/Mbar)
print('Mbar', Mbar, 'samples per min time period', min_time_period/(rho*dt/Mbar))
#ensemble communicator
ensemble = Ensemble(COMM_WORLD, 1)
#some domain, parameters and FS setup
R0 = 6371220.
H = Constant(5960.)
mesh = IcosahedralSphereMesh(radius=R0,
refinement_level=ref_level, degree=3,
comm = ensemble.comm)
cx = SpatialCoordinate(mesh)
mesh.init_cell_orientations(cx)
cx, cy, cz = SpatialCoordinate(mesh)
outward_normals = CellNormal(mesh)
perp = lambda u: cross(outward_normals, u)
V1 = FunctionSpace(mesh, "BDM", 2)
V2 = FunctionSpace(mesh, "DG", 1)
W = MixedFunctionSpace((V1, V2))
Omega = Constant(7.292e-5) # rotation rate
f = 2*Omega*cz/Constant(R0) # Coriolis parameter
g = Constant(9.8) # Gravitational constant
b = Function(V2, name="Topography")
c = sqrt(g*H)
#Set up the exponential operator
operator_in = Function(W)
u_in, eta_in = split(operator_in)
#D = eta + b
u, eta = TrialFunctions(W)
v, phi = TestFunctions(W)
F = (
- inner(f*perp(u_in),v)*dx
+g*eta_in*div(v)*dx
- H*div(u_in)*phi*dx
)
a = inner(v,u)*dx + phi*eta*dx
operator_out = Function(W)
params = {
'ksp_type': 'preonly',
'pc_type': 'fieldsplit',
'fieldsplit_0_ksp_type':'cg',
'fieldsplit_0_pc_type':'bjacobi',
'fieldsplit_0_sub_pc_type':'ilu',
'fieldsplit_1_ksp_type':'preonly',
'fieldsplit_1_pc_type':'bjacobi',
'fieldsplit_1_sub_pc_type':'ilu'
}
Prob = LinearVariationalProblem(a, F, operator_out)
OperatorSolver = LinearVariationalSolver(Prob, solver_parameters=params)
ncheb = 10000
cheby = cheby_exp(OperatorSolver, operator_in, operator_out,
ncheb, tol=1.0e-6, L=L, filter=filter, filter_val=filter_val)
cheby2 = cheby_exp(OperatorSolver, operator_in, operator_out,
ncheb, tol=1.0e-6, L=L, filter=False)
#solvers for slow part
USlow_in = Function(W) #value at previous timestep
USlow_out = Function(W) #value at RK stage
Unl = Function(W) #outer loop for slow solver
u0, eta0 = split(USlow_in)
u1, eta1 = split(USlow_out)
uh = theta*u1 + (1-theta)*u0
etah = theta*eta1 + (1-theta)*eta0
#RHS for Forward Euler step
gradperp = lambda f: perp(grad(f))
n = FacetNormal(mesh)
Upwind = 0.5 * (sign(dot(uh, n)) + 1)
both = lambda u: 2*avg(u)
K = 0.5*inner(uh, u0)
uup = 0.5 * (dot(uh, n) + abs(dot(uh, n)))
ncycles = args.ncycles
dT = Constant(dt/ncycles)
eqn = (
inner(v, u1-u0)*dx + phi*(eta1-eta0)*dx
+ dT*inner(perp(grad(inner(v, perp(uh)))), uh)*dx
- dT*inner(both(perp(n)*inner(v, perp(uh))),
both(Upwind*uh))*dS
+ dT*div(v)*K*dx
+ dT*inner(grad(phi), uh*(etah-b))*dx
- dT*jump(phi)*(uup('+')*(etah('+')-b('+'))
- uup('-')*(etah('-') - b('-')))*dS
)
#with topography, D = H + eta - b
params = {
"ksp_type": "preonly",
"mat_type":"aij",
"pc_type": "lu",
"pc_factor_mat_solver_type": "mumps"
}
SlowProb = NonlinearVariationalProblem(eqn, USlow_out)
SlowSolver = NonlinearVariationalSolver(SlowProb,
solver_parameters = params)
t = 0.
tmax = 60.*60.*args.tmax
dumpt = 60.*60.*6
tdump = 0.
svals = np.arange(0.5, Mbar)/Mbar #tvals goes from -rho*dt/2 to rho*dt/2
weights = np.exp(-1.0/svals/(1.0-svals))
weights = weights/np.sum(weights)
print(weights)
svals -= 0.5
rank = ensemble.ensemble_comm.rank
expt = rho*dt*svals[rank]
wt = weights[rank]
print(wt,"weight",expt)
x = SpatialCoordinate(mesh)
u_0 = 20.0 # maximum amplitude of the zonal wind [m/s]
u_max = Constant(u_0)
u_expr = as_vector([-u_max*x[1]/R0, u_max*x[0]/R0, 0.0])
eta_expr = - ((R0 * Omega * u_max + u_max*u_max/2.0)*(x[2]*x[2]/(R0*R0)))/g
un = Function(V1, name="Velocity").project(u_expr)
etan = Function(V2, name="Elevation").project(eta_expr)
# Topography
rl = pi/9.0
lambda_x = atan_2(x[1]/R0, x[0]/R0)
lambda_c = -pi/2.0
phi_x = asin(x[2]/R0)
phi_c = pi/6.0
minarg = Min(pow(rl, 2), pow(phi_x - phi_c, 2) + pow(lambda_x - lambda_c, 2))
bexpr = 2000.0*(1 - sqrt(minarg)/rl)
b.interpolate(bexpr)
un1 = Function(V1)
etan1 = Function(V1)
U = Function(W)
eU = Function(W)
DU = Function(W)
V = Function(W)
U_u, U_eta = U.split()
U_u.assign(un)
U_eta.assign(etan)
name = args.filename
if rank==0:
file_sw = File(name+'.pvd', comm=ensemble.comm)
file_sw.write(un, etan, b)
nonlinear = args.nonlinear
print ('tmax', tmax, 'dt', dt)
while t < tmax + 0.5*dt:
print(t)
t += dt
tdump += dt
if nonlinear:
#first order splitting
# U_{n+1} = \Phi(\exp(tL)U_n)
# = \exp(tL)(U_n + \exp(-tL)\Delta\Phi(\exp(tL)U_n))
#averaged version
# U_{n+1} = \exp(tL)(U_n + \int \rho\exp(-sL)\Delta\Phi(\exp(sL)U_n))ds
#apply forward transformation and put result in V, storing copy in eU
cheby2.apply(U, V, dt)
cheby.apply(V, eU, expt)
V.assign(eU)
#apply forward slow step to V
#using semi-implicit stepping
for i in range(ncycles):
USlow_in.assign(V)
USlow_out.assign(V)
SlowSolver.solve()
V.assign(USlow_out)
#compute difference from initial value
V -= eU
#apply backwards transformation, put result in DU
#without filtering
cheby.apply(V, DU, -expt)
DU *= wt
#average into V
ensemble.allreduce(DU, V)
cheby2.apply(V, eU, -dt)
U += eU
V.assign(U)
#transform forwards to next timestep
cheby2.apply(V, U, dt)
if rank == 0:
if tdump > dumpt - dt*0.5:
un.assign(U_u)
etan.assign(U_eta)
file_sw.write(un, etan, b)
tdump -= dumpt