Removed plot section in config
This commit is contained in:
parent
ff33554778
commit
ee3f7da38a
4 changed files with 2 additions and 8 deletions
|
@ -15,6 +15,3 @@ out=out_post
|
|||
dt=0.25
|
||||
x0=-1250
|
||||
t0=180
|
||||
|
||||
[plot]
|
||||
out=out_plt
|
||||
|
|
|
@ -15,6 +15,3 @@ out=out_post
|
|||
dt=0.25
|
||||
x0=-1250
|
||||
t0=180
|
||||
|
||||
[plot]
|
||||
out=out_plt
|
||||
|
|
|
@ -21,7 +21,7 @@ config.read(args.config)
|
|||
|
||||
inp = pathlib.Path(config.get("post", "inp"))
|
||||
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)
|
||||
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ config.read(args.config)
|
|||
|
||||
inp = pathlib.Path(config.get("post", "inp"))
|
||||
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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue