AMR-Solver  1.0
Block-based Octree AMR grid flow solver
poisson.h
Go to the documentation of this file.
1 
2 namespace amrsolver {
3 
4 void jacobi(int, std::string);
5 void gauss_seidel(int, std::string);
9 
10 
11 }
void gauss_seidel(int level, std::string name)
Definition: poisson.cpp:69
double gauss_seidel_black(Octree *node, Field *f, double global_res)
Definition: poisson.cpp:283
Template class for any scalar field variable in the domain.
Definition: field.h:11
Solver stuff.
Definition: amrsolver.cpp:15
double gauss_seidel_red(Octree *node, Field *f, double global_res)
Definition: poisson.cpp:207
Class to store octree datastructure as nodes of the tree.
Definition: octree.h:26
void jacobi(int level, std::string name)
Definition: poisson.cpp:23
double jacobi_for_field(Octree *node, Field *f, double global_res)
Definition: poisson.cpp:130