Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ makedocs(
"Boundary Conditions" => "boundary_conditions.md",
"How it works" => "howitworks.md",
"Notes for developers: Implement a scheme" => "devnotes.md",
"Generated Examples" => ["generated/bruss_sys.md", "generated/bruss_ode_eqs.md"]
"Generated Examples" => ["generated/bruss_code.md", "generated/bruss_ode_eqs.md"]
# "Tutorial: Burgers" => "tutorials/burgers.md",
# "Tutorial: 1D Linear Diffusion" => "tutorials/1d_linear_diffusion.md",
# "Tutorial: 1D Non-Linear Diffusion" => "tutorials/1d_nonlinear_diffusion.md",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/icbc_sampled.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Initial and Boundary Conditions with sampled/measured Data
# Initial and Boundary Conditions with sampled/measured Data

Initial and boundary conditions are sometimes applied with measured data that is itself pre-discretized. In order to use such data it is recommended to leverage [`Interpolations.jl`](https://github.com/JuliaMath/Interpolations.jl), or [`DataInterpolations.jl`](https://github.com/PumasAI/DataInterpolations.jl), for better dealing with possibly noisy data (currently limited to 1D). to create a callable effectively continuous function, for example (from the `Interpolations.jl` [docs](http://juliamath.github.io/Interpolations.jl/latest/control/)):
1D:
Expand Down