37
37
38
38
def run (plot = True ):
39
39
40
- ## Initialize peak extraction
40
+ # Initialize peak extraction
41
41
# Create peak extraction object
42
42
ppe = PDFPeakExtraction ()
43
43
44
44
# Load the PDF from a file
45
45
ppe .loadpdf ("data/TiO2_fine_qmax26.gr" )
46
46
47
- ###### Set up extraction parameters.
47
+ # Set up extraction parameters.
48
48
# In this section we'll examine the major extraction parameters in detail.
49
49
# diffpy.srmise strives to provide reasonable default values for these
50
50
# parameters. For normal use setting the range, baseline, and uncertainty
51
51
# should be sufficient.
52
52
kwds = {}
53
53
54
- ## Range
54
+ # Range
55
55
# Range defaults to the entire PDF if not specified.
56
56
kwds ["rng" ] = [1.5 , 10.0 ]
57
57
58
- ## dg
58
+ # dg
59
59
# diffpy.srmise selects model complexity based primarily on the uncertainty
60
60
# of the PDF. Note that very small uncertainties (<1%) can make peak
61
61
# extraction excessively slow. In general, the smaller the uncertainty the
@@ -80,7 +80,7 @@ def run(plot=True):
80
80
# 1273-1283. doi:10.1107/S1600576714010516
81
81
kwds ["dg" ] = 0.35 # Play with this value!
82
82
83
- ## baseline
83
+ # baseline
84
84
# As a crystal PDF, a linear baseline crossing the origin is appropriate.
85
85
# Here we define the linear baseline B(r) = -.5*r + 0, and explicitly set
86
86
# the y-intercept as a fixed parameter which will not be fit. For
@@ -91,7 +91,7 @@ def run(plot=True):
91
91
slope = - 0.65 # Play with this value!
92
92
y_intercept = 0.0
93
93
kwds ["baseline" ] = blfunc .actualize ([slope , y_intercept ], free = [True , False ])
94
- ## pf
94
+ # pf
95
95
# The pf (peakfunction) parameter allows setting the shape of peaks to be
96
96
# extracted. Termination effects are added automatically to the peak
97
97
# function during extraction. In the harmonic approximation of atomic
@@ -109,7 +109,7 @@ def run(plot=True):
109
109
pf = GaussianOverR (0.7 )
110
110
kwds ["pf" ] = [pf ] # Despite the list, only one entry is currently supported.
111
111
112
- ## qmax
112
+ # qmax
113
113
# PDFs typically report the value of qmax (i.e. the maximum momentum
114
114
# transfer q in the measurement), but it can be specified explicitly also.
115
115
# If the PDF does not report qmax, diffpy.srmise attempts to estimate it
@@ -119,7 +119,7 @@ def run(plot=True):
119
119
# diffpy.srmise does not consider Nyquist sampling or termination effects.
120
120
kwds ["qmax" ] = 26.0
121
121
122
- ## nyquist
122
+ # nyquist
123
123
# This parameter governs whether diffpy.srmise attempts to find a model
124
124
# on a Nyquist-sampled grid with dr=pi/qmax, which is a grid where data
125
125
# uncertainties are least correlated without loss of information. By
@@ -132,7 +132,7 @@ def run(plot=True):
132
132
# doi:10.1103/PhysRevB.84.134105
133
133
kwds ["nyquist" ] = True
134
134
135
- ## supersample
135
+ # supersample
136
136
# This parameter dictates the data be oversampled by at least this factor
137
137
# (relative to the Nyquist rate) during the early stages of peak
138
138
# extraction. If the input PDF is even more finely sampled, that level of
@@ -141,7 +141,7 @@ def run(plot=True):
141
141
# finding and clustering process, but reduces speed.
142
142
kwds ["supersample" ] = 4.0
143
143
144
- ## cres
144
+ # cres
145
145
# The cres (clustering resolution) parameter governs the sensitivity of the
146
146
# clustering method used by diffpy.srmise. In short, when the data are
147
147
# being clustered, data which are further than the clustering resolution
@@ -156,7 +156,7 @@ def run(plot=True):
156
156
# Apply peak extraction parameters.
157
157
ppe .setvars (** kwds )
158
158
159
- ## initial_peaks
159
+ # initial_peaks
160
160
# Initial peaks are peaks which are kept fixed during the early stages of
161
161
# peak extraction, effectively condition results upon their values. Since
162
162
# initial peaks are sometimes dependent on other SrMise parameters (e.g.
@@ -168,7 +168,7 @@ def run(plot=True):
168
168
# diffpy.srmise estimate the peak parameters.
169
169
# 2) Explicit specification of peak parameters.
170
170
171
- ## Initial peaks from approximate positions.
171
+ # Initial peaks from approximate positions.
172
172
# This routine estimates peak parameters by finding the peak-like cluster
173
173
# containing the specified point. It does not search for occluded peaks,
174
174
# so works best on well-separated peaks. It does, however, take any
@@ -177,7 +177,7 @@ def run(plot=True):
177
177
for p in positions :
178
178
ppe .estimate_peak (p ) # adds to initial_peaks
179
179
180
- ## Initial peaks from explicit parameters.
180
+ # Initial peaks from explicit parameters.
181
181
# Adding initial peaks explicitly is similar to defining a baseline.
182
182
# Namely, choosing a peak function and then actualizing it with given
183
183
# parameters. For this example peaks are created from the same GaussianOverR
@@ -194,22 +194,22 @@ def run(plot=True):
194
194
peaks .append (pf .actualize (p , free = [True , False , True ], in_format = "pwa" ))
195
195
ppe .add_peaks (peaks ) # adds to initial_peaks
196
196
197
- ## Initial peaks and pruning
197
+ # Initial peaks and pruning
198
198
# While initial peaks condition what other peaks can be extracted, by
199
199
# default they can also be pruned if a simpler model appears better. To
200
200
# prevent this, they can be set as non-removable.
201
201
for ip in ppe .initial_peaks :
202
202
ip .removable = False
203
203
204
- ## Plot initial parameters
204
+ # Plot initial parameters
205
205
if plot :
206
206
makeplot (ppe )
207
207
plt .title ("Initial Peaks" )
208
208
209
- ###### Perform peak extraction
209
+ # Perform peak extraction
210
210
ppe .extract ()
211
211
212
- ## Save output
212
+ # Save output
213
213
# The write() method saves a file which preserves all aspects of peak
214
214
# extraction and its results, by convention using the .srmise extension,
215
215
# and which can later be read by diffpy.srmise.
@@ -222,7 +222,7 @@ def run(plot=True):
222
222
ppe .write ("output/parameter_summary.srmise" )
223
223
ppe .writepwa ("output/parameter_summary.pwa" )
224
224
225
- ## Plot results.
225
+ # Plot results.
226
226
# Display plot of extracted peak. It is also possible to plot an existing
227
227
# .srmise file from the command line using
228
228
# srmise output/TiO2_parameterdetail.srmise --no-extract --plot
0 commit comments