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

Update docs #3797

Merged
merged 2 commits into from
Mar 11, 2024
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
3 changes: 3 additions & 0 deletions Docs/sphinx_documentation/source/EB.rst
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,9 @@ testing cell types and getting neighbor information. For example
end do
end do


.. _sec:EB:redistribution:

Small Cell Problem and Redistribution
=====================================

Expand Down
12 changes: 12 additions & 0 deletions Docs/sphinx_documentation/source/LinearSolvers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,18 @@ For Robin boundary conditions, the ghost cells in
store the numerical values in the condition,
:math:`a\phi + b\frac{\partial\phi}{\partial n} = f`.

4) Nodal solver provides the option to use an overset mask:

.. highlight:: c++

::

// omask is either 0 or 1. 1 means the node is an unknown. 0 means it's known.
void setOversetMask (int amrlev, const iMultiFab& a_dmask);

Note this is an integer (not bool) MultiFab, so the values must be only either 0 or 1.


.. _sec:linearsolver:pars:

Parameters
Expand Down
Loading