Source code for G2sad_xye

# -*- coding: utf-8 -*-
########### SVN repository information ###################
# $Date: 2023-05-11 18:08:12 -0500 (Thu, 11 May 2023) $
# $Author: toby $
# $Revision: 5577 $
# $URL: https://subversion.xray.aps.anl.gov/pyGSAS/trunk/imports/G2sad_xye.py $
# $Id: G2sad_xye.py 5577 2023-05-11 23:08:12Z toby $
########### SVN repository information ###################
'''
'''

from __future__ import division, print_function
import os.path as ospath
import numpy as np
import GSASIIobj as G2obj
import GSASIIpath
GSASIIpath.SetVersionNumber("$Revision: 5577 $")
npasind = lambda x: 180.*np.arcsin(x)/np.pi

[docs] class txt_XRayReaderClass(G2obj.ImportSmallAngleData): 'Routines to import X-ray q SAXD data from a .xsad or .xdat file' def __init__(self): super(self.__class__,self).__init__( # fancy way to self-reference extensionlist=('.xsad','.xdat'), strictExtension=False, formatName = 'q (A-1) step X-ray QIE data', longFormatName = 'q (A-1) stepped X-ray text data file in Q,I,E order; E optional' ) # Validate the contents -- make sure we only have valid lines
[docs] def ContentsValidator(self, filename): 'Look through the file for expected types of lines in a valid q-step file' Ndata = 0 fp = open(filename,'r') for i,S in enumerate(fp): vals = S.split() if len(vals) >= 2: try: data = [float(val) for val in vals] Ndata += 1 except ValueError: pass fp.close() if not Ndata: self.errors = 'No 2 or more column numeric data found' return False return True # no errors encountered
def Reader(self,filename, ParentFrame=None, **unused): print ('Read a q-step text file') x = [] y = [] w = [] wave = 1.5428 #Cuka default Temperature = 300 fp = open(filename,'r') for i,S in enumerate(fp): if len(S) == 1: #skip blank line continue if '=' in S: self.comments.append(S[:-1]) if 'wave' in S.split('=')[0].lower(): try: wave = float(S.split('=')[1]) except: pass continue vals = S.split() if len(vals) >= 2: try: data = [float(val) for val in vals] f = float(data[1]) if f <= 0.0: break # del x[-1] # continue elif len(vals) > 2: y.append(float(data[1])) w.append(1.0/float(data[2])**2) else: y.append(float(data[1])) w.append(1.0/float(data[1])) x.append(float(data[0])) except ValueError: msg = 'Error in line :%s'%S print (msg) continue fp.close() N = len(x) for S in self.comments: if 'Temp' in S.split('=')[0]: try: Temperature = float(S.split('=')[1]) except: pass self.instdict['wave'] = wave self.instdict['type'] = 'LXC' x = np.array(x) self.smallangledata = [ x, # x-axis values q np.array(y), # small angle pattern intensities np.array(w), # 1/sig(intensity)^2 values (weights) np.zeros(N), # calc. intensities (zero) np.zeros(N), # obs-calc profiles np.zeros(N), # fix bkg ] self.smallangleentry[0] = filename self.smallangleentry[2] = 1 # xye file only has one bank self.idstring = ospath.basename(filename) # scan comments for temperature self.Sample['Temperature'] = Temperature return True
[docs] class txt_nmXRayReaderClass(G2obj.ImportSmallAngleData): 'Routines to import X-ray q SAXD data from a .xsad or .xdat file, q in nm-1' def __init__(self): super(self.__class__,self).__init__( # fancy way to self-reference extensionlist=('.xsad','.xdat'), strictExtension=False, formatName = 'q (nm-1) step X-ray QIE data', longFormatName = 'q (nm-1) stepped X-ray text data file in Q,I,E order; E optional' ) # Validate the contents -- make sure we only have valid lines
[docs] def ContentsValidator(self, filename): 'Look through the file for expected types of lines in a valid q-step file' Ndata = 0 fp = open(filename,'r') for i,S in enumerate(fp): vals = S.split() if len(vals) >= 2: try: data = [float(val) for val in vals] Ndata += 1 except ValueError: pass fp.close() if not Ndata: self.errors = 'No 2 or more column numeric data found' return False return True # no errors encountered
def Reader(self,filename, ParentFrame=None, **unused): print ('Read a q-step text file') x = [] y = [] w = [] wave = 1.5428 #Cuka default Temperature = 300 fp = open(filename,'r') for i,S in enumerate(fp): if len(S) == 1: #skip blank line continue if '=' in S: self.comments.append(S[:-1]) if 'wave' in S.split('=')[0].lower(): try: wave = float(S.split('=')[1]) except: pass continue vals = S.split() if len(vals) >= 2: try: data = [float(val) for val in vals] f = float(data[1]) if f <= 0.0: break # x.pop() # continue elif len(vals) > 2: y.append(float(data[1])) w.append(1.0/float(data[2])**2) else: y.append(float(data[1])) w.append(1.0/float(data[1])) x.append(float(data[0])/10.) #convert nm-1 to A-1 except ValueError: msg = 'Error in line :%s'%S print (msg) continue fp.close() N = len(x) for S in self.comments: if 'Temp' in S.split('=')[0]: try: Temperature = float(S.split('=')[1]) except: pass self.instdict['wave'] = wave self.instdict['type'] = 'LXC' x = np.array(x) self.smallangledata = [ x, # x-axis values q np.array(y), # small angle pattern intensities np.array(w), # 1/sig(intensity)^2 values (weights) np.zeros(N), # calc. intensities (zero) np.zeros(N), # obs-calc profiles np.zeros(N), # fix bkg ] self.smallangleentry[0] = filename self.smallangleentry[2] = 1 # xye file only has one bank self.idstring = ospath.basename(filename) # scan comments for temperature self.Sample['Temperature'] = Temperature return True
[docs] class txt_NeutronReaderClass(G2obj.ImportSmallAngleData): 'Routines to import neutron q SAXD data from a .nsad or .ndat file' def __init__(self): super(self.__class__,self).__init__( # fancy way to self-reference extensionlist=('.nsad','.ndat'), strictExtension=False, formatName = 'q (A-1) step neutron QIE data', longFormatName = 'q (A-1) stepped neutron CW text data file in Q,I,E order; E optional' ) # Validate the contents -- make sure we only have valid lines
[docs] def ContentsValidator(self, filename): 'Look through the file for expected types of lines in a valid q-step file' Ndata = 0 fp = open(filename,'r') for i,S in enumerate(fp): vals = S.split() if len(vals) >= 2: try: data = [float(val) for val in vals] Ndata += 1 except ValueError: pass fp.close() if not Ndata: self.errors = 'No 2 or more column numeric data found' return False return True # no errors encountered
def Reader(self,filename, ParentFrame=None, **unused): print ('Read a q-step text file') x = [] y = [] w = [] wave = 1.5428 #Cuka default Temperature = 300 fp = open(filename,'r') for i,S in enumerate(fp): if len(S) == 1: #skip blank line continue if '=' in S or '#' in S: self.comments.append(S[:-1]) if 'wave' in S.split('=')[0].lower(): try: wave = float(S.split('=')[1]) except: pass continue vals = S.split() if len(vals) >= 2: try: data = [float(val) for val in vals] f = float(data[1]) if f <= 0.0: break # y.append(0.0) # w.append(1.0) elif len(vals) > 2: y.append(float(data[1])) w.append(1.0/float(data[2])**2) else: y.append(float(data[1])) w.append(1.0/float(data[1])) x.append(float(data[0])) except ValueError: msg = 'Error in line :%s'%S print (msg) continue fp.close() N = len(x) for S in self.comments: if 'Temp' in S.split('=')[0]: try: Temperature = float(S.split('=')[1]) except: pass self.instdict['wave'] = wave self.instdict['type'] = 'LNC' x = np.array(x) if np.any(x > 2.): #q must be nm-1 x /= 10. self.smallangledata = [ x, # x-axis values q np.array(y), # small angle pattern intensities np.array(w), # 1/sig(intensity)^2 values (weights) np.zeros(N), # calc. intensities (zero) np.zeros(N), # obs-calc profiles np.zeros(N), # fix bkg ] self.smallangleentry[0] = filename self.smallangleentry[2] = 1 # xye file only has one bank self.idstring = ospath.basename(filename) # scan comments for temperature self.Sample['Temperature'] = Temperature return True
[docs] class txt_nmNeutronReaderClass(G2obj.ImportSmallAngleData): 'Routines to import neutron q in nm-1 SAXD data from a .nsad or .ndat file' def __init__(self): super(self.__class__,self).__init__( # fancy way to self-reference extensionlist=('.nsad','.ndat'), strictExtension=False, formatName = 'q (nm-1) step neutron QIE data', longFormatName = 'q (nm-1) stepped neutron text data file in Q,I,E order; E optional' ) # Validate the contents -- make sure we only have valid lines
[docs] def ContentsValidator(self, filename): 'Look through the file for expected types of lines in a valid q-step file' Ndata = 0 fp = open(filename,'r') for i,S in enumerate(fp): vals = S.split() if len(vals) >= 2: try: data = [float(val) for val in vals] Ndata += 1 except ValueError: pass fp.close() if not Ndata: self.errors = 'No 2 or more column numeric data found' return False return True # no errors encountered
def Reader(self,filename, ParentFrame=None, **unused): print ('Read a q-step text file') x = [] y = [] w = [] wave = 1.5428 #Cuka default Temperature = 300 fp = open(filename,'r') for i,S in enumerate(fp): if len(S) == 1: #skip blank line continue if '=' in S or '#' in S: self.comments.append(S[:-1]) if 'wave' in S.split('=')[0].lower(): try: wave = float(S.split('=')[1]) except: pass continue vals = S.split() if len(vals) >= 2: try: data = [float(val) for val in vals] f = float(data[1]) if f <= 0.0: break # y.append(0.0) # w.append(1.0) elif len(vals) > 2: y.append(float(data[1])) w.append(1.0/float(data[2])**2) else: y.append(float(data[1])) w.append(1.0/float(data[1])) x.append(float(data[0])/10.) #convert to A-1 except ValueError: msg = 'Error in line :%s'%S print (msg) continue fp.close() N = len(x) for S in self.comments: if 'Temp' in S.split('=')[0]: try: Temperature = float(S.split('=')[1]) except: pass self.instdict['wave'] = wave self.instdict['type'] = 'LNC' x = np.array(x) self.smallangledata = [ x, # x-axis values q np.array(y), # small angle pattern intensities np.array(w), # 1/sig(intensity)^2 values (weights) np.zeros(N), # calc. intensities (zero) np.zeros(N), # obs-calc profiles np.zeros(N), # fix bkg ] self.smallangleentry[0] = filename self.smallangleentry[2] = 1 # xye file only has one bank self.idstring = ospath.basename(filename) # scan comments for temperature self.Sample['Temperature'] = Temperature return True