1
Fork 0

Removed plot section in config

This commit is contained in:
Edgar P. Burkhart 2022-03-29 10:48:46 +02:00
parent ff33554778
commit ee3f7da38a
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
4 changed files with 2 additions and 8 deletions

View File

@ -15,6 +15,3 @@ out=out_post
dt=0.25 dt=0.25
x0=-1250 x0=-1250
t0=180 t0=180
[plot]
out=out_plt

View File

@ -15,6 +15,3 @@ out=out_post
dt=0.25 dt=0.25
x0=-1250 x0=-1250
t0=180 t0=180
[plot]
out=out_plt

View File

@ -21,7 +21,7 @@ config.read(args.config)
inp = pathlib.Path(config.get("post", "inp")) inp = pathlib.Path(config.get("post", "inp"))
root = pathlib.Path(config.get("swash", "out")) root = pathlib.Path(config.get("swash", "out"))
out = pathlib.Path(config.get("plot", "out")) out = pathlib.Path(config.get("post", "out"))
out.mkdir(exist_ok=True) out.mkdir(exist_ok=True)

View File

@ -21,7 +21,7 @@ config.read(args.config)
inp = pathlib.Path(config.get("post", "inp")) inp = pathlib.Path(config.get("post", "inp"))
root = pathlib.Path(config.get("swash", "out")) root = pathlib.Path(config.get("swash", "out"))
out = pathlib.Path(config.get("plot", "out")) out = pathlib.Path(config.get("post", "out"))
out.mkdir(exist_ok=True) out.mkdir(exist_ok=True)