Certain problem formulations require changing the equation corresponding to (having the same global number as) a particular degree of freedom.
For example, in steady free surface problems, there is a constraint on the total fluid volume, but no "obvious" associated degree of freedom. For these problems, a fluid pressure degree of freedom may be "traded" for the volume constraint. The "traded" degree of freedom remains a fluid pressure and must appear in the governing equations in that role. However, the equation associated with that unknown is no longer the continuity equation, but the volume constraint, see another tutorial for more details.
A similar situation arises when applying complex boundary conditions: perhaps the fluid velocity on the boundary is itself the solution of an equation depending on a local chemical concentration. One way of implementing such boundary conditions is to introduce a new variable representing the boundary velocity, solve the additional equation for that velocity and then impose that as a Dirichlet condition. However, the condition can be implemented without introducing a new variable by changing the equation associated with the fluid velocity on the boundary.
In oomph-lib
, this type of process is known as hijacking and uses the Hijacked
wrapper class, which adds new member functions to the element:
Calling any of these functions instructs the bulk element to set the specified residual and associated row in the Jacobian matrix to zero. For example,
sets to zero the residual associated with the first data value stored at the first (local) node in the element.
Note that hijacking is on a per element basis, so that if a degree of freedom is shared between elements it can be hijacked in all, none or some of them, as required.
The return type of each member function is a pointer to a Data
object. This Data
object is a "custom" object that consists of a (copy of a) single value corresponding to the "hijacked" degree of freedom and its global equation number. This object is provided so that it can be used as external data in other elements that assemble the "new" equations for the unknown, see another tutorial for an example. Note that this can lead to memory leaks unless the new object is safely deleted, so if you do not want to make use of the Data
object you should precede the call to the member function by delete
, e.g.
Hijacked::unhijack_all_data()
can be used to reset all hijacked values in an element.unhijack_all_data()
before adaptation and then hijack again in actions_after_adapt()
.Hijacked
, because hijacking is used to enforce the contact angle condition in certain circumstances.A pdf version of this document is available.