Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in docs #26

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions docs/src/literate-tutorials/heat_equation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# The resulting weak form is given given as follows: Find ``u \in \mathbb{U}`` such that
# ```math
# \int_{\Omega} \nabla \delta u \cdot \nabla u \mathrm{d}\Omega
# \int_{\Gamma^{\text{P}/\text{M}}} [\![ \delta u ]\!] [\![ u ]\!] \mathrm{d}\Gamma
# + \int_{\Gamma^{\text{P}/\text{M}}} [\![ \delta u ]\!] [\![ u ]\!] \mathrm{d}\Gamma
# = 0 \quad \forall \delta u \in \mathbb{T},
# ```
# where $\delta u$ is a test function, and where $\mathbb{U}$ and $\mathbb{T}$ are suitable
Expand Down Expand Up @@ -259,4 +259,4 @@ CairoMakie.save("heat_equation_result.png", fig);
#md #
#md # ```julia
#md # @__CODE__
#md # ```
#md # ```
4 changes: 2 additions & 2 deletions src/grid.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

Return a new grid with `InterfaceCell`s inserted betweenthe domains defined by `domain_names`.
The new grid provides additional cell sets. The set `"interfaces"` contains all new `InterfaceCell`s
and two sets are provided for each combination of domain names: `"domain1-domain2-inertface"` and
`"domain2-domain1-inertface"` both using the same `Set`.
and two sets are provided for each combination of domain names: `"domain1-domain2-interface"` and
`"domain2-domain1-interface"` both using the same `Set`.
"""
function insert_interfaces(grid, domain_names; topology=ExclusiveTopology(grid))
cellsets = Dict(name => getcellset(grid, name) for name in domain_names)
Expand Down
Loading