Goal¶
Develop a coupled nonmatching 1D-3D optimal control problem for oxygen transport from a vascular network into tissue. The control is a local change of vessel radii, constrained by physiological bounds, and the target is a measured tissue oxygen concentration such as a BOLD MRI proxy.
This is the most advanced project in the list.
Mathematical Formulation¶
Let be the tissue domain and let be a 1D vascular network embedded in . The tissue oxygen concentration is , and the vessel concentration is .
The control is a radius field
with box constraints
A simplified static model is:
coupled to a 1D transport/reaction equation on the network,
Here:
denotes exchange supported on the embedded network;
maps tissue points to the closest network point in the exchange model;
is the flow rate obtained from a static Bernoulli or Poiseuille-type network model;
and may depend on the radius.
A simple algebraic network-flow closure is
on each vessel segment , together with Kirchhoff conservation at interior network nodes:
The optimization problem is
subject to the coupled 1D-3D equations and the bounds on .
The reduced gradient contains three contributions:
where denotes the coupled 1D-3D residual tested with tissue and network adjoints .
The constrained first-order condition is
Implementation Hints¶
Start with fixed flow and fixed radius-dependent exchange.
Then add the radius-to-flow network model.
Use nonmatching coupling ideas from Project 09.
Use projected gradient first; PDAS is a natural extension.
Keep a very small synthetic network for the first tests.
Relevant Examples¶
Course code:
codes/dealii/execs/inverse_poisson_kkt.ccfor parameter identification and box constraints.Course code: parabolic and projected-gradient classes for optimization structure.
deal.II:
step-60for nonmatching grid coupling.deal.II: mixed-dimensional coupling examples and embedded-manifold techniques where available.
Deliverables¶
A minimal 1D network solver.
A 3D diffusion solver with embedded source/exchange terms.
A reduced-gradient or projected-gradient optimization loop for vessel radii.
Synthetic reconstruction tests from manufactured oxygen data.
A discussion of identifiability: which radius perturbations can actually be seen in tissue oxygen measurements?