File: PSD_monitor_4PI_spin.comp

package info (click to toggle)
mccode 3.5.19%2Bds5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,113,256 kB
  • sloc: ansic: 40,697; python: 25,137; yacc: 8,438; sh: 5,405; javascript: 4,596; lex: 1,632; cpp: 742; perl: 296; lisp: 273; makefile: 226; fortran: 132
file content (162 lines) | stat: -rw-r--r-- 4,398 bytes parent folder | download
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*******************************************************************************
*
* McStas, neutron ray-tracing package
*         Copyright (C) 1997-2009, All rights reserved
*         Risoe National Laboratory, Roskilde, Denmark
*         Institut Laue Langevin, Grenoble, France
*
* Component: PSD_monitor_4PI_spin
*
* %I
* Written by: Erik B Knudsen
* Date: April 17, 2010s
* Origin: DTU
*
* Spherical position-sensitive detector with spin weighting
*
* %D
* An (n times m) pixel spherical PSD monitor using a cylindrical projection.
* Mostly for test and debugging purposes.
*
* Example: PSD_monitor_4PI(radius=0.1,
            nx=90, ny=90, filename="Output.psd")
*
* %P
* INPUT PARAMETERS:
*
* radius:          [m] Radius of detector 
* nx:              [1] Number of pixel columns
* ny:              [1] Number of pixel rows
* filename:      [str] Name of file in which to store the detector image
* restore_neutron: [1] If set, the monitor does not influence the neutron state x
* mx:              [1] x-component of spin reference-vector
* my:              [1] y-component of spin reference-vector
* mz:              [1] z-component of spin reference-vector
*
* CALCULATED PARAMETERS:
*
* PSD_N:    Array of neutron counts
* PSD_p:    Array of neutron weight counts
* PSD_p2:   Array of second moments
*
* %L
* <A HREF="http://neutron.risoe.dk/mcstas/components/tests/powder/">Test
* results</A> (not up-to-date).
*
* %E
*******************************************************************************/


DEFINE COMPONENT PSD_monitor_4PI_spin

SETTING PARAMETERS (int nx=90, int ny=90, radius, string filename=0, int restore_neutron=0, mx=0, my=1, mz=0)

DECLARE
%{
  DArray2d PSD_N;
  DArray2d PSDu_p;
  DArray2d PSDd_p;
  DArray2d PSDu_p2;
  DArray2d PSDd_p2;
%}
INITIALIZE
%{
  PSD_N = create_darr2d(nx, ny);
  PSDu_p = create_darr2d(nx, ny);
  PSDd_p = create_darr2d(nx, ny);
  PSDu_p2 = create_darr2d(nx, ny);
  PSDd_p2 = create_darr2d(nx, ny);
  // Use instance name for monitor output if no input was given
  if (!strcmp(filename,"\0")) sprintf(filename,"%s",NAME_CURRENT_COMP);
%}
TRACE
%{
  double t0, t1, phi, theta;
  int i,j;

  if(sphere_intersect(&t0, &t1, x, y, z, vx, vy, vz, radius) && t1 > 0)
  {
    if(t0 < 0)
      t0 = t1;
    /* t0 is now time of intersection with the sphere. */
    PROP_DT(t0);
    phi = atan2(x,z);
    i = floor(nx*(phi/(2*PI)+0.5));
    if(i >= nx)
      i = nx-1;                      /* Special case for phi = PI. */
    else if(i < 0)
      i = 0;
    theta=asin(y/radius);
    j = floor(ny*(theta+PI/2)/PI+0.5);
    if(j >= ny)
      j = ny-1;                      /* Special case for y = radius. */
    else if(j < 0)
      j = 0;
    /*look at spin-down neutrons*/
    double n_up=(1+scalar_prod(sx,sy,sz,mx,my,mz))*p/2;
    /*look at spin-down neutrons*/
    double n_down=(1-scalar_prod(sx,sy,sz,mx,my,mz))*p/2;

    double n_up2 = n_up*n_up;
    double n_down2 = n_down*n_down;
    #pragma acc atomic
    PSD_N[i][j] = PSD_N[i][j] + 1;
    #pragma acc atomic
    PSDu_p[i][j] = PSDu_p[i][j] + n_up;
    #pragma acc atomic
    PSDu_p2[i][j] = PSDu_p2[i][j] + n_up2;
    #pragma acc atomic
    PSDd_p[i][j] = PSDd_p[i][j] + n_down;
    #pragma acc atomic
    PSDd_p2[i][j] = PSDd_p2[i][j] + n_down2;
    SCATTER;
  }
  if (restore_neutron) {
    RESTORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p);
  }
%}

SAVE
%{
   char title[256];
   char fn[256];
   snprintf(title,256,"4PI PSD Monitor spin %s (parallel to m=%g,%g,%g).","up",mx,my,mz); 
   snprintf(fn,256,"%s.up",filename);
   DETECTOR_OUT_2D(
          title,
          "Longitude [deg]",
          "Lattitude [deg]",
          -180, 180, -90, 90,
          nx, ny,
          &PSD_N[0][0],&PSDu_p[0][0],&PSDu_p2[0][0],
          fn);
   snprintf(title,256,"4PI PSD Monitor spin %s (antiparallel to m=%g,%g,%g).","down",mx,my,mz); 
   snprintf(fn,256,"%s.down",filename);
   DETECTOR_OUT_2D(
          title,
          "Longitude [deg]",
          "Lattitude [deg]",
          -180, 180, -90, 90,
          nx, ny,
          &PSD_N[0][0],&PSDd_p[0][0],&PSDd_p2[0][0],
          fn);

%}

FINALLY %{
  destroy_darr2d(PSD_N);
  destroy_darr2d(PSDu_p);
  destroy_darr2d(PSDd_p);
  destroy_darr2d(PSDu_p2);
  destroy_darr2d(PSDd_p2);
%}

MCDISPLAY
%{
  magnify("");
  circle("xy",0,0,0,radius);
  circle("xz",0,0,0,radius);
  circle("yz",0,0,0,radius);
%}

END