The finite element method using deal.II - 2021/2022
main.cc File Reference
#include "poisson.h"
Include dependency graph for main.cc:

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 4 of file main.cc.

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