CrysFML: Neutrons PbSO4#

# Misc
import sys, os
import numpy as np

# CrysFML
import CFML_api

# Vizualization
import py3Dmol
from bokeh.io import show, output_notebook
from bokeh.plotting import figure
output_notebook()
FIGURE_WIDTH = 700
FIGURE_HEIGHT = 300
Loading BokehJS ...
def diffraction_pattern_xy(space_group, cell, atom_list, job_info):
    reflection_list = CFML_api.ReflectionList(cell, space_group, 
                                              True, 
                                              job_info)
    reflection_list.compute_structure_factors(space_group, 
                                              atom_list, 
                                              job_info)
    diffraction_pattern = CFML_api.DiffractionPattern(job_info,
                                                  reflection_list, 
                                                  cell.reciprocal_cell_vol)
    return diffraction_pattern.x, diffraction_pattern.ycalc

Define sample model#

Create space group object#

space_group = CFML_api.SpaceGroup('P n m a')
#space_group.print_description()

Create unit cell object#

lengths = np.asarray([8.477,5.396,6.957], dtype='float32')
angles = np.asarray([90,90,90], dtype='float32')
unit_cell = CFML_api.Cell(lengths, angles)
#unit_cell.print_description()

Create list of atoms#

cif_str = '''
loop_
 _atom_site_label
 _atom_site_type_symbol
 _atom_site_occupancy
 _atom_site_fract_x
 _atom_site_fract_y
 _atom_site_fract_z
 _atom_site_adp_type
 _atom_site_U_iso_or_equiv
  Pb  Pb  1.0  0.1880  0.25    0.1668  Uiso  0.0169
  S   S   1.0  0.0650  0.25    0.6850  Uiso  0.0025
  O1  O   1.0  0.9080  0.25    0.5950  Uiso  0.0246
  O2  O   1.0  0.1935  0.25    0.5432  Uiso  0.0180
  O3  O   1.0  0.0814  0.0274  0.8085  Uiso  0.0165
'''
atom_list = CFML_api.AtomList(cif_str.split('\n'))
atom_list.set_mult_occ_cif(space_group)
#atom_list.print_description()

Load experimental data#

Load measured data#

fpath_obs = '../datasets/neutron_powder_PbSO4/D1A@ILL.xye'
x_obs, y_obs, sy_obs = np.loadtxt(fpath_obs, unpack=True)

Visualize measured data#

fig = figure(width=FIGURE_WIDTH, height=FIGURE_HEIGHT)
fig.line(x_obs, y_obs, legend_label='Iobs', color='darkgray', line_width=2)
show(fig)

Analyse data#

Create job definition object#

cfl_str = '''
Title PbSO4
'''
job_info = CFML_api.JobInfo(cfl_str.split('\n'))
job_info.print_description()
PBSO4
Number of patterns: 1
Type of pattern: XRAY_2THE       
Number of phases: 1
Name of phases: PBSO4                                                                                                                           
Name of phases: PBSO4                                                                                                                           
Lambda range: (1.5405000448226929, 1.5405000448226929)
Lambda ratio: 0.0
Range 2theta: (0.0, 120.0)
Range sin(theta)/lambda: (0.0, 0.5621716380119324)

Modify job definition object#

job_info.pattern_type = "NEUT_2THE"
job_info.range_2theta = (10.0, 155.45)
job_info.theta_step = 0.05
job_info.lambdas = (1.9122, 1.9122)
job_info.lambda_ratio = 1.0
job_info.u_resolution = 0.1421
job_info.v_resolution = -0.4181
job_info.w_resolution = 0.3864
job_info.x_resolution = 0.0
job_info.y_resolution = 0.0904
job_info.print_description()
PBSO4
Number of patterns: 1
Type of pattern: NEUT_2THE       
Number of phases: 1
Name of phases: PBSO4                                                                                                                           
Name of phases: PBSO4                                                                                                                           
Lambda range: (1.9121999740600586, 1.9121999740600586)
Lambda ratio: 1.0
Range 2theta: (10.0, 155.4499969482422)
Range sin(theta)/lambda: (0.05657626688480377, 0.6342995166778564)

Calculate and plot diffraction pattern#

x_calc, y_clac = diffraction_pattern_xy(space_group, unit_cell, atom_list, job_info)
 NEUT_2THE       
fig = figure(width=FIGURE_WIDTH, height=FIGURE_HEIGHT)
fig.line(x_calc, y_clac, legend_label='Icalc', color='orangered', line_width=1)
show(fig)

Compare observed and calculated data#

scale = 480
background = 200
zero_shift = -0.15
x_calc, y_calc = diffraction_pattern_xy(space_group, unit_cell, atom_list, job_info)
x_calc = x_calc + zero_shift
y_calc = y_calc * scale + background
 NEUT_2THE       
fig = figure(width=FIGURE_WIDTH, height=FIGURE_HEIGHT)
fig.line(x_obs, y_obs, legend_label='Iobs', color='darkgray', line_width=2)
fig.line(x_calc, y_calc, legend_label='Icalc', color='orangered', line_width=1)
show(fig)
fig = figure(width=FIGURE_WIDTH, height=FIGURE_HEIGHT, x_range=(45,60))
fig.line(x_obs, y_obs, legend_label='Iobs', color='darkgray', line_width=2)
fig.line(x_calc, y_calc, legend_label='Icalc', color='orangered', line_width=1)
show(fig)
fig = figure(width=FIGURE_WIDTH, height=FIGURE_HEIGHT, x_range=(54,57))
fig.line(x_obs, y_obs, legend_label='Iobs', color='darkgray', line_width=2)
fig.line(x_calc, y_calc, legend_label='Icalc', color='orangered', line_width=1)
show(fig)