Warning: Trying to access array offset on value of type null in /home/site/wwwroot/lib/plugins/move/action/rename.php on line 42

Warning: Cannot modify header information - headers already sent by (output started at /home/site/wwwroot/lib/plugins/move/action/rename.php:42) in /home/site/wwwroot/inc/common.php on line 1955

Warning: Cannot modify header information - headers already sent by (output started at /home/site/wwwroot/lib/plugins/move/action/rename.php:42) in /home/site/wwwroot/inc/actions.php on line 38
inel_flat_plate_v1 [topas wiki]

User Tools

Site Tools


inel_flat_plate_v1

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
inel_flat_plate_v1 [2009/09/25 05:30] ianmadseninel_flat_plate_v1 [2022/11/03 15:08] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Inel Flat Plate Correction ======
  
 +Macro below performs corrections necessary for an inel flat plate system.
 +
 +<code topas>
 +macro Inel_Flat_Plate_V1(alpha, alpha_val, sd, sd_val)
 + ' Version by Ian Madsen CSIRO Minerals
 + ' Equations for correction of intensity and sample displacement for flat plate samples
 + ' in fixed incident beam geometry e.g. when using the Inel CPS120 position sensitive detector
 + ' Intensity correction derived from Toraya et al. (1993)
 + ' Sample displacement model derived by Ian Madsen
 + ' alpha = angle between incident beam and sample surface
 + ' 2Theta = (alpha + beta)
 +  where beta  = angle between diffracted beam(s) and sample surface
 + ' sd = sample displacement (in same units as detector radius)
 + ' Rs = 250mm for the Inel CPS120 detector - Rs must be defined in the input file
 +{
 +   local alpha alpha_val
 +   local sd sd_val
 +
 +   scale_pks = If(2 Th <= alpha Deg , 0, 2.0 / (1 + Sin (alpha Deg)/Sin (2 * Th - alpha Deg)));
 +   th2_offset = -(Rad sd Sin (2 Th)) / (Rs Sin (alpha Deg));
 +}
 +</code>