diff options
author | Paul Garlick <pgarlick@tourbillion-technology.com> | 2021-12-01 15:54:25 +0000 |
---|---|---|
committer | Paul Garlick <pgarlick@tourbillion-technology.com> | 2021-12-01 15:54:25 +0000 |
commit | 1337d0a00f377ccc8372378e18357bda9895d043 (patch) | |
tree | 24b7f6017b7c097bb0dd013a39ac392f57e73346 | |
parent | 50777e51a5b161057d3f75ba050786a4667e67a1 (diff) | |
download | fullSWOF-utils-1337d0a00f377ccc8372378e18357bda9895d043.tar.gz |
makeBoundary: Format output of minimum panel heights.
* fullswof-utils/makeBoundary: Add format to print command.
-rwxr-xr-x | fullswof-utils/makeBoundary | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fullswof-utils/makeBoundary b/fullswof-utils/makeBoundary index 11eaaa6..8937bab 100755 --- a/fullswof-utils/makeBoundary +++ b/fullswof-utils/makeBoundary @@ -235,7 +235,8 @@ for p in range(num_panels): # print(zregion) # print(xin[12:20]) -print('zmin =', zmin) +for i in range(len(zmin)): + print('zmin[{0}] (/m) = {1:.3f}'.format(i, zmin[i])) # channel overtopping height (minimum of left bank and right bank heights): zmax = min(zregion[panel[0]][0], zregion[panel[0]][-1]) - ztol |