Update README.md (#17)

* fix poisson equation on readme
* delete poisson_problem.png
This commit is contained in:
Nicola Demo
2022-06-23 11:53:50 +02:00
committed by GitHub
parent ecf42fb596
commit bff2f9f3fe
2 changed files with 2 additions and 4 deletions

View File

@@ -45,10 +45,8 @@ PINN is a novel approach that involves neural networks to solve supervised learn
#### Problem definition #### Problem definition
First step is formalization of the problem in the PINA framework. We take as example here a simple Poisson problem, but PINA is already able to deal with **multi-dimensional**, **parametric**, **time-dependent** problems. First step is formalization of the problem in the PINA framework. We take as example here a simple Poisson problem, but PINA is already able to deal with **multi-dimensional**, **parametric**, **time-dependent** problems.
Consider: Consider:
<p align="center"> $$\begin{cases}\nabla u = \sin(\pi x)\sin(\pi y)\quad& \text{in}\\,D,\\\\u = 0& \text{on}\\,\partial D,\end{cases}$$
<img alt="Poisson approximation" src="readme/poisson_problem.png" width="50%" /> where $D = [0, 1]^2$ is a square domain and $u$ the unknown field. The translation in PINA code becomes a new class containing all the information about the domain, about the `conditions` and nothing more:
</p>
where *D* is a square domain, *Gamma*s are the boundaries and *u* the unknown field. The translation in PINA code becomes a new class containing all the information about the domain, about the `conditions` and nothing more:
```python ```python
class Poisson(SpatialProblem): class Poisson(SpatialProblem):

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB