<div dir="ltr"><div dir="ltr">Dear Markus,<div>thank you for the reply. Perhaps naively I would expect the trace to correspond to what happens with the actual simulation.</div><div><br></div><div>I have done something along the lines you suggest, see end of email. The TOF monitor is shifted along the +ve x direction, which is to the right when looking from the detector to the source (it'd be roughly where the 'h' label is in fig 6.1)</div><div><br></div><div>When nu is positive the TOF monitor has a pulse distribution whose offset is shifted to positive times. I think this means that the midpoint of the disk window has already crossed the y-axis before it gets to the monitor. This must mean that the direction of rotation is clockwise when looking along z from +ve to -ve.</div><div><br></div><div><div>When nu is negative the TOF monitor has a pulse distribution whose offset is shifted to negative times. This must mean that the direction of rotation is anticlockwise when looking  along z from +ve to -ve.</div><div></div></div><div><br></div><div>Is this assessment correct?</div><div><br></div><div>If so, then this is not what I expect from a right hand coordinate system. The direction of rotation from this concept experiment is the opposite of what's displayed in figure 6.1 of the component manual.</div><div><br></div><div><br></div><div><br></div><div><br></div><div>===============================================================</div><div>DEFINE INSTRUMENT template_simple(Par1=1)<br><br>DECLARE<br>%{<br>%}<br><br>INITIALIZE<br>%{<br>%}<br><br>TRACE<br><br>COMPONENT origin = Progress_bar()<br>AT (0, 0, 0) RELATIVE ABSOLUTE<br><br>// insert components here (e.g. Insert -> Source -> ...)<br>COMPONENT source_div = Source_div(<br>    xwidth=0.02, <br>    yheight=0.05, <br>    focus_aw=1, <br>    focus_ah=1, <br>    lambda0=2.8, <br>    dlambda=0.1)<br>AT (0, 0, 0) RELATIVE PREVIOUS<br><br>COMPONENT diskchopper = DiskChopper(<br>    theta_0=5, <br>    yheight=0.1, <br>    nu=24,<br>isfirst=1)<br>AT (0, 0, 0) RELATIVE PREVIOUS<br><br>COMPONENT mon = TOF_monitor(<br>    filename="mon", <br>    xmin=0.005, <br>    xmax=0.01, <br>    ymin=-0.025, <br>    ymax=0.025,<br>    tmin=-500,<br>    tmax=500,<br>restore_neutron=1)<br>AT (0, 0, 0) RELATIVE PREVIOUS<br><br>FINALLY<br>%{<br>%}<br><br>END<br></div></div></div>