summaryrefslogtreecommitdiff
path: root/src/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.py')
-rw-r--r--src/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.py b/src/main.py
index 485755e..b74e12c 100644
--- a/src/main.py
+++ b/src/main.py
@@ -1,9 +1,9 @@
from simple import SIMPLE
from research import Research
-model = SIMPLE((100, 200), (50, 50), 0.001, 100)
+model = SIMPLE((50, 100), (40, 40), 0.001, 700)
-research = Research(model, f'{model.p.shape[0]}x{model.p.shape[1]}-{model.Re}')
+research = Research(model, f'{model.p.shape[0] * model.step}x{model.p.shape[1] * model.step}_{model.bfs_shape[0] * model.step}x{model.bfs_shape[1] * model.step}_Re{model.Re}/{model.step}')
is_complete = research.load()