Skip to content

Commit 64b3132

Browse files
committed
fix formatting in burgers
1 parent 05f71d2 commit 64b3132

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/burgers-new.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import math
2-
32
import scipy.io
4-
53
import tensordiffeq as tdq
64
from tensordiffeq.boundaries import *
75
from tensordiffeq.models import CollocationSolverND
@@ -60,6 +58,7 @@ def f_model(u_model, x, t):
6058

6159
X, T = np.meshgrid(x, t)
6260

61+
# print(np.shape((X,T))) #2, 100, 256
6362
X_star = np.hstack((X.flatten()[:, None], T.flatten()[:, None]))
6463
u_star = Exact_u.T.flatten()[:, None]
6564

0 commit comments

Comments
 (0)