Processing update: fix empty file issue
This commit is contained in:
parent
bb9dfe8603
commit
2d1c5683f2
2 changed files with 13 additions and 19 deletions
|
@ -32,8 +32,10 @@ log.info(f"Wrinting output in '{inp}'")
|
|||
log.info("Reading 'dep'")
|
||||
np.save(inp.joinpath("dep"), rsws.read_scalar(sws_out.joinpath("dep.dat")))
|
||||
log.info("Reading 'botl'")
|
||||
np.save(inp.joinpath("botl"), rsws.read_scalar(sws_out.joinpath("botl.dat"),
|
||||
const=True))
|
||||
np.save(
|
||||
inp.joinpath("botl"),
|
||||
rsws.read_scalar(sws_out.joinpath("botl.dat"), const=True),
|
||||
)
|
||||
log.info("Reading 'watl'")
|
||||
np.save(inp.joinpath("watl"), rsws.read_scalar(sws_out.joinpath("watl.dat")))
|
||||
log.info("Reading 'vel'")
|
||||
|
|
Reference in a new issue