This repository was archived by the owner on Sep 26, 2025. It is now read-only.
WIP: Add mixed form 2D Darcy problem example#82
Closed
alexanderianblair wants to merge 18 commits intomainfrom
Closed
WIP: Add mixed form 2D Darcy problem example#82alexanderianblair wants to merge 18 commits intomainfrom
alexanderianblair wants to merge 18 commits intomainfrom
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
... and 1 file with indirect coverage changes 🚀 New features to boost your workflow:
|
3a37987 to
4f73150
Compare
94deb43 to
ea7110c
Compare
Collaborator
|
While helping @bryceshirley to rebase this onto |
ea7110c to
57a78cd
Compare
Comment on lines
+30
to
+43
| \begin{equation} | ||
| (\mathbf{K} \mathbf{u}, \mathbf{v})_\Omega + (\nabla p, \mathbf{v})_\Omega - (\nabla \cdot \mathbf{u}, q)_\Omega | ||
| = (\mathbf{f}, \mathbf{v})_\Omega | ||
| \quad \forall \mathbf{v} \in V, \forall q \in W | ||
| \end{equation} | ||
|
|
||
| where | ||
|
|
||
| \begin{equation} | ||
| \begin{split} | ||
| \mathbf{u} \in H(\mathrm{div})(\Omega) &: \mathbf{u} \cdot \hat n = \mathbf{g} \quad \text{on} \quad \partial \Omega \\ | ||
| p \in L^2(\Omega) &: p = p_0 \quad \text{on} \quad \Gamma_\mathrm{D} | ||
| \end{split} | ||
| \end{equation} |
Contributor
Author
There was a problem hiding this comment.
This weak form here isn't consistent with the actual formulation used in the example (the choice of spaces and which gradient terms are present don't agree)
…orFEDivergenceKernel and MFEMDomainLFKernel and TransposeIntegrator logic moved to MixedBilinear Form Base Class
…r for consistency with main
57a78cd to
5f549d1
Compare
Collaborator
|
Closing as completed via idaholab/moose#30637. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a test solving a 2D Darcy problem, based on MFEM Example 5.
Depends on #78