diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-05-25 18:01:36 +0400 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-05-25 23:24:05 +0400 |
commit | 162641340305650b710c85f6ebace6f7a392ea1b (patch) | |
tree | b34dc214f25775a4a06091343ae916c84a4b5a68 /src/main.py | |
parent | cdb1ea09b5173576d795b99debc30219072a095d (diff) | |
download | CFD-SIMPLE-162641340305650b710c85f6ebace6f7a392ea1b.tar.gz |
feat: correct indices
Diffstat (limited to 'src/main.py')
-rw-r--r-- | src/main.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.py b/src/main.py index cdbf16e..27620b7 100644 --- a/src/main.py +++ b/src/main.py @@ -1,13 +1,13 @@ from simple import SIMPLE from research import Research -model = SIMPLE((1, 2), (0.7, 0.5), 0.02, 120) +model = SIMPLE((30, 30), (0, 0), 0.02, 40) -research = Research(model, '07x05_002') +research = Research(model, 'testing') is_complete = research.load() if is_complete: research.inspect() else: - research.solve(preview=True, save_plot=True, save_model=True) + research.solve(preview=True) |