@@ -160,7 +160,7 @@ def erturk_u(NN):
160160 )
161161
162162 velocity = u .ProbeData (pts , "Velocity" )
163- ( ilen , jlen ) = velocity .shape
163+ ilen , jlen = velocity .shape
164164 norm = 0.0
165165 for i in range (ilen ):
166166 diff = pts [i ][3 ] - velocity [i ][0 ]
@@ -217,7 +217,7 @@ def erturk_v(NN):
217217 )
218218
219219 velocity = u .ProbeData (pts , "Velocity" )
220- ( ilen , jlen ) = velocity .shape
220+ ilen , jlen = velocity .shape
221221 norm = 0.0
222222 for i in range (ilen ):
223223 diff = pts [i ][3 ] - velocity [i ][1 ]
@@ -269,7 +269,7 @@ def botella_u(NN):
269269 )
270270
271271 velocity = u .ProbeData (pts , "Velocity" )
272- ( ilen , jlen ) = velocity .shape
272+ ilen , jlen = velocity .shape
273273 norm = 0.0
274274 for i in range (ilen ):
275275 diff = pts [i ][3 ] - velocity [i ][0 ]
@@ -320,7 +320,7 @@ def botella_v(NN):
320320 )
321321
322322 velocity = u .ProbeData (pts , "Velocity" )
323- ( ilen , jlen ) = velocity .shape
323+ ilen , jlen = velocity .shape
324324
325325 norm = 0.0
326326 for i in range (ilen ):
@@ -372,7 +372,7 @@ def botella_p1(NN):
372372 )
373373
374374 velocity = u .ProbeData (pts , "Velocity" )
375- ( ilen , jlen ) = velocity .shape
375+ ilen , jlen = velocity .shape
376376 pressure = u .ProbeData (pts , "Pressure" )
377377
378378 pts0 = np .array (
@@ -430,7 +430,7 @@ def botella_p2(NN):
430430 )
431431
432432 velocity = u .ProbeData (pts , "Velocity" )
433- ( ilen , jlen ) = velocity .shape
433+ ilen , jlen = velocity .shape
434434 pressure = u .ProbeData (pts , "Pressure" )
435435
436436 pts0 = np .array (
0 commit comments