split simulating and evaluating and stuff

This commit is contained in:
Dominik Demuth
2024-12-01 19:24:19 +01:00
parent 5b5aacff0b
commit e90c4c9543
5 changed files with 76 additions and 40 deletions

View File

@@ -74,7 +74,7 @@ def fit_ste(
# make evolution times
tevo = np.linspace(parameter['tevo_start'], parameter['tevo_stop'], num=int(parameter['tevo_steps']))
raw_data = np.loadtxt(f'{prefix}_{varied_string}.dat')
raw_data = np.loadtxt(parameter_file.with_name(f'{prefix}_{varied_string}.dat'))
t_mix = raw_data[:, 0]
decay = raw_data[:, 1:]