Files
JuliaFEM.jl/src/solvers.jl
T
2018-11-29 17:40:55 -05:00

694 lines
21 KiB
Julia

# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
const Solver = Analysis
const AbstractSolver = AbstractAnalysis
#=
function Solver{S<:AbstractSolver}(::Type{S}, name="solver", properties...)
variant = S(properties...)
solver = Solver{S}(name, 0.0, [], [], 0, nothing, false, [], [], 0.0, Dict(), variant)
return solver
end
=#
function Solver(::Type{S}, problems::Problem...) where S<:AbstractSolver
solver = Solver(S, "$(S)Solver")
push!(solver.problems, problems...)
return solver
end
function push!(solver::Solver, problem::Problem)
push!(solver.problems, problem)
end
function getindex(solver::Solver, problem_name::String)
for problem in get_problems(solver)
if problem.name == problem_name
return problem
end
end
throw(KeyError(problem_name))
end
function haskey(solver::Solver, field_name::String)
return haskey(solver.fields, field_name)
end
get_field_problems(solver::Solver) = filter(is_field_problem, get_problems(solver))
get_boundary_problems(solver::Solver) = filter(is_boundary_problem, get_problems(solver))
"""Return one combined field assembly for a set of field problems.
Parameters
----------
solver :: Solver
Returns
-------
M, K, Kg, f, fg :: SparseMatrixCSC
Notes
-----
If several field problems exists, they are simply summed together, so
problems must have unique node ids.
"""
function get_field_assembly(solver::Solver)
problems = get_field_problems(solver)
problem = problems[1]
M = problem.assembly.M
K = problem.assembly.K
f = problem.assembly.f
K_csc = problem.assembly.K_csc
f_csc = problem.assembly.f_csc
Kg = problem.assembly.Kg
fg = problem.assembly.fg
for problem in problems[2:end]
append!(M, problem.assembly.M)
append!(K, problem.assembly.K)
append!(Kg, problem.assembly.Kg)
append!(f, problem.assembly.f)
# Use in place addition with .+= ?
K_csc += problem.assembly.K_csc
f_csc += problem.assembly.f_csc
append!(fg, problem.assembly.fg)
end
N = size(K, 1)
M = sparse(M, N, N)
K = sparse(K, N, N)
if nnz(K) == 0
@warn("Field assembly seems to be empty. Check that elements are ",
"pushed to problem and formulation is correct.")
end
f = sparse(f, N, 1)
Kg = sparse(Kg, N, N)
fg = sparse(fg, N, 1)
return M, problem.assemble_csc ? K_csc : K, Kg, problem.assemble_csc ? f_csc : f, fg
end
""" Loop through boundary assemblies and check for possible overconstrain situations. """
function check_for_overconstrained_dofs(solver::Solver)
overdetermined = false
constrained_dofs = Set{Int}()
all_overconstrained_dofs = Set{Int}()
boundary_problems = get_boundary_problems(solver)
for problem in boundary_problems
new_constraints = Set(problem.assembly.C2.I)
new_constraints = setdiff(new_constraints, problem.assembly.removed_dofs)
overconstrained_dofs = intersect(constrained_dofs, new_constraints)
all_overconstrained_dofs = union(all_overconstrained_dofs, overconstrained_dofs)
if length(overconstrained_dofs) != 0
@warn("problem is overconstrained, finding overconstrained dofs... ")
overdetermined = true
for dof in overconstrained_dofs
for problem_ in boundary_problems
new_constraints_ = Set(problem_.assembly.C2.I)
new_constraints_ = setdiff(new_constraints_, problem_.assembly.removed_dofs)
if dof in new_constraints_
@warn("overconstrained dof $dof defined in problem $(problem_.name)")
end
end
@warn("To solve overconstrained situation, remove dofs from problems so that it exists only in one.")
@warn("To do this, use push! to add dofs to remove to problem.assembly.removed_dofs, e.g.")
@warn("`push!(bc.assembly.removed_dofs, $dof`)")
end
end
constrained_dofs = union(constrained_dofs, new_constraints)
end
if overdetermined
@warn("List of all overconstrained dofs:")
@warn(sort(collect(all_overconstrained_dofs)))
error("problem is overconstrained, not continuing to solution.")
end
return true
end
""" Return one combined boundary assembly for a set of boundary problems.
Returns
-------
K, C1, C2, D, f, g :: SparseMatrixCSC
"""
function get_boundary_assembly(solver::Solver, N)
check_for_overconstrained_dofs(solver)
K = spzeros(N, N)
C1 = spzeros(N, N)
C2 = spzeros(N, N)
D = spzeros(N, N)
f = spzeros(N, 1)
g = spzeros(N, 1)
for problem in get_boundary_problems(solver)
assembly = problem.assembly
K_ = sparse(assembly.K, N, N)
C1_ = sparse(assembly.C1, N, N)
C2_ = sparse(assembly.C2, N, N)
D_ = sparse(assembly.D, N, N)
f_ = sparse(assembly.f, N, 1)
g_ = sparse(assembly.g, N, 1)
for dof in assembly.removed_dofs
@info("$(problem.name): removing dof $dof from assembly")
C1_[dof,:] .= 0.0
C2_[dof,:] .= 0.0
end
SparseArrays.dropzeros!(C1_)
SparseArrays.dropzeros!(C2_)
already_constrained = get_nonzero_rows(C2)
new_constraints = get_nonzero_rows(C2_)
overconstrained_dofs = intersect(already_constrained, new_constraints)
if length(overconstrained_dofs) != 0
@warn("overconstrained dofs $overconstrained_dofs")
@warn("already constrained = $already_constrained")
@warn("new constraints = $new_constraints")
overconstrained_dofs = sort(overconstrained_dofs)
error("overconstrained dofs, not solving problem.")
end
K .+= K_
C1 .+= C1_
C2 .+= C2_
D .+= D_
f .+= f_
g .+= g_
end
return K, C1, C2, D, f, g
end
"""
Solve linear system using LDLt factorization (SuiteSparse). This version
requires that final system is symmetric and positive definite, so boundary
conditions are first eliminated before solution.
"""
function solve!(solver::Solver, K, C1, C2, D, f, g, u, la, ::Type{Val{1}})
nnz(D) == 0 || return false
A = get_nonzero_rows(K)
B = get_nonzero_rows(C2)
B2 = get_nonzero_columns(C2)
B == B2 || return false
I = setdiff(A, B)
if length(B) == 0
@warn("No rows in C2, forget to set Dirichlet boundary conditions to model?")
else
u[B] = lu(C2[B,B2]) \ Vector(g[B])
end
# solve interior domain using LDLt factorization
F = ldlt(K[I,I])
u[I] = F \ Vector(f[I] - K[I,B]*u[B])
# solve lagrange multipliers
la[B] = lu(C1[B2,B]) \ Vector(f[B] - K[B,I]*u[I] - K[B,B]*u[B])
return true
end
"""
Solve linear system using LU factorization (UMFPACK). This version solves
directly the saddle point problem without elimination of boundary conditions.
It is assumed that C1 == C2 and D = 0, so problem is symmetric and zero rows
cand be removed from total system before solution. This kind of system arises
in e.g. mesh tie problem
"""
function solve!(solver::Solver, K, C1, C2, D, f, g, u, la, ::Type{Val{2}})
C1 == C2 || return false
length(D) == 0 || return false
A = [K C1'; C2 D]
b = [f; g]
ndofs = size(K, 2)
nz1 = get_nonzero_rows(A)
nz2 = get_nonzero_columns(A)
nz1 == nz2 || return false
x = zeros(2*ndofs)
x[nz1] = lufact(A[nz1,nz2]) \ full(b[nz1])
u[:] = x[1:ndofs]
la[:] = x[ndofs+1:end]
return true
end
"""
Solve linear system using LU factorization (UMFPACK). This version solves
directly the saddle point problem without elimination of boundary conditions.
If matrix has zero rows, diagonal term is added to that matrix is invertible.
"""
function solve!(solver::Solver, K, C1, C2, D, f, g, u, la, ::Type{Val{3}})
A = [K C1'; C2 D]
b = [f; g]
ndofs = size(K, 2)
nonzero_rows = zeros(2*ndofs)
for j in rowvals(A)
nonzero_rows[j] = 1.0
end
A += sparse(Diagonal(1.0 .- nonzero_rows))
x = lu(A) \ Vector(b[:])
u[:] .= x[1:ndofs]
la[:] .= x[ndofs+1:end]
return true
end
""" Default linear system solver for solver. """
function solve!(solver::Solver; empty_assemblies_before_solution=true, symmetric=true)
@info("Solving linear system.")
t0 = Base.time()
# assemble field & boundary problems
# TODO: return same kind of set for both assembly types
# M1, K1, Kg1, f1, fg1, C11, C21, D1, g1 = get_field_assembly(solver)
# M2, K2, Kg2, f2, fg2, C12, C22, D2, g2 = get_boundary_assembly(solver)
M, K, Kg, f, fg = get_field_assembly(solver)
N = size(K, 2)
Kb, C1, C2, D, fb, g = get_boundary_assembly(solver, N)
K = K + Kg + Kb
f = f + fg + fb
if symmetric
K = 1/2*(K + K')
M = 1/2*(M + M')
end
if empty_assemblies_before_solution
# free up some memory before solution by emptying field assemblies from problems
for problem in get_field_problems(solver)
empty!(problem.assembly)
end
end
#=
if !haskey(solver, "fint")
solver.fields["fint"] = field(solver.time => f)
else
update!(solver.fields["fint"], solver.time => f)
end
fint = solver.fields["fint"]
if length(fint) > 1
# kick in generalized alpha rule for time integration
alpha = solver.alpha
K = (1-alpha)*K
C1 = (1-alpha)*C1
f = (1-alpha)*f + alpha*fint.data[end-1].second
end
=#
ndofs = N
u = zeros(ndofs)
la = zeros(ndofs)
is_solved = false
local i
for i in [1, 2, 3]
is_solved = solve!(solver, K, C1, C2, D, f, g, u, la, Val{i})
if is_solved
t1 = round(Base.time()-t0; digits=2)
norms = (norm(u), norm(la))
@info("Solved linear system in $t1 seconds using solver $i. " *
"Solution norms (||u||, ||la||): $norms.")
break
end
end
if !is_solved
error("Failed to solve linear system!")
end
#push!(solver.norms, norms)
#solver.u = u
#solver.la = la
@info("")
return u, la
end
"""
assemble!(solver; with_mass_matrix=false)
Default assembler for solver.
This function loops over all problems defined in problem and launches
standard assembler for them. As a result, each problem.assembly is
populated with global stiffness matrix, force vector, and, optionally,
mass matrix.
"""
function assemble!(solver::Solver, time::Float64; with_mass_matrix=false)
@info("Assembling problems ...")
for problem in get_problems(solver)
timeit("assemble $(problem.name)") do
empty!(problem.assembly)
assemble!(problem, time)
end
end
if with_mass_matrix
for problem in get_field_problems(solver)
timeit("assemble $(problem.name) mass matrix") do
assemble!(problem, time, Val{:mass_matrix})
end
end
end
#=
ndofs = 0
for problem in solver.problems
Ks = size(problem.assembly.K, 2)
Cs = size(problem.assembly.C1, 2)
ndofs = max(ndofs, Ks, Cs)
end
solver.ndofs = ndofs
=#
@info("Assembly done!")
end
function get_unknown_fields(solver::Solver)
fields = Dict()
for problem in get_field_problems(solver)
field_name = get_unknown_field_name(problem)
field_dim = get_unknown_field_dimension(problem)
fields[field_name] = field_dim
end
return fields
end
function get_unknown_field_name(solver::Solver)
fields = get_unknown_fields(solver)
return join(sort(collect(keys(fields))), ", ")
end
function get_unknown_field_dimension(solver::Solver)
fields = get_unknown_fields(solver)
return sum(values(fields))
end
""" Default initializer for solver. """
function initialize!(solver::Solver)
if solver.initialized
@warn("initialize!(): solver already initialized")
return
end
@info("Initializing solver ...")
problems = get_problems(solver)
length(problems) != 0 || error("Empty solver, add problems to solver using push!")
t0 = Base.time()
field_problems = get_field_problems(solver)
length(field_problems) != 0 || @warn("No field problem found from solver, add some..?")
field_name = get_unknown_field_name(solver)
field_dim = get_unknown_field_dimension(solver)
@info("initialize!(): looks we are solving $field_name, $field_dim dofs/node")
nodes = Set{Int64}()
for problem in problems
initialize!(problem, solver.time)
for element in get_elements(problem)
conn = get_connectivity(element)
push!(nodes, conn...)
end
end
nnodes = length(nodes)
@info("Total number of nodes in problems: $nnodes")
maxdof = maximum(nodes)*field_dim
@info("# of max dof (=size of solution vector) is $maxdof")
solver.u = zeros(maxdof)
solver.la = zeros(maxdof)
# TODO: this could be used to initialize elements too...
# TODO: cannot initialize to zero always, construct vector from elements.
for problem in problems
problem.assembly.u = zeros(maxdof)
problem.assembly.la = zeros(maxdof)
# initialize(problem, ....)
end
t1 = round(Base.time()-t0; digits=2)
@info("Initialized solver in $t1 seconds.")
solver.initialized = true
end
function get_all_elements(solver::Solver)
elements = [get_elements(problem) for problem in get_problems(solver)]
return [elements...;]
end
"""
Return nodal field from all problems defined in solver.
Examples
--------
To return e.g. geometry defined in nodal points at time t=0.0, one can write:
julia> solver("geometry", 0.0)
"""
function (solver::Solver)(field_name::String, time::Float64)
fields = []
for problem in get_problems(solver)
field = problem(field_name, time)
if field == nothing
continue
end
if length(field) == 0
@warn("no field $field_name found for problem $(problem.name)")
continue
end
push!(fields, field)
end
if length(fields) == 0
return Dict{Integer, Vector{Float64}}()
end
return merge(fields...)
end
function update!(solver::Solver{S}, u, la, time) where S
for problem in get_problems(solver)
assembly = get_assembly(problem)
elements = get_elements(problem)
# update solution, first for assembly (u,la) ...
update!(problem, assembly, u, la)
# .. and then from assembly (u,la) to elements
update!(problem, assembly, elements, time)
end
end
""" Default postprocess for solver. Loop all problems and run postprocess
functions to calculate secondary fields, i.e. contact pressure, stress,
heat flux, reaction force etc. quantities.
"""
function postprocess!(solver::Solver, time)
problems = get_problems(solver)
nproblems = length(problems)
@info("Postprocessing $nproblems problems.")
for problem in problems
for field_name in problem.postprocess_fields
field = Val{Symbol(field_name)}
@info("Running postprocess for problem $(problem.name), field $field_name")
postprocess!(problem, time, field)
end
end
end
"""
write_results!(solver, time)
Default xdmf update for solver. Loop all problems and write them individually
to Xdmf file. By default write the main unknown field (displacement, temperature,
...) and any fields requested separately in `problem.postprocess_fields` vector
(stress, strain, ...)
"""
function write_results!(solver, time)
results_writers = get_results_writers(solver)
if length(results_writers) == 0
@info("No result writers are attached to analysis, not writing output.")
@info("To write results to Xdmf file, attach Xdmf to analysis, i.e.")
@info("xdmf_output = Xdmf(\"simulation_results\")")
@info("add_results_writer!(analysis, xdmf_output)")
return
end
# FIXME: result writer can be anything, not only Xdmf
for xdmf in results_writers
for problem in get_problems(solver)
fields = [get_unknown_field_name(problem); problem.postprocess_fields]
if is_boundary_problem(problem)
fields = [fields; get_parent_field_name(problem)]
end
update_xdmf!(xdmf, problem, time, fields)
end
end
end
### Nonlinear quasistatic solver
mutable struct Nonlinear <: AbstractSolver
time :: Float64
iteration :: Int # iteration counter
min_iterations :: Int64 # minimum number of iterations
max_iterations :: Int64 # maximum number of iterations
convergence_tolerance :: Float64
error_if_no_convergence :: Bool # throw error if no convergence
end
function Nonlinear()
solver = Nonlinear(0.0, 0, 1, 10, 5.0e-5, true)
return solver
end
""" Check convergence of problems.
Notes
-----
Default convergence criteria is obtained by checking each sub-problem convergence.
"""
function has_converged(solver::Solver{Nonlinear})
properties = solver.properties
converged = true
eps = properties.convergence_tolerance
for problem in get_field_problems(solver)
has_converged = problem.assembly.u_norm_change < eps
if isapprox(norm(problem.assembly.u), 0.0)
# trivial solution
has_converged = true
end
converged &= has_converged
end
return converged
end
""" Default solver for quasistatic nonlinear problems. """
function FEMBase.run!(solver::Solver{Nonlinear})
time = solver.properties.time
problems = get_problems(solver)
properties = solver.properties
# 1. initialize each problem so that we can start nonlinear iterations
for problem in problems
initialize!(problem, time)
end
# 2. start non-linear iterations
for properties.iteration=1:properties.max_iterations
@info(repeat("-", 80))
@info("Starting nonlinear iteration #$(properties.iteration)")
@info("Increment time t=$(round(time; digits=3))")
@info(repeat("-", 80))
# 2.1 update assemblies
for problem in problems
empty!(problem.assembly)
assemble!(problem, time)
end
# 2.2 call solver for linearized system
u, la = solve!(solver)
# 2.3 update solution back to elements
update!(solver, u, la, time)
# 2.4 check convergence
if properties.iteration >= properties.min_iterations && has_converged(solver)
@info("Converged in $(properties.iteration) iterations.")
# 2.4.1 run any postprocessing of problems
postprocess!(solver, time)
# 2.4.2 update Xdmf output
write_results!(solver, time)
return true
end
end
# 3. did not converge
if properties.error_if_no_convergence
error("nonlinear iteration did not converge in $(properties.iteration) iterations!")
end
end
### Linear quasistatic solver
""" Quasistatic solver for linear problems.
Notes
-----
Main differences in this solver, compared to nonlinear solver are:
1. system of problems is assumed to converge in one step
2. reassembly of problem is done only if it's manually requested using empty!(problem.assembly)
"""
mutable struct Linear <: AbstractSolver
time :: Float64
end
function Linear()
return Linear(0.0)
end
function FEMBase.run!(analysis::Analysis{Linear})
time = analysis.properties.time
@info("Running linear quasistatic analysis `$(analysis.name)` at time $time.")
problems = get_problems(analysis)
nproblems = length(problems)
@info("Assembling $nproblems problems.")
@timeit "assemble problems" for problem in problems
isempty(problem.assembly) || continue
initialize!(problem, time)
assemble!(problem, time)
end
@timeit "solve linear system" u, la = solve!(analysis)
@timeit "update problems" update!(analysis, u, la, time)
postprocess!(analysis, time)
write_results!(analysis, time)
@info("Quasistatic linear analysis ready.")
end
# Convenience functions
function LinearSolver(name::String="Linear solver")
return Solver(Linear, name)
end
function LinearSolver(problems::Problem...)
solver = LinearSolver()
add_problems!(solver, collect(problems))
return solver
end
function NonlinearSolver(name::String="Nonlinear solver")
return Solver(Nonlinear, name)
end
function NonlinearSolver(problems::Problem...)
solver = NonlinearSolver()
add_problems!(solver, collect(problems))
return solver
end
# will be deprecated
function (solver::Solver)(time::Float64=0.0)
@warn("analysis(time) is deprecated. Instead, use run!(analysis)")
solver.properties.time = time
run!(solver)
end
function solve!(solver::Solver, time::Float64)
@warn("solve!(analysis, time) is deprecated. Instead, use run!(analysis)")
solver.properties.time = time
run!(solver)
end