-
Hello everyone. Currently I have this: import numpy as np Initialize the 2Theta rangett = np.arange(20, 120, 0.01) Load the CIF file and create the Crystal objectcif = xu.materials.Crystal.fromCIF('1000004.cif') Initialize the Powder objectpowder = xu.simpack.Powder(cif, 1) settings = {'global': {'diffractometer_radius': 0.60101}, Initialize the PowderDiffraction objectpc = xu.simpack.PowderDiffraction(powder, enable_simulation=True) xrayutils_data = [tt, intensity] How can I use Cu wavelenght and get K_alpha1 and K_alpha2 contributions? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In fact if you just use the default configuration you get CuKa1 and CuKa2 contributions straight away. A rather minimal example code showing this is included as example file here. So if you want both alpha1 and alpha2 just leave the emission settings unchanged! |
Beta Was this translation helpful? Give feedback.
In fact if you just use the default configuration you get CuKa1 and CuKa2 contributions straight away.
A rather minimal example code showing this is included as example file here.
So if you want both alpha1 and alpha2 just leave the emission settings unchanged!