1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/*******************************************************************************
* McXtrace instrument definition URL=http://www.mcxtrace.org
*
* Instrument: Test_CRL
*
* %Identification
* Written by: Erik B Knudsen (erkn@fysik.dtu.dk)
* Date: Nov. 14
* Origin: DTU Physics
* Version: 1.0
* %INSTRUMENT_SITE: Tests_optics
*
* Unit test instrument for various lens components.
*
* %Description
*
* This is a test with the
* - LENS=0: Lens_parab
* - LENS=1: Lens_parab_Cyl
* - LENS=2: Lens_simple
* - LENS=3: Lens_CRL_RTM
*
* %Example: Test_CRL.instr LENS=0 L1=35.047 L2=17.523 Detector: line_I=1.20107e-12
* %Example: Test_CRL.instr LENS=1 L1=35.047 L2=17.523 Detector: pt_I=3.01094e-13
* %Example: Test_CRL.instr LENS=2 L1=35.047 L2=17.523 Detector: line_I=1.2957e-12
* %Example: Test_CRL.instr LENS=3 L1=35.047 L2=17.523 Detector: line_I=1.20107e-12
*
*
* %Parameters
* LENS: [ ] Which lens to use: 0=>Lens_parab, 1=>Lens_parab_Cyl, 2=>Lens_simple
* L1: [ ] Distance from source to lens.
* L2: [ ] Distance from lens to image plane
*
* %End
*******************************************************************************/
/* Change name of instrument and input parameters with default values */
DEFINE INSTRUMENT Test_CRL(LENS=0, L1=1, L2=11)
/* The DECLARE section allows us to declare variables or small */
/* functions in C syntax. These may be used in the whole instrument. */
DECLARE
%{
%}
/* The INITIALIZE section is executed when the simulation starts */
/* (C code). You may use them as component parameter values. */
INITIALIZE
%{
%}
/* Here comes the TRACE section, where the actual */
/* instrument is defined as a sequence of components. */
TRACE
/* The Arm() class component defines reference points and orientations */
/* in 3D space. Every component instance must have a unique name. Here, */
/* Origin is used. This Arm() component is set to define the origin of */
/* our global coordinate system (AT (0,0,0) ABSOLUTE). It may be used */
/* for further RELATIVE reference, Other useful keywords are : ROTATED */
/* EXTEND GROUP PREVIOUS. Also think about adding an xray source ! */
/* Progress_bar is an Arm displaying simulation progress. */
COMPONENT origin = Progress_bar()
AT (0,0,0) ABSOLUTE
COMPONENT source = Source_flat(
focus_xw=1e-4, focus_yh=2e-4, dist=L1,E0=12.60708, dE=0,
xwidth=.5e-4,yheight=1e-4)
AT(0,0,0) RELATIVE origin
COMPONENT screen0 = PSD_monitor(
restore_xray=1, xwidth=1e-3, yheight=1e-3, filename="screen0")
AT(0,0,0.01) RELATIVE origin
COMPONENT crlplace = Arm()
AT(0,0,L1) RELATIVE origin
COMPONENT crl1dsimple = Lens_simple(
material_datafile="Be.txt",r=0.5e-3,xwidth=1e-4,yheight=2e-4,radius=0,
N=10)
WHEN LENS==2 AT (0, 0, 0) RELATIVE crlplace
COMPONENT crl2d = Lens_parab(
material_datafile = "Be.txt", r = 0.5e-3, r_ap = 2e-4,
d = 0.1e-3, N = 10)
WHEN LENS==1 AT (0, 0, 0) RELATIVE crlplace
COMPONENT crl1d = Lens_parab_Cyl(
material_datafile = "Be.txt", r = 0.5e-3, yheight = 2e-4, xwidth=1e-4,
d = 0.1e-3, N = 10)
WHEN LENS==0 AT (0, 0, 0) RELATIVE crlplace
COMPONENT crl1d_rtm = Lens_CRL_RTM(
r=0.5e-3, N=10, fast=1, yheight=0, d=0.1e-3,xwidth=1e-4, zdepth=4e-4)
WHEN LENS==3 AT (0, 0, 0) RELATIVE crlplace
COMPONENT screen= PSD_monitor(
restore_xray=1, xwidth=1e-3, yheight=1e-3, filename="screen")
AT(0,0,L2) RELATIVE crlplace
COMPONENT pt= PSD_monitor(
restore_xray=1, xwidth=.5e-4/4.0,yheight=1e-4/4.0, filename="pt")
AT(0,0,L2) RELATIVE crlplace
COMPONENT line= PSD_monitor(
restore_xray=1, xwidth=.4e-3,yheight=1e-1/2.0, filename="line")
AT(0,0,L2) RELATIVE crlplace
/* This section is executed when the simulation ends (C code). Other */
/* optional sections are : SAVE */
FINALLY
%{
%}
/* The END token marks the instrument definition end */
END
|