summaryrefslogtreecommitdiff
path: root/src/main.py
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-05-25 18:01:36 +0400
committereug-vs <eugene@eug-vs.xyz>2022-05-25 23:24:05 +0400
commit162641340305650b710c85f6ebace6f7a392ea1b (patch)
treeb34dc214f25775a4a06091343ae916c84a4b5a68 /src/main.py
parentcdb1ea09b5173576d795b99debc30219072a095d (diff)
downloadCFD-SIMPLE-162641340305650b710c85f6ebace6f7a392ea1b.tar.gz
feat: correct indices
Diffstat (limited to 'src/main.py')
-rw-r--r--src/main.py6
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)