;+ ; PROCEDURE: ; mms_feeps_pad_spinavg ; ; PURPOSE: ; Spin-averages FEEPS pitch angle distributions ; ; KEYWORDS: ; probe: value for MMS SC # ; datatype: 'electron' or 'ion' ; energy: energy range to include in the calculation ; bin_size: size of the pitch angle bins ; ; ; NOTES: ; This routine is called automatically from mms_feeps_pad ; ; ;$LastChangedBy: egrimes $ ;$LastChangedDate: 2017-01-31 17:46:13 -0800 (Tue, 31 Jan 2017) $ ;$LastChangedRevision: 22700 $ ;$URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_2_00/projects/mms/feeps/mms_feeps_pad_spinavg.pro $ ;- pro mms_feeps_pad_spinavg, probe=probe, species = species, data_units = data_units, $ datatype = datatype, energy = energy, bin_size = bin_size, suffix = suffix_in, $ data_rate = data_rate, level = level if undefined(probe) then probe='1' else probe = strcompress(string(probe), /rem) if undefined(datatype) then datatype = 'electron' if undefined(data_units) then data_units = 'cps' if undefined(data_rate) then data_rate = 'srvy' if undefined(suffix_in) then suffix_in = '' if undefined(energy) then energy = [0, 1000] if undefined(bin_size) then bin_size = 15 if (data_units eq 'flux') then data_units = 'intensity' if (data_units eq 'cps') then data_units = 'count_rate' units_label = data_units eq 'intensity' ? '1/(cm!U2!N-sr-s-keV)' : 'Counts/s' en_range_string = strcompress(string(fix(energy[0])), /rem) + '-' + strcompress(string(fix(energy[1])), /rem) + 'keV' ; units_label = data_units eq 'Counts' ? 'Counts': '[(cm!E2!N s sr KeV)!E-1!N]' prefix = 'mms'+probe+'_epd_feeps_' ; get the spin sectors ;get_data, prefix + datatype + '_spinsectnum'+suffix_in, data=spin_sectors get_data, prefix + data_rate + '_' + level + '_' + datatype + '_spinsectnum'+suffix_in, data=spin_sectors if ~is_struct(spin_sectors) then begin dprint, dlevel = 0, 'Error, couldn''t find the tplot variable containing the spin sectors for calculating the spin averages.' return endif spin_starts = where(spin_sectors.Y[0:n_elements(spin_sectors.Y)-2] ge spin_sectors.Y[1:n_elements(spin_sectors.Y)-1])+1 ;pad_name = 'mms'+probe+'_epd_feeps_' + datatype + '_' + en_range_string + '_pad'+suffix_in pad_name = strcompress('mms'+probe+'_epd_feeps_'+data_rate+'_'+level+'_'+datatype+'_'+data_units+'_'+ en_range_string +'_pad'+suffix_in, /rem) get_data, pad_name, data=pad_data, dlimits=pad_dl if ~is_struct(pad_data) then begin stop dprint, dlevel = 0, 'Error, variable containing valid PAD data missing.' return endif spin_sum_flux = dblarr(n_elements(spin_starts), n_elements(pad_data.Y[0, *])) spin_times = dblarr(n_elements(spin_starts)) current_start = 0 ; loop through the spins for this telescope for spin_idx = 0, n_elements(spin_starts)-1 do begin ; loop over energies ;spin_sum_flux[spin_idx, *] = total(pad_data.Y[current_start:spin_starts[spin_idx], *], 1) spin_sum_flux[spin_idx, *] = average(pad_data.Y[current_start:spin_starts[spin_idx], *], 1, /nan) spin_times[spin_idx] = pad_data.X[current_start] current_start = spin_starts[spin_idx]+1 endfor suffix_in = '_spin' + suffix_in ;newname = prefix+en_range_string+'_pad'+suffix_in newname = strcompress('mms'+probe+'_epd_feeps_'+data_rate+'_'+level+'_'+datatype+'_'+data_units+'_'+ en_range_string +'_pad'+suffix_in, /rem) ; rebin the data before storing it ; the idea here is, for bin_size = 15 deg, rebin the data from center points to: ; new_bins = [0, 15, 30, 45, 60, 75, 90, 105, 120, 135 , 150, 165, 180] n_pabins = 180./bin_size new_bins = 180.*indgen(n_pabins+1)/n_pabins rebinned_data = congrid(spin_sum_flux, n_elements(spin_starts), n_elements(new_bins), /center, /interp) store_data, newname, data={x: spin_times, y: rebinned_data, v: new_bins}, dlimits=flux_dl options, newname, spec=1, ystyle=1, ztitle=units_label, ytitle='MMS'+probe+' FEEPS!C'+datatype, ysubtitle=en_range_string+'!CPAD (deg)' ylim, newname, 1., 180. zlim, newname, 0, 0, 1 end