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

Consistent initial values #1

Open
anaegel opened this issue Nov 14, 2024 · 1 comment
Open

Consistent initial values #1

anaegel opened this issue Nov 14, 2024 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@anaegel
Copy link
Member

anaegel commented Nov 14, 2024

The following lines (biot_driver.lua) do not compute consistent initial values:

if (( ARGS.LimexNStages > 0)) then
local dt0 = charTime*1e-50
print("Computing consistent initial value w/ dt0="..dt0)
util.SolveNonlinearTimeProblem(u, domainDisc0, nlsolver, myStepCallback0, "PoroElasticityInitial",
"ImplEuler", 1, startTime, dt0, dt0, dt0, dtRed);
end

as this generates the following system:

$$A_{uu} u_1 + A_{uß} p_1 = 0$$ $$A_{pu} u_1 = A_{pu} u_0 $$

Hence the solution $u_1$ satisfies div($u_1$) = div ($u_0$), but not $p_1$ = $p_0$.

@anaegel anaegel added the bug Something isn't working label Nov 14, 2024
@anaegel
Copy link
Member Author

anaegel commented Nov 14, 2024

Idea: The desired system should be of the following form:

$$A_{uu} u_1 + A_{uß} p_1 = 0$$ $$M_{pp} p_1 = M_{pp} p_0 $$

where $M_{pp}$ is an arbitrary (easily invertible) operator.

Solution 1:

  • Assemble Dirichlet conditions for p.
  • Appropriate selection for $\Phi$, $\alpha$, etc. for the flow equation .

Drawback in both cases:

  • Must use different solvers (as Schur complement approximation does not work ...)

Solution 2:

  • Assemble displacement disc only & define appropriate MG solver.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

2 participants