GISAXS#

GISAXS in reciprocal space and integration#

The next step is to convert the detector image into reciprocal space coordinates (qy-qz). Unlike GIWAXS, GISAXS analysis generally does not require calculation of qx or correction for the curvature of the Ewald sphere.

In the following cell, you can define the regions used for in-plane and out-of-plane integrations.

# Modify the parameters, and run the cell

# Define the qy integration range used to obtain the out-of-plane (qz) profile
# -> Blue rectangle
qy_center = 0. # qy-center of the integration range (in nm^-1)
qy_width = 0.002  # Width of integration range (in nm^-1)

# Define the qz integration range used to obtain the in-plane (qy) profile
# -> Red rectangle
qz_center = 0.028 # qz-center of the integration range (in nm^-1)
qz_height = 0.002  # Height of integration range (in nm^-1)

bin_number = 800 # Bin number for the GISAXS map

The transformed GISAXS map is displayed in reciprocal space together with the integration regions.

The in-plane (qy) profile is obtained by integrating over the selected qz range (red rectangle).

The out-of-plane (qz) profile is obtained by integrating over the selected qy range (blue rectangle).