The finite element method using deal.II - 2021/2022
main.cc
Go to the documentation of this file.
1 #include "poisson.h"
2 
3 int
4 main(int argc, char **argv)
5 {
6  std::string par_name = "";
7  if (argc > 1)
8  par_name = argv[1];
9 
11  Poisson<2> laplace_problem;
12  if (par_name != "")
13  laplace_problem.initialize(par_name);
14  laplace_problem.run();
15  return 0;
16 }
Poisson::initialize
void initialize(const std::string &filename)
Definition: poisson.cc:53
Poisson::run
void run()
Definition: poisson.cc:133
deallog
LogStream deallog
LogStream::depth_console
unsigned int depth_console(const unsigned int n)
Poisson
Solve the Poisson problem, with Dirichlet or Neumann boundary conditions, on all geometries that can ...
Definition: poisson.h:55
main
int main()
Definition: main.cc:4