I am trying to create a model of plane wave's propagation on a quantum graph(metric graph with a differential operator, Shrodinger operator in my case, along the edges and continuity condition at the vertices) with given multi-bond transparency boundary conditions at a point 0:

Given initial and boundary conditions look like this:

I'm trying to solve it with Mathematica:
initialConditions = {
u11[0, x] == Sin[Pi*(x + 10)/10]^2,
u12[0, x] == 0,
u11[t, -10] == 0,
u11[t, 0] == 0,
u12[t, 0] == 0,
u[t, x] == u11[t, x] + u12[t, x]
}
boundaryConditions = {
-I*(3/2)*((D[ u12[t, x], x] /. x -> 0) - (D[u11[t, x], x] /.
x -> 0)) + ((D[ u12[t, x], t, x] /.
x -> 0) - (D[u11[t, x], t, x] /. x -> 0)) +
3*I*((D[ u12[t, x], t] /. x -> 0) - (D[u11[t, x], t] /.
x -> 0)) == 0,
I*D[u11[t, x], t] + (1/2)*D[u11[t, x], {x, 2}] == 0,
I*D[u12[t, x], t] + (1/2)*D[u12[t, x], {x, 2}] == 0
}
uix = NDSolveValue[{initialConditions, boundaryConditions},
u, {t, 0, 100}, {x, -10, 0}]
But I keep getting this error:

If someone has already experienced such troubles in similar problems, I would highly appreciate any help.
Thanks for your attention.
Update
- All functions should be zero at x = ±10.
- 11 is defined at [-10, 0], 12 at [0, 10].
- I've split one equation for to two for 11 and 12, because otherwise, Mathematica raised an error "system is underdetermined"
- I've put {x, -10, 0} because otherwise, I'm getting an error, which states, that 0 is not a boundary, so BC can not be defined. So I decided to split the problem into two calculations(maybe in the wrong way).

I*D[u11[t, x], t] + (1/2)*D[u11[t, x], {x, 2}] == 0, I*D[u12[t, x], t] + (1/2)*D[u12[t, x], {x, 2}] == 0, which is inconsistent with the one in the picture, which one is correct? 4. In the code you write{x, -10, 0}, which is again inconsistent with the picture, which one is correct? – xzczd Apr 13 '20 at 10:49{x, -10, 0}because otherwise, I'm getting an error, which states, that 0 is not a boundary, so BC can not be defined. So I decided to split the problem into two calculations(maybe in the wrong way). – zanhesl Apr 13 '20 at 13:56