Initial Modification of the Solution Matrix by Removal of BCs #27182
Unanswered
TLWise
asked this question in
Q&A Modules: General
Replies: 1 comment 1 reply
-
Hello You can turn on/off boundary conditions using the Controls system. Guillaume |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given a typical 2nd order Poisson problem.
Au = f,
Where the discrete problem reads as,
Find u_h in V_h such that a_h(u_h,rho) = (f_h,rho) for all rho in V_h.
A_hU_h = F_h
Find u in V such that a(u,rho) = (f,rho) for all rho in V.
The continuous problem is defined with the boundary conditions, B(u) = g on the surface of the domain "cap_gamma".
I would like to initialize Matrix A_h (and also U_h andF_h) to not incorporated any BCs, corresponding to natural BCs.
S_h(cap_gamma). S_h(cap_gamma) denotes degrees of freedom of the vector U_h that are related to the boundary cap_gamma. Is it possible to modify the MOOSE framework code to accomplish this type of modification. If so what is a good starting point to perform the modification?
Beta Was this translation helpful? Give feedback.
All reactions