File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -76,20 +76,21 @@ def figure_fits():
76
76
all_fits .append (fits .NonZeroFieldParallel (fig ))
77
77
78
78
# Create a fit with a large lifetime.
79
- fit_1 = fits .NonZeroFieldNormalizedDifference (figure_4 ()[3 ])
79
+ fit_1 = fits .NonZeroFieldDifference (figure_4 ()[3 ])
80
80
fit_1 .name = fit_1 .name + '_large_lifetime'
81
81
fit_1 .description = fit_1 .description + ', Large Lifetime'
82
82
# If the parameters order changes this index for τ must be updated.
83
- fit_1 .parameters [8 ]['guess' ] = 10 ** 5
84
- fit_1 .parameters [8 ]['lmfit' ]['max' ] = 10 ** 6
83
+ fit_1 .parameters [9 ]['guess' ] = 10 ** 10
84
+ fit_1 .parameters [9 ]['lmfit' ]['max' ] = 10 ** 12
85
85
all_fits .append (fit_1 )
86
86
87
87
# Create a fit with a larger lifetime.
88
- fit_1 = fits .NonZeroFieldNormalizedDifference (figure_4 ()[3 ])
88
+ fit_1 = fits .NonZeroFieldDifference (figure_4 ()[3 ])
89
89
fit_1 .name = fit_1 .name + '_larger_lifetime'
90
90
fit_1 .description = fit_1 .description + ', Larger Lifetime'
91
91
# If the parameters order changes this index for τ must be updated.
92
- fit_1 .parameters [8 ]['guess' ] = 10 ** 8
92
+ fit_1 .parameters [9 ]['guess' ] = 10 ** 12
93
+ fit_1 .parameters [9 ]['lmfit' ]['max' ] = 10 ** 15
93
94
all_fits .append (fit_1 )
94
95
95
96
return all_fits
You can’t perform that action at this time.
0 commit comments