Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.

Commit 51144cf

Browse files
committed
readme for Burgers' equation
1 parent 14a9c4f commit 51144cf

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,9 @@ Flux.@epochs 50 Flux.train!(loss, params(model), data, opt)
7070

7171
PDE training examples are provided in `example` folder.
7272

73-
### One-dimensional Burgers' equation
73+
### One-dimensional
7474

75-
[Burgers' equation](https://en.wikipedia.org/wiki/Burgers%27_equation) example can be found in `example/Burgers`.
76-
Use following commend to train model:
77-
78-
```julia
79-
$ julia --proj
80-
81-
julia> using Burgers; Burgers.train()
82-
```
75+
[Burgers' equation](example/Burgers)
8376

8477
### Two-dimensional with time Navier-Stokes equation
8578

example/Burgers/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Burgers' equation
2+
3+
In this example, a [Burgers' equation](https://en.wikipedia.org/wiki/Burgers%27_equation)
4+
is learned by a one-dimensional Fourier neural operator network.
5+
Change directory to `example/Burgers` and use following commend to train model:
6+
7+
```julia
8+
$ julia --proj
9+
10+
julia> using Burgers; Burgers.train()
11+
```

0 commit comments

Comments
 (0)