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
10
deallog
.
depth_console
(2);
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
labs
lab-05
source
main.cc
Generated on Thu Jun 23 2022 07:19:45 for The finite element method using deal.II - 2021/2022 by
1.8.17