diff options
author | Paul Garlick <pgarlick@tourbillion-technology.com> | 2021-12-01 14:57:24 +0000 |
---|---|---|
committer | Paul Garlick <pgarlick@tourbillion-technology.com> | 2021-12-01 14:57:24 +0000 |
commit | 50777e51a5b161057d3f75ba050786a4667e67a1 (patch) | |
tree | 653ea2e6d4a57d4b30185dddce2413c57270b8e8 /fullswof-utils/makeBoundary | |
parent | 4fe25ed883824c6d24240dd64da1416b666222fe (diff) | |
download | fullSWOF-utils-50777e51a5b161057d3f75ba050786a4667e67a1.tar.gz |
makeBoundary: Describe dX variable.
* fullswof-utils/makeBoundary: Edit print command.
Diffstat (limited to 'fullswof-utils/makeBoundary')
-rwxr-xr-x | fullswof-utils/makeBoundary | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fullswof-utils/makeBoundary b/fullswof-utils/makeBoundary index 9d1d9f4..11eaaa6 100755 --- a/fullswof-utils/makeBoundary +++ b/fullswof-utils/makeBoundary @@ -176,7 +176,7 @@ ymax = (ytp[0]+ytp[-1]) # domain extent in y-direction ncols = int(math.sqrt(len(xtp)*xmax/ymax)) # number of cells in x-direction nrows = int(len(xtp)/ncols) # number of cells in y-direction dX = xmax/ncols # cell size -print('dX =', dX) +print('cell size, dX (/m) =', dX) #print(ncols, nrows) |