问题是求解一个矩形区域(0<=x<=1.5,0<=y<=0.5)的流体的热传导问题。方程如下:

Clear["Global`*"]
\[Lambda]1 = 15; T1 = 308; c = 42; \[Rho] = 1; \[Lambda] = 0.64;
T0[t_, x_, y_] := 320
TR[t_, x_, y_] := 340 /; x == 1.4 && y == 0.4
TR[t_, x_, y_] := 0 /; x != 1.4 || y != 0.4
Vr[t_, x_, y_] := 0.1 /; x == 1.4 && y == 0.4
Vr[t_, x_, y_] := 0 /; x != 1.4 && y != 0.4
equ = {D[T[t, x, y],
t] - \[Lambda]/(c \[Rho]) Laplacian[
T[t, x, y], {x, y}] - (TR[t, x, y](*-Integrate[T[t,x,y],{x,0,
1.5},{y,0,0.5}]/1.5/0.5*)) Vr[t, x, y]/(1.5*0.5) ==
0, (D[T[t, x, y], y] /. y -> 0.5) ==
0(*\[Lambda]1/\[Lambda] T1-\[Lambda]1/\[Lambda](T[t,x,
y]/.y\[Rule]0.5)*), (D[T[t, x, y], x] /. x -> 0.0) ==
0, (D[T[t, x, y], x] /. x -> 1.5) ==
0, (D[T[t, x, y], y] /. y -> 0.0) == 0, T[0., x, y] == 320};
NDSolve[equ, T, {t, 0, 60}, {x, 0, 1.5}, {y, 0, 0.5}]
Manipulate[
ContourPlot[Evaluate[T[t, x, y] /. %], {x, 0, 1.5}, {y, 0, 0.5},
PlotLegends -> Automatic, PlotRange -> All], {t, 0, 50}]
但是出现问题Syntax::sntxi: Incomplete expression; more input is needed .请问是什么原因啊。
另,有没有必要使用自带的NeumannValue函数,NeumannValue又怎么用在分段边界条件上?