Update example

This commit is contained in:
Pim Nelissen
2024-06-30 11:57:23 +02:00
parent f1080584e7
commit 3669044534

View File

@ -5,7 +5,7 @@ from _stats.schmidt_test import generalised_schmidt_test as gst
from _utils.termcolors import termcolors as tc
NUMBER_OF_SIMS = 1
NUMBER_OF_SIMS = 1_000
# define a state
initial_state = State(A=288, Z=115)
@ -20,7 +20,7 @@ sim.run_simulation(NUMBER_OF_SIMS)
sim.print_results()
# print mean lifetimes
sim.print_mean_lifetimes()
sim.print_mean_lifetimes()
# print statistics of individual steps
sim.print_schmidt_test()
@ -30,4 +30,4 @@ sim.generalised_schmidt_test()
# get a specific lifetime
x = sim.get_mean_lifetime(A=288, Z=115)
print(x)
print(x)