From 188bc3e230fe0759cc09fc8f13f5ab87fb5342cd Mon Sep 17 00:00:00 2001 From: danielque Date: Thu, 24 Mar 2022 10:48:37 +0100 Subject: [PATCH] adjust plot range to shortened simulation time --- .../redBloodCellPoiseuilleFlow/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/cfdemSolverIBContinuousForcing/redBloodCellPoiseuilleFlow/results.py b/tutorials/cfdemSolverIBContinuousForcing/redBloodCellPoiseuilleFlow/results.py index ac79b4e9..c94da0c9 100755 --- a/tutorials/cfdemSolverIBContinuousForcing/redBloodCellPoiseuilleFlow/results.py +++ b/tutorials/cfdemSolverIBContinuousForcing/redBloodCellPoiseuilleFlow/results.py @@ -40,7 +40,7 @@ for i in range(len(t)): min_eig.append(eig) plt.plot(t,min_eig,linewidth = 1) -plt.xlim([0,1.25]) +plt.xlim([0,0.5]) plt.xlabel('Time (s)') plt.ylabel('Min. eigen value of G') plt.minorticks_on()