-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpoisson.lua
More file actions
146 lines (114 loc) · 4.5 KB
/
poisson.lua
File metadata and controls
146 lines (114 loc) · 4.5 KB
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
-- Copyright (c) 2010-2016: G-CSC, Goethe University Frankfurt
-- Authors: Andreas Vogel, Sebastian Reiter
--
-- This file is part of UG4.
--
-- UG4 is free software: you can redistribute it and/or modify it under the
-- terms of the GNU Lesser General Public License version 3 (as published by the
-- Free Software Foundation) with the following additional attribution
-- requirements (according to LGPL/GPL v3 §7):
--
-- (1) The following notice must be displayed in the Appropriate Legal Notices
-- of covered and combined works: "Based on UG4 (www.ug4.org/license)".
--
-- (2) The following notice must be displayed at a prominent place in the
-- terminal output of covered works: "Based on UG4 (www.ug4.org/license)".
--
-- (3) The following bibliography is recommended for citation and must be
-- preserved in all covered files:
-- "Reiter, S., Vogel, A., Heppner, I., Rupp, M., and Wittum, G. A massively
-- parallel geometric multigrid solver on hierarchically distributed grids.
-- Computing and visualization in science 16, 4 (2013), 151-164"
-- "Vogel, A., Reiter, S., Rupp, M., Nägel, A., and Wittum, G. UG4 -- a novel
-- flexible software system for simulating pde based models on high performance
-- computers. Computing and visualization in science 16, 4 (2013), 165-179"
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU Lesser General Public License for more details.
-- Load utility scripts (e.g. from from ugcore/scripts)
ug_load_script("ug_util.lua")
ug_load_script("util/refinement_util.lua")
-- Parse parameters and print help
dim = util.GetParamNumber("-dim", 2, "Dimension of the problem", {1,2,3})
gridName = util.GetParam("-grid", "grids/laplace_sample_grid_"..dim.."d.ugx",
"filename of underlying grid")
numRefs = util.GetParamNumber("-numRefs", 3, "number of refinements")
util.CheckAndPrintHelp("Poisson-Equation");
-- initialize ug with the world dimension and the algebra type
InitUG(dim, AlgebraType("CPU", 1));
-- Load a domain without initial refinements.
requiredSubsets = {"Inner", "Boundary"}
dom = util.CreateDomain(gridName, 0, requiredSubsets)
-- Refine the domain (redistribution is handled internally for parallel runs)
print("refining...")
util.refinement.CreateRegularHierarchy(dom, numRefs, true)
-- callback functions for sources and boundary values (only the ones matching 'dim' are used)
function Source1d(x, y, t)
local s = 2*math.pi
return s*s*math.sin(s*x)
end
function DirichletValue1d(x, y, t)
return true, math.sin(2*math.pi*x)
end
function Source2d(x, y, t)
local s = 2*math.pi
return s*s*(math.sin(s*x) + math.sin(s*y))
end
function DirichletValue2d(x, y, t)
local s = 2*math.pi
return true, math.sin(s*x) + math.sin(s*y)
end
function Source3d(x, y, z, t)
local s = 2*math.pi
return s*s*(math.sin(s*x) + math.sin(s*y) + math.sin(s*z))
end
function DirichletValue3d(x, y, z, t)
local s = 2*math.pi
return true, math.sin(s*x) + math.sin(s*y) + math.sin(s*z)
end
-- set up approximation space
approxSpace = ApproximationSpace(dom)
approxSpace:add_fct("c", "Lagrange", 1)
approxSpace:init_levels()
approxSpace:init_top_surface()
print("approximation space:")
approxSpace:print_statistic()
-- set up discretization
-- Please have a look at this page for more information on the
-- ConvectionDiffusion discretization object:
-- http://ug4.github.io/docs/plugins/classug_1_1_convection_diffusion_plugin_1_1_convection_diffusion_base.html#details
elemDisc = ConvectionDiffusion("c", "Inner", "fv1")
elemDisc:set_diffusion(1.0)
elemDisc:set_source("Source"..dim.."d")
dirichletBND = DirichletBoundary()
dirichletBND:add("DirichletValue"..dim.."d", "c", "Boundary")
domainDisc = DomainDiscretization(approxSpace)
domainDisc:add(elemDisc)
domainDisc:add(dirichletBND)
-- set up solver (using 'util/solver_util.lua')
solverDesc = {
type = "bicgstab",
precond = {
type = "gmg",
approxSpace = approxSpace,
smoother = "jac",
baseSolver = "lu"
}
}
solver = util.solver.CreateSolver(solverDesc)
print("\nsolving...")
A = AssembledLinearOperator(domainDisc)
u = GridFunction(approxSpace)
b = GridFunction(approxSpace)
u:set(0.0)
domainDisc:adjust_solution(u)
domainDisc:assemble_linear(A, b)
solver:init(A, u)
solver:apply(u, b)
solFileName = "sol_poisson_"..dim.."d"
print("writing solution to '" .. solFileName .. "'...")
WriteGridFunctionToVTK(u, solFileName)
SaveVectorForConnectionViewer(u, solFileName .. ".vec")
print("done")