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

Parse for adv_redist_type and diff_redist_type #417

Merged
merged 1 commit into from
Sep 23, 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
6 changes: 6 additions & 0 deletions Docs/sphinx/manual/LMeXControls.rst
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,12 @@ in ``Exec/RegTest/EB_BackwardStepFlame`` and ``Exec/RegTest/EB_FlowPastCylinder`
.. note::
Note that when using isothermal EB in combination with LES, the thermal diffusion coefficient employed to compute the EB boundary thermal flux only uses the molecular contribution.

Lastly, it is possible to change the default redistribution scheme described in the :ref:`geometry with embedded boundaries section: <ssec:geoEB>`
::

peleLM.adv_redist_type = StateRedist # [OPT, DEF=StateRedist] Redistribution scheme for advection [StateRedist, FluxRedist, NoRedist]
peleLM.diff_redist_type = FluxRedist # [OPT, DEF=FluxRedist] Redistribution scheme for diffusion [StateRedist, FluxRedist, NoRedist]

Linear solvers
--------------

Expand Down
1 change: 1 addition & 0 deletions Docs/sphinx/manual/Model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ In practice, `PeleLM` will perform a total of 7 single-level advance steps, whil

Geometry with Embedded Boundaries
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. _ssec:geoEB:

`PeleLMeX` relies on `AMReX's implementation <https://amrex-codes.github.io/amrex/docs_html/EB_Chapter.html>`_ of
the Embedded Boundaries (EB) approach to represent geometrical objects. In this approach, the underlying computational
Expand Down
2 changes: 2 additions & 0 deletions Source/PeleLMeX_Setup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,8 @@ PeleLM::readParameters()
}
}
pp.query("isothermal_EB", m_isothermalEB);
pp.query("adv_redist_type", m_adv_redist_type);
pp.query("diff_redist_type", m_diff_redist_type);
#endif

// -----------------------------------------
Expand Down
Loading