diff options
author | Volker Hoffmann <volker@cheleb.net> | 2016-10-31 09:49:21 +0100 |
---|---|---|
committer | Volker Hoffmann <volker@cheleb.net> | 2016-10-31 09:49:21 +0100 |
commit | f38a9fe70b4323aa48c5e5fbabca7fbf2f162db0 (patch) | |
tree | bf8a39a985c92daaafc5d36cf0c4ae206bb58798 | |
parent | d3e93c31184d3b8431649d3444051f5859c597a1 (diff) |
fix: displayed wrong time unit
-rw-r--r-- | Plots/Chaos/ae3_stacked.py | 2 | ||||
-rw-r--r-- | Plots/Chaos/ai3_stacked.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Plots/Chaos/ae3_stacked.py b/Plots/Chaos/ae3_stacked.py index 4242987..50a2887 100644 --- a/Plots/Chaos/ae3_stacked.py +++ b/Plots/Chaos/ae3_stacked.py @@ -314,7 +314,7 @@ for nstep in nsteps: # Title, Legend tout = dfo.time.iloc[0] - txtsup = "nstep = %012d // time = %.2e Myr" % (nstep, tout) + txtsup = "nstep = %012d // time = %.2e Yr" % (nstep, tout) txtsup += " // (Embryos/Planets, Planetesimals, Total Particles)" fig.suptitle(txtsup, fontsize='small') diff --git a/Plots/Chaos/ai3_stacked.py b/Plots/Chaos/ai3_stacked.py index 18fc27a..2595572 100644 --- a/Plots/Chaos/ai3_stacked.py +++ b/Plots/Chaos/ai3_stacked.py @@ -297,7 +297,7 @@ for nstep in nsteps: # Title, Legend tout = dfo.time.iloc[0] - txtsup = "nstep = %012d // time = %.2e Myr" % (nstep, tout) + txtsup = "nstep = %012d // time = %.2e Yr" % (nstep, tout) txtsup += " // (Embryos/Planets, Planetesimals, Total Particles)" fig.suptitle(txtsup, fontsize='small') |