We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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$.
The text was updated successfully, but these errors were encountered:
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:
Drawback in both cases:
Solution 2:
Sorry, something went wrong.
anaegel
parnet
When branches are created from issues, their pull requests are automatically linked.
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:
Hence the solution$u_1$ satisfies div($u_1$ ) = div ($u_0$ ), but not $p_1$ = $p_0$ .
The text was updated successfully, but these errors were encountered: