adding poi temp

This commit is contained in:
jeremias
2021-04-02 13:11:34 +02:00
parent 74785679cb
commit 4764bb4bb8
31 changed files with 315 additions and 29 deletions

View File

@ -51,12 +51,12 @@ def plot_parameters(dat, input_file, deparameterize=False, ref=None):
with open(inputfile_path) as file:
inputfile = yaml.full_load(file)
#true_val = [10,250,250,250,30]
true_values = {
3: 10,
4: 60,
5: 220,
6: 160,
3: 2400,
4: 4200,
5: 11000,
6: 7800,
2: 100
}
@ -71,7 +71,7 @@ def plot_parameters(dat, input_file, deparameterize=False, ref=None):
for bnd_set in inputfile['boundary_conditions']:
if bnd_c['id'] == bnd_set['id']:
ids.append(bnd_c['id'])
current_val.append(bnd_set['value'][0])
current_val.append(bnd_set['parameters']['R_d'])
labels.append('$R_' + str(bnd_c['id']))
elif 'dirichlet' in bnd_c['type']: