OPALX (Object Oriented Parallel Accelerator Library for Exascal) MINIorX
OPALX
VarRadiusGeometry Class Reference

#include <VarRadiusGeometry.h>

Inheritance diagram for VarRadiusGeometry:
Collaboration diagram for VarRadiusGeometry:

Public Member Functions

 VarRadiusGeometry (double length, double rho, double s_0, double lambda_left, double lambda_right)
 VarRadiusGeometry (const VarRadiusGeometry &right)
virtual ~VarRadiusGeometry ()
const VarRadiusGeometryoperator= (const VarRadiusGeometry &right)
virtual double getArcLength () const
virtual double getElementLength () const
virtual void setElementLength (double length)
double getRadius () const
void setRadius (const double &rho)
double getS0 () const
void setS0 (const double &s_0)
double getLambdaLeft () const
void setLambdaLeft (const double &lambda_left)
double getLambdaRight () const
void setLambdaRight (const double &lambda_right)
virtual Euclid3D getTransform (double fromS, double toS) const
virtual Euclid3D getTransform (double fromS) const
virtual Euclid3D getEntranceFrame () const
virtual Euclid3D getExitFrame () const
virtual double getOrigin () const
 Get origin position.
virtual double getEntrance () const
 Get entrance position.
virtual double getExit () const
 Get exit position.
virtual Euclid3D getTotalTransform () const
 Get transform.
virtual Euclid3D getEntrancePatch () const
 Get patch.
virtual Euclid3D getExitPatch () const
 Get patch.

Private Attributes

double length_m
double rho_m
double s_0_m
double lambda_left_m
double lambda_right_m

Detailed Description


VarRadiusGeometry represents a Geometry with variable radius. Assuming
a Tanh model for fringe fields, the radius of curvature varies inversely
proportional with the fringe field. Such a magnet will follow the
trajectory of the reference particle. The origin is defined at the centre and extends from -length / 2 to
+length / 2. Transformations are calculated using a CoordinateTransformation object,
which integrates to find the reference trajectory.


Class category: AbsBeamline
$Author: Martin Duy Tat, Chris Rogers



Definition at line 57 of file VarRadiusGeometry.h.

Constructor & Destructor Documentation

◆ VarRadiusGeometry() [1/2]

VarRadiusGeometry::VarRadiusGeometry ( double length,
double rho,
double s_0,
double lambda_left,
double lambda_right )
inline

Build VarRadiusGeometry with given length, centre radius of curvature and fringe field

Parameters
length-> Length of geometry
rho-> Centre radius of curvature of geometry
s_0-> Length of central fringe field
lambda_left-> Length of left end fringe field
lambda_right-> Length of right end fringe field

Definition at line 143 of file VarRadiusGeometry.h.

References lambda_left_m, lambda_right_m, length_m, rho_m, and s_0_m.

Referenced by operator=(), and VarRadiusGeometry().

Here is the caller graph for this function:

◆ VarRadiusGeometry() [2/2]

VarRadiusGeometry::VarRadiusGeometry ( const VarRadiusGeometry & right)
inline

Copy constructor

Definition at line 153 of file VarRadiusGeometry.h.

References BGeometryBase::BGeometryBase(), lambda_left_m, lambda_right_m, length_m, rho_m, s_0_m, and VarRadiusGeometry().

Here is the call graph for this function:

◆ ~VarRadiusGeometry()

VarRadiusGeometry::~VarRadiusGeometry ( )
inlinevirtual

Destructor

Definition at line 171 of file VarRadiusGeometry.h.

Member Function Documentation

◆ getArcLength()

double VarRadiusGeometry::getArcLength ( ) const
inlinevirtual

Arc length along the design arc

Implements BGeometryBase.

Definition at line 174 of file VarRadiusGeometry.h.

References length_m.

◆ getElementLength()

double VarRadiusGeometry::getElementLength ( ) const
inlinevirtual

Get element length measured along hte design arc

Implements BGeometryBase.

Definition at line 178 of file VarRadiusGeometry.h.

References length_m.

◆ getEntrance()

double BGeometryBase::getEntrance ( ) const
virtualinherited

Get entrance position.

Reimplemented in BeamlineGeometry, PlanarArcGeometry, and StraightGeometry.

Definition at line 41 of file Geometry.cpp.

References getOrigin().

Referenced by ElementBase::getEntrance(), getEntranceFrame(), VarRadiusGeometry::getEntranceFrame(), and getTotalTransform().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getEntranceFrame()

Euclid3D VarRadiusGeometry::getEntranceFrame ( ) const
inlinevirtual

Transform of the local coordinate system from the origin to the entrance of the element Equivalent to getTransform(0.0, getEntrance())

Reimplemented from BGeometryBase.

Definition at line 222 of file VarRadiusGeometry.h.

References BGeometryBase::getEntrance(), BGeometryBase::getOrigin(), and getTransform().

Here is the call graph for this function:

◆ getEntrancePatch()

Euclid3D BGeometryBase::getEntrancePatch ( ) const
virtualinherited

Get patch.

Reimplemented in RBendGeometry.

Definition at line 71 of file Geometry.cpp.

References Euclid3D::identity().

Referenced by ElementBase::getEntrancePatch().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getExit()

double BGeometryBase::getExit ( ) const
virtualinherited

Get exit position.

Reimplemented in BeamlineGeometry, PlanarArcGeometry, and StraightGeometry.

Definition at line 46 of file Geometry.cpp.

References getArcLength(), and getOrigin().

Referenced by ElementBase::getExit(), getExitFrame(), VarRadiusGeometry::getExitFrame(), and getTotalTransform().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getExitFrame()

Euclid3D VarRadiusGeometry::getExitFrame ( ) const
inlinevirtual

Transform of the local coordinate system from the origin to the exit of the element Equivalent to getTransform(0.0, getExit())

Reimplemented from BGeometryBase.

Definition at line 226 of file VarRadiusGeometry.h.

References BGeometryBase::getExit(), BGeometryBase::getOrigin(), and getTransform().

Here is the call graph for this function:

◆ getExitPatch()

Euclid3D BGeometryBase::getExitPatch ( ) const
virtualinherited

Get patch.

Reimplemented in RBendGeometry.

Definition at line 76 of file Geometry.cpp.

References Euclid3D::identity().

Referenced by ElementBase::getExitPatch().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getLambdaLeft()

double VarRadiusGeometry::getLambdaLeft ( ) const
inline

Get left end fringe field length

Definition at line 206 of file VarRadiusGeometry.h.

References lambda_left_m.

◆ getLambdaRight()

double VarRadiusGeometry::getLambdaRight ( ) const
inline

Get right end fringe field length

Definition at line 214 of file VarRadiusGeometry.h.

References lambda_right_m.

◆ getOrigin()

double BGeometryBase::getOrigin ( ) const
virtualinherited

Get origin position.

Reimplemented in BeamlineGeometry, NullGeometry, PlanarArcGeometry, and StraightGeometry.

Definition at line 36 of file Geometry.cpp.

References getArcLength().

Referenced by getEntrance(), VarRadiusGeometry::getEntranceFrame(), getExit(), VarRadiusGeometry::getExitFrame(), and ElementBase::getOrigin().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getRadius()

double VarRadiusGeometry::getRadius ( ) const
inline

Get centre radius of curvature

Definition at line 190 of file VarRadiusGeometry.h.

References rho_m.

◆ getS0()

double VarRadiusGeometry::getS0 ( ) const
inline

Get central fringe field length

Definition at line 198 of file VarRadiusGeometry.h.

References s_0_m.

◆ getTotalTransform()

Euclid3D BGeometryBase::getTotalTransform ( ) const
virtualinherited

Get transform.

Reimplemented in BeamlineGeometry, Euclid3DGeometry, PlanarArcGeometry, RBendGeometry, and StraightGeometry.

Definition at line 51 of file Geometry.cpp.

References getEntrance(), getExit(), and getTransform().

Referenced by Ring::appendElement(), and ElementBase::getTotalTransform().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getTransform() [1/2]

Euclid3D VarRadiusGeometry::getTransform ( double fromS) const
virtual

Transform of the local coordinate system from the origin to the entrance of the element Equivalent to getTransform(0.0, getEntrance())

Reimplemented from BGeometryBase.

Definition at line 49 of file VarRadiusGeometry.cpp.

◆ getTransform() [2/2]

Euclid3D VarRadiusGeometry::getTransform ( double fromS,
double toS ) const
virtual

Transform of the local coordinate system

Parameters
fromS-> Transform from this position
toS-> Transform to this position

Implements BGeometryBase.

Definition at line 34 of file VarRadiusGeometry.cpp.

References coordinatetransform::CoordinateTransform::calcReferenceTrajectory(), coordinatetransform::CoordinateTransform::getUnitTangentVector(), lambda_left_m, lambda_right_m, rho_m, s_0_m, Euclid3D::setX(), Euclid3D::setZ(), and Euclid3D::YRotation().

Referenced by getEntranceFrame(), and getExitFrame().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator=()

const VarRadiusGeometry & VarRadiusGeometry::operator= ( const VarRadiusGeometry & right)
inline

Assigment operator

Definition at line 161 of file VarRadiusGeometry.h.

References lambda_left_m, lambda_right_m, length_m, rho_m, s_0_m, and VarRadiusGeometry().

Here is the call graph for this function:

◆ setElementLength()

void VarRadiusGeometry::setElementLength ( double length)
inlinevirtual

Set arc length

Parameters
length-> Length of element

Reimplemented from BGeometryBase.

Definition at line 182 of file VarRadiusGeometry.h.

References length_m.

◆ setLambdaLeft()

void VarRadiusGeometry::setLambdaLeft ( const double & lambda_left)
inline

Set left end fringe field length

Parameters
lambda_left-> Left end fringe field length

Definition at line 210 of file VarRadiusGeometry.h.

References lambda_left_m.

◆ setLambdaRight()

void VarRadiusGeometry::setLambdaRight ( const double & lambda_right)
inline

Set right end fringe field length

Parameters
lambda_right-> Right end fringe field length

Definition at line 218 of file VarRadiusGeometry.h.

References lambda_right_m.

◆ setRadius()

void VarRadiusGeometry::setRadius ( const double & rho)
inline

Set centre radius of curvature

Parameters
rho-> Central radius of curvature

Definition at line 194 of file VarRadiusGeometry.h.

References rho_m.

◆ setS0()

void VarRadiusGeometry::setS0 ( const double & s_0)
inline

Set central fringe field length

Parameters
s_0-> Central fringe field length

Definition at line 202 of file VarRadiusGeometry.h.

References s_0_m.

Member Data Documentation

◆ lambda_left_m

double VarRadiusGeometry::lambda_left_m
private

◆ lambda_right_m

double VarRadiusGeometry::lambda_right_m
private

◆ length_m

double VarRadiusGeometry::length_m
private

◆ rho_m

double VarRadiusGeometry::rho_m
private

◆ s_0_m

double VarRadiusGeometry::s_0_m
private

The documentation for this class was generated from the following files: