I'm looking at a very simple 2 component linear reaction-diffusion system. The equations are:
$$\partial_t u = a \, \partial_{xx} u + bw - cu \\ \partial_t w = d \, \partial_{xx} w - bw + cu$$
with $a,b,c,d>0$.
There is an internal boundary condition for $w$:
$$\partial_x w(t,0^-)=m\left[w\left(t,0^{-}\right)-1\right]\,,\quad m > 0\,;\qquad\qquad \partial_x w\left(t,0^{+}\right)=0.$$
Notably this means that $w$ is generally not continuous at $x=0$.
Past this point the boundary conditions are a bit flexible for mathematical convenience, but the most natural problem I can think of is to have the spatial domain be all of $\mathbb{R}$ and require $u,w \to 0$ as $|x| \to \infty$.
Otherwise it is a standard Cauchy problem: $u(0,x)$ and $w(0,x)$ are given.
Are there closed form solutions to this problem as a function of the initial data? I tried finding stationary solutions but with this decay boundary condition it turns out that either $u$ or $w$ is forced to be negative in the stationary problem, which does not really make physical sense. I haven't seen examples of separation of variables for coupled systems of linear PDE, so I'm not sure how easy that is to carry out.
It is not difficult to see that the Fourier problem can be solved, as it is just
$$\partial_t \hat{u} = (-a |\xi|^2 - c) \hat{u} + b \hat{w} \\ \partial_t \hat{w} = c \hat{u} + (-d |\xi|^2 - b) \hat{w}$$
so the solution is given through the exponential of the matrix $\begin{bmatrix} -a |\xi|^2 - c & b \\ c & -d |\xi|^2 - b \end{bmatrix}$. I'm not sure this is feasible to Fourier-invert, though, nor am I sure how to insert the internal boundary condition into the Fourier problem.