1

It produces an error. please suggest an alternative solution to the above-coupled pde problem.

 ClearAll[U, V]
System = {D[U[x, t], t] == - U[x, t] D[U[x, t], x]-9.8 D[V[x, t], x], 
   D[V[x,t],t] == -V[x,t] D[U[x,t],x]-U[x,t] D[V[x,t],x]-(0.2x-20) D[U[x,t],x]-0.2 U[x, t],
    V[x, 0] == 2 (Sech[0.0136931 x])^2, 
   U[x, 0] == 1.4 (Sech[0.0136931 x])^2 };
{U, V} = NDSolveValue[System, {U, V}, {x, 0, 1}, {t, 0, 1}]
J. M.'s missing motivation
  • 124,525
  • 11
  • 401
  • 574
Anil Kumar
  • 31
  • 2
  • 1
  • The bcart warning is a serious problem, see this post for more info: https://mathematica.stackexchange.com/q/73961/1871 2. Please add some background info to the question. Currently we don't even know if the problem itself is correct or not.
  • – xzczd Jun 23 '22 at 12:49