You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
axisymmetric solutions with symmetry at the center-line
fixed-length intervals
We should generalize this function to:
arbitrary polynomial order; a little more effort now, but it will pay off
general boundary conditions on the right side
We should adapt the function to capture general linear Robin boundary conditions:
$$
au + bu' = c
$$
// Either a or b must be nonzero, else the problem is undefined!assert(a != 0.0 || b != 0.0);
if (b) {
if (a) {
// Robin
} else {
// Neumann
}
} else {
// Dirichlet
}
Open question remains how to deal with more general non-linear conditions of the form,
I'm guessing in this case, the explicit ODE form is inappropriate anyways, and we need a solver that can deal with the more general DAE form $F(t,y,y') = 0$.
The text was updated successfully, but these errors were encountered:
deformable-lbm/lib/oc_helpers.c
Line 6 in d17744d
This function help solves the algebraic equations for time-dependent problems. A description can be found here: https://faculty.washington.edu/finlayso/ebook/pde/OC/OCFE.htm
We should keep this function specific to
We should generalize this function to:
We should adapt the function to capture general linear Robin boundary conditions:
Open question remains how to deal with more general non-linear conditions of the form,
or even non-local ones,
I'm guessing in this case, the explicit ODE form is inappropriate anyways, and we need a solver that can deal with the more general DAE form$F(t,y,y') = 0$ .
The text was updated successfully, but these errors were encountered: