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/research.py | |
parent | cdb1ea09b5173576d795b99debc30219072a095d (diff) | |
download | CFD-SIMPLE-162641340305650b710c85f6ebace6f7a392ea1b.tar.gz |
feat: correct indices
Diffstat (limited to 'src/research.py')
-rw-r--r-- | src/research.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/research.py b/src/research.py index d660f8e..2a59c49 100644 --- a/src/research.py +++ b/src/research.py @@ -34,7 +34,7 @@ class Research: if iteration % 10 == 0 or iteration == 1: if preview or save_plot: - self.plotter.plot(self.model) + self.plotter.plot(self.model, normalize=False, density=1) if preview: self.plotter.show() if save_plot: |