Postprocessing free-surface + velocity correctly

This commit is contained in:
Edgar P. Burkhart 2022-03-03 10:38:32 +01:00
parent 0c4bc8a69f
commit e2b495c5a9
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
3 changed files with 14 additions and 14 deletions

View file

@ -21,8 +21,8 @@ def read_nohead_k(path, n, k):
def read_nohead_vect(path, n):
return read_reshape(path, (-1, n, 2))
return read_reshape(path, (-1, 2, n))
def read_nohead_vect_k(path, n):
return read_reshape(path, (-1, n, 2, k))
return read_reshape(path, (-1, 2, n, k))