Skip to content

Commit dcc017e

Browse files
committed
Update docs
1 parent ab9fbcc commit dcc017e

File tree

3 files changed

+61
-16
lines changed

3 files changed

+61
-16
lines changed

docs/demos/forward.rst

Lines changed: 36 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,55 @@ Demos of Forward Problems
33

44
Here are some demos of solving forward problems of PDEs.
55

6+
ODEs
7+
----
8+
9+
- `ODE system <https://github.com/lululxvi/deepxde/blob/master/examples/ode_system.py>`_
10+
- `Lotka-Volterra equation <https://github.com/lululxvi/deepxde/blob/master/examples/Lotka_Volterra_Colab.ipynb>`_
11+
12+
Time-independent PDEs
13+
---------------------
14+
615
.. toctree::
716
:maxdepth: 1
817

918
poisson.1d.dirichlet
10-
burgers
1119

12-
- `Beltrami flow <https://github.com/lululxvi/deepxde/blob/master/examples/Beltrami_flow.py>`_
13-
- `Burgers equation with residual-based adaptive refinement (RAR) <https://github.com/lululxvi/deepxde/blob/master/examples/Burgers_RAR.py>`_
14-
- `Euler beam <https://github.com/lululxvi/deepxde/blob/master/examples/Euler_beam.py>`_
15-
- `Kovasznay flow <https://github.com/lululxvi/deepxde/blob/master/examples/Kovasznay_flow.py>`_
16-
- `Laplace equation on a disk <https://github.com/lululxvi/deepxde/blob/master/examples/Laplace_disk.py>`_
17-
- `Lotka-Volterra equation <https://github.com/lululxvi/deepxde/blob/master/examples/Lotka_Volterra_Colab.ipynb>`_
18-
- `Poisson equation over an L-shaped domain <https://github.com/lululxvi/deepxde/blob/master/examples/Poisson_Lshape.py>`_
1920
- `Poisson equation in 1D with Dirichlet/Neumann boundary conditions <https://github.com/lululxvi/deepxde/blob/master/examples/Poisson_Neumann_1d.py>`_
2021
- `Poisson equation in 1D with Dirichlet/Robin boundary conditions <https://github.com/lululxvi/deepxde/blob/master/examples/Poisson_Robin_1d.py>`_
2122
- `Poisson equation in 1D with the multi-scale Fourier feature architecture <https://github.com/lululxvi/deepxde/blob/master/examples/Poisson_multiscale_1d.py>`_
2223
- `Poisson equation in 1D with Dirichlet/periodic boundary conditions <https://github.com/lululxvi/deepxde/blob/master/examples/Poisson_periodic_1d.py>`_
23-
- `Volterra IDE <https://github.com/lululxvi/deepxde/blob/master/examples/Volterra_IDE.py>`_
24+
- `Poisson equation over an L-shaped domain <https://github.com/lululxvi/deepxde/blob/master/examples/Poisson_Lshape.py>`_
25+
- `Laplace equation on a disk <https://github.com/lululxvi/deepxde/blob/master/examples/Laplace_disk.py>`_
26+
- `Euler beam <https://github.com/lululxvi/deepxde/blob/master/examples/Euler_beam.py>`_
27+
28+
Time-dependent PDEs
29+
-------------------
30+
31+
.. toctree::
32+
:maxdepth: 1
33+
34+
burgers
35+
2436
- `Diffusion equation <https://github.com/lululxvi/deepxde/blob/master/examples/diffusion_1d.py>`_
2537
- `Diffusion equation with hard initial and boundary conditions <https://github.com/lululxvi/deepxde/blob/master/examples/diffusion_1d_exactBC.py>`_
2638
- `Diffusion equation with training points resampling <https://github.com/lululxvi/deepxde/blob/master/examples/diffusion_1d_resample.py>`_
39+
- `Heat equation <https://github.com/lululxvi/deepxde/blob/master/examples/heat_conduction_1d_uniform_bar.ipynb>`_
40+
- `Burgers equation with residual-based adaptive refinement (RAR) <https://github.com/lululxvi/deepxde/blob/master/examples/Burgers_RAR.py>`_
41+
- `Beltrami flow <https://github.com/lululxvi/deepxde/blob/master/examples/Beltrami_flow.py>`_
42+
- `Kovasznay flow <https://github.com/lululxvi/deepxde/blob/master/examples/Kovasznay_flow.py>`_
43+
- `Wave propagation with spatio-temporal multi-scale Fourier feature architecture <https://github.com/lululxvi/deepxde/blob/master/examples/wave_1d.py>`_
44+
45+
Integro-differential equations
46+
------------------------------
47+
48+
- `Integro-differential equation <https://github.com/lululxvi/deepxde/blob/master/examples/ide.py>`_
49+
- `Volterra IDE <https://github.com/lululxvi/deepxde/blob/master/examples/Volterra_IDE.py>`_
50+
51+
fractional PDEs
52+
---------------
53+
2754
- `fractional Poisson equation in 1D <https://github.com/lululxvi/deepxde/blob/master/examples/fractional_Poisson_1d.py>`_
2855
- `fractional Poisson equation in 2D <https://github.com/lululxvi/deepxde/blob/master/examples/fractional_Poisson_2d.py>`_
2956
- `fractional Poisson equation in 3D <https://github.com/lululxvi/deepxde/blob/master/examples/fractional_Poisson_3d.py>`_
3057
- `fractional diffusion equation <https://github.com/lululxvi/deepxde/blob/master/examples/fractional_diffusion_1d.py>`_
31-
- `Heat equation <https://github.com/lululxvi/deepxde/blob/master/examples/heat_conduction_1d_uniform_bar.ipynb>`_
32-
- `Integro-differential equation <https://github.com/lululxvi/deepxde/blob/master/examples/ide.py>`_
33-
- `ODE system <https://github.com/lululxvi/deepxde/blob/master/examples/ode_system.py>`_
34-
- `Wave propagation with spatio-temporal multi-scale Fourier feature architecture <https://github.com/lululxvi/deepxde/blob/master/examples/wave_1d.py>`_

docs/demos/func.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,19 @@ Demos of Function Approximation
33

44
Here are some demos of learning functions.
55

6+
Function approximation
7+
----------------------
8+
69
- `Learning a function from a dataset <https://github.com/lululxvi/deepxde/blob/master/examples/dataset.py>`_
710
- `Learning a function from the formula <https://github.com/lululxvi/deepxde/blob/master/examples/func.py>`_
11+
12+
Uncertainty quantification
13+
--------------------------
14+
815
- `Learning a function with uncertainty quantification <https://github.com/lululxvi/deepxde/blob/master/examples/func_uncertainty.py>`_
9-
- `Multi-fidelity learning from a dataset <https://github.com/lululxvi/deepxde/blob/master/examples/mf_dataset.py>`_
16+
17+
Multi-fidelity learning
18+
-----------------------
19+
1020
- `Multi-fidelity learning from the formulas <https://github.com/lululxvi/deepxde/blob/master/examples/mf_func.py>`_
21+
- `Multi-fidelity learning from a dataset <https://github.com/lululxvi/deepxde/blob/master/examples/mf_dataset.py>`_

docs/demos/inverse.rst

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,25 @@ Demos of Inverse Problems
33

44
Here are some demos of solving inverse problems of PDEs.
55

6+
ODEs
7+
----
8+
69
.. toctree::
710
:maxdepth: 1
811

912
lorenz.inverse
10-
13+
1114
- `Inverse problem for the Lorenz system with exogenous input <https://github.com/lululxvi/deepxde/blob/master/examples/Lorenz_inverse_forced_Colab.ipynb>`_
15+
16+
PDEs
17+
----
18+
1219
- `Inverse problem for the diffusion equation <https://github.com/lululxvi/deepxde/blob/master/examples/diffusion_1d_inverse.py>`_
20+
- `Inverse Problem for the diffusion-reaction system <https://github.com/lululxvi/deepxde/blob/master/examples/reaction_inverse.py>`_
1321
- `Inverse problem for the Poisson equation with unknown forcing field <https://github.com/lululxvi/deepxde/blob/master/examples/elliptic_inverse_field.py>`_
22+
23+
fractional PDEs
24+
---------------
25+
1426
- `Inverse problem for the fractional Poisson equation in 1D <https://github.com/lululxvi/deepxde/blob/master/examples/fractional_Poisson_1d_inverse.py>`_
1527
- `Inverse problem for the fractional Poisson equation in 2D <https://github.com/lululxvi/deepxde/blob/master/examples/fractional_Poisson_2d_inverse.py>`_
16-
- `Inverse Problem for the diffusion-reaction system <https://github.com/lululxvi/deepxde/blob/master/examples/reaction_inverse.py>`_

0 commit comments

Comments
 (0)