\(\renewcommand\AA{\unicode{x212B}}\)
RotateSampleShape v1¶
Summary¶
Define the initial orientation of the sample with respect to the beam and instrument by giving the axes, angle and directions of rotations.
See Also¶
Properties¶
Name |
Direction |
Type |
Default |
Description |
---|---|---|---|---|
Workspace |
InOut |
Mandatory |
The workspace containing the sample whose orientation is to be rotated |
|
Axis0 |
Input |
string |
Axis0: degrees,x,y,z,1/-1 (1 for ccw, -1 for cw rotation). |
|
Axis1 |
Input |
string |
Axis1: degrees,x,y,z,1/-1 (1 for ccw, -1 for cw rotation). |
|
Axis2 |
Input |
string |
Axis2: degrees,x,y,z,1/-1 (1 for ccw, -1 for cw rotation). |
|
Axis3 |
Input |
string |
Axis3: degrees,x,y,z,1/-1 (1 for ccw, -1 for cw rotation). |
|
Axis4 |
Input |
string |
Axis4: degrees,x,y,z,1/-1 (1 for ccw, -1 for cw rotation). |
|
Axis5 |
Input |
string |
Axis5: degrees,x,y,z,1/-1 (1 for ccw, -1 for cw rotation). |
Description¶
Use this algorithm to define the initial orientation of the sample with respect to the beam and instrument by giving the axes, angle and directions of rotations. Enter each axis in the order of rotation, starting with the one farthest from the sample similar to SetGoniometer v1
You may enter up to 6 axes, for each of which you must define 5 values as below separated by commas:
The angle of rotation in degrees.
The X, Y, Z components of the vector of the axis of rotation. Right-handed coordinates with +Z=beam direction; +Y=Vertically up (against gravity); +X to the left.
The sense of rotation as 1 or -1: 1 for counter-clockwise, -1 for clockwise rotation.
The sample shape would then be rotated by the goniometer before being used in the calculation of various attenuation corrections. This algorithm work for both CSG shapes (e.g. cylinders, flat plates etc.) and Mesh files.
Usage¶
Example - RotateSampleShape for sample with a CSG shape
from mantid.simpleapi import *
import xml.dom.minidom as md
ws = CreateSampleWorkspace()
SetSample(ws,
Geometry={'Shape': 'Cylinder', 'Height': 4.0,
'Radius': 1.0,
'Center': [0.,0.,0.]},
Material={'ChemicalFormula': '(Li7)2-C-H4-N-Cl6',
'NumberDensity': 0.1})
RotateSampleShape(Workspace=ws, Axis0="45,1,1,0,1", Axis1="15,0,0,1,-1")
print(md.parseString(ws.sample().getShape().getShapeXML()).toprettyxml())
Categories: AlgorithmIndex | DataHandling\Instrument
Source¶
C++ header: RotateSampleShape.h
C++ source: RotateSampleShape.cpp