TEM Scripting Beam Tilt Calibration » History » Version 2
Anchi Cheng, 03/20/2012 08:33 PM
1 | 1 | Anchi Cheng | h1. TEM Scripting Beam Tilt Calibration |
---|---|---|---|
2 | |||
3 | * Recommended for all FEI scopes |
||
4 | |||
5 | h2. Purpose |
||
6 | |||
7 | 2 | Anchi Cheng | Leginon and its subsystem pyscope uses the property Illumination.RotationCenter in Tecnai/TEM Scripting to set/get beam tilt values. We have noticed that some version of the TEM or Tecnai Scripting defines the function for set/get Ilumination.RotationCenter in units other than the original radians. Known versions with this problem are Tecnai 3.1.1 are Titan 1.0.0. We also know that it is fixed in Tecnai 3.1.2 and Titan 1.0.2 (Thanks to Wim Hagen for the information). Since Leginon need the values in radians, a scale factor need to be assigned. We do not not know which version requires non-default scale factors. Therefore, we recommend that all scopes be checked before using Leginon MSI applications with beam-tilt-based autofocusing. |
8 | 1 | Anchi Cheng | |
9 | * The most likely values are 1.0 and ~6 and it does not need to be very accurate. Please let Leginon team knows if yours is very different from these. |
||
10 | |||
11 | h2. Material |
||
12 | |||
13 | # Gold-shadowed diffraction grating replica for TEM calibration such as Ted Pella's prodoct !#606 or !#607. |
||
14 | |||
15 | * If such a grid with Gold coating is not available, other material that produces known spacing diffraction in sub-nm range can be used. However, the gold <111> spacing 0.236e-9 meters used in *get_beamtilt_scale.py* need to be replaced. |
||
16 | |||
17 | h2. Procedures |
||
18 | |||
19 | * Do this calibration at one of the high tension values you plan to use Leginon at. |
||
20 | |||
21 | # Insert the specimen holder with the grid in the microscope |
||
22 | # From microscope-controlling PC, navigate to the installed myami/pyscope directory. Most likely *C:\\Python25\Lib\site-packages\pyscope* |
||
23 | # Find the python file *get_beamtilt_scale.py* |
||
24 | # If non-gold grid is used, modify the spacing value with a plain-text editor at the line |
||
25 | <pre> |
||
26 | gold_diffraction = wavelength/0.236e-9 |
||
27 | </pre> |
||
28 | # Start the script by double-left click on it. |
||
29 | # Follow the instruction to determine the scale factor. |
||
30 | # At the end of the script, the beam should be tilted back to the center and the script window closed. If the window does not close, force it to close should not cause any problem. |
||
31 | # In the same folder, find *tecnai.py* Open it with a plain-text editor or python's IDLE and look for the following lines close to the beginning of the file. |
||
32 | <pre> |
||
33 | # This scale convert beam tilt readout in radian to |
||
34 | # Tecnai or TEM Scripting Illumination.RotationCenter value |
||
35 | # Depending on the version, this may be 1.0 or closer to 6 |
||
36 | rotation_center_scale = 1.0 |
||
37 | </pre> |
||
38 | # replace the number in the last line with the rotation_center_scale determined while running *get_beamtilt_scale.py* |