Skip to content
Snippets Groups Projects
Commit 9b43f618 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

problem_A -> problem_AB

parent da59eb3f
No related branches found
No related tags found
No related merge requests found
...@@ -393,13 +393,13 @@ int main(int argc, char *argv[]) { ...@@ -393,13 +393,13 @@ int main(int argc, char *argv[]) {
VectorType ell(finestSize); VectorType ell(finestSize);
createRHS(time, ell); createRHS(time, ell);
MatrixType problem_A; MatrixType problem_AB;
VectorType problem_rhs(finestSize); VectorType problem_rhs(finestSize);
VectorType problem_iterate(finestSize); VectorType problem_iterate(finestSize);
stateUpdater->setup(tau); stateUpdater->setup(tau);
timeSteppingScheme->setup(ell, tau, time, problem_rhs, problem_iterate, timeSteppingScheme->setup(ell, tau, time, problem_rhs, problem_iterate,
problem_A); problem_AB);
LoopSolver<VectorType> velocityProblemSolver( LoopSolver<VectorType> velocityProblemSolver(
multigridStep, parset.get<size_t>("solver.tnnmg.maxiterations"), multigridStep, parset.get<size_t>("solver.tnnmg.maxiterations"),
...@@ -416,7 +416,7 @@ int main(int argc, char *argv[]) { ...@@ -416,7 +416,7 @@ int main(int argc, char *argv[]) {
using MyConvexProblemType = MyConvexProblem<MatrixType, VectorType>; using MyConvexProblemType = MyConvexProblem<MatrixType, VectorType>;
MyConvexProblemType const myConvexProblem( MyConvexProblemType const myConvexProblem(
problem_A, *myGlobalNonlinearity, problem_rhs); problem_AB, *myGlobalNonlinearity, problem_rhs);
MyBlockProblem<MyConvexProblemType> velocityProblem(parset, MyBlockProblem<MyConvexProblemType> velocityProblem(parset,
myConvexProblem); myConvexProblem);
multigridStep->setProblem(_problem_iterate, velocityProblem); multigridStep->setProblem(_problem_iterate, velocityProblem);
......
...@@ -27,7 +27,7 @@ void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() { ...@@ -27,7 +27,7 @@ void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
template <class VectorType, class MatrixType, class FunctionType, int dim> template <class VectorType, class MatrixType, class FunctionType, int dim>
void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::setup( void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::setup(
VectorType const &ell, double _tau, double time, VectorType &problem_rhs, VectorType const &ell, double _tau, double time, VectorType &problem_rhs,
VectorType &problem_iterate, MatrixType &problem_A) { VectorType &problem_iterate, MatrixType &problem_AB) {
postProcessCalled = false; postProcessCalled = false;
tau = _tau; tau = _tau;
...@@ -36,8 +36,8 @@ void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::setup( ...@@ -36,8 +36,8 @@ void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::setup(
Arithmetic::addProduct(problem_rhs, -1.0, A, u_old); Arithmetic::addProduct(problem_rhs, -1.0, A, u_old);
// For fixed tau, we'd only really have to do this once // For fixed tau, we'd only really have to do this once
problem_A = A; problem_AB = A;
problem_A *= tau; problem_AB *= tau;
// ud_old makes a good initial iterate; we could use anything, though // ud_old makes a good initial iterate; we could use anything, though
problem_iterate = ud_old; problem_iterate = ud_old;
...@@ -123,7 +123,7 @@ void Newmark<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() { ...@@ -123,7 +123,7 @@ void Newmark<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
template <class VectorType, class MatrixType, class FunctionType, int dim> template <class VectorType, class MatrixType, class FunctionType, int dim>
void Newmark<VectorType, MatrixType, FunctionType, dim>::setup( void Newmark<VectorType, MatrixType, FunctionType, dim>::setup(
VectorType const &ell, double _tau, double time, VectorType &problem_rhs, VectorType const &ell, double _tau, double time, VectorType &problem_rhs,
VectorType &problem_iterate, MatrixType &problem_A) { VectorType &problem_iterate, MatrixType &problem_AB) {
postProcessCalled = false; postProcessCalled = false;
tau = _tau; tau = _tau;
...@@ -138,10 +138,10 @@ void Newmark<VectorType, MatrixType, FunctionType, dim>::setup( ...@@ -138,10 +138,10 @@ void Newmark<VectorType, MatrixType, FunctionType, dim>::setup(
Dune::MatrixIndexSet indices(A.N(), A.M()); Dune::MatrixIndexSet indices(A.N(), A.M());
indices.import(A); indices.import(A);
indices.import(B); indices.import(B);
indices.exportIdx(problem_A); indices.exportIdx(problem_AB);
problem_A = 0.0; problem_AB = 0.0;
Arithmetic::addProduct(problem_A, tau / 2.0, A); Arithmetic::addProduct(problem_AB, tau / 2.0, A);
Arithmetic::addProduct(problem_A, 2.0 / tau, B); Arithmetic::addProduct(problem_AB, 2.0 / tau, B);
// ud_old makes a good initial iterate; we could use anything, though // ud_old makes a good initial iterate; we could use anything, though
problem_iterate = ud_old; problem_iterate = ud_old;
...@@ -231,7 +231,7 @@ void EulerPair<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() { ...@@ -231,7 +231,7 @@ void EulerPair<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
template <class VectorType, class MatrixType, class FunctionType, int dim> template <class VectorType, class MatrixType, class FunctionType, int dim>
void EulerPair<VectorType, MatrixType, FunctionType, dim>::setup( void EulerPair<VectorType, MatrixType, FunctionType, dim>::setup(
VectorType const &ell, double _tau, double time, VectorType &problem_rhs, VectorType const &ell, double _tau, double time, VectorType &problem_rhs,
VectorType &problem_iterate, MatrixType &problem_A) { VectorType &problem_iterate, MatrixType &problem_AB) {
postProcessCalled = false; postProcessCalled = false;
tau = _tau; tau = _tau;
...@@ -244,10 +244,10 @@ void EulerPair<VectorType, MatrixType, FunctionType, dim>::setup( ...@@ -244,10 +244,10 @@ void EulerPair<VectorType, MatrixType, FunctionType, dim>::setup(
Dune::MatrixIndexSet indices(A.N(), A.M()); Dune::MatrixIndexSet indices(A.N(), A.M());
indices.import(A); indices.import(A);
indices.import(B); indices.import(B);
indices.exportIdx(problem_A); indices.exportIdx(problem_AB);
problem_A = 0.0; problem_AB = 0.0;
Arithmetic::addProduct(problem_A, tau, A); Arithmetic::addProduct(problem_AB, tau, A);
Arithmetic::addProduct(problem_A, 1.0 / tau, B); Arithmetic::addProduct(problem_AB, 1.0 / tau, B);
// ud_old makes a good initial iterate; we could use anything, though // ud_old makes a good initial iterate; we could use anything, though
problem_iterate = ud_old; problem_iterate = ud_old;
......
...@@ -9,7 +9,7 @@ class TimeSteppingScheme { ...@@ -9,7 +9,7 @@ class TimeSteppingScheme {
void virtual nextTimeStep() = 0; void virtual nextTimeStep() = 0;
void virtual setup(VectorType const &ell, double _tau, double time, void virtual setup(VectorType const &ell, double _tau, double time,
VectorType &problem_rhs, VectorType &problem_iterate, VectorType &problem_rhs, VectorType &problem_iterate,
MatrixType &problem_A) = 0; MatrixType &problem_AB) = 0;
void virtual postProcess(VectorType const &problem_iterate) = 0; void virtual postProcess(VectorType const &problem_iterate) = 0;
void virtual extractDisplacement(VectorType &displacement) const = 0; void virtual extractDisplacement(VectorType &displacement) const = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment