Geant4-11
Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes
G4TMagErrorStepper< T_Stepper, T_Equation, N > Class Template Referenceabstract

#include <G4TMagErrorStepper.hh>

Inheritance diagram for G4TMagErrorStepper< T_Stepper, T_Equation, N >:
G4MagIntegratorStepper

Public Member Functions

G4double DistChord () const override final
 
 G4TMagErrorStepper (T_Equation *EqRhs, G4int numberOfVariables, G4int numStateVariables=12)
 
G4EquationOfMotionGetEquationOfMotion ()
 
const G4EquationOfMotionGetEquationOfMotion () const
 
unsigned long GetfNoRHSCalls ()
 
G4int GetNumberOfStateVariables () const
 
G4int GetNumberOfVariables () const
 
G4int IntegrationOrder ()
 
virtual G4int IntegratorOrder () const =0
 
G4bool IsFSAL () const
 
void NormalisePolarizationVector (G4double vec[12])
 
void NormaliseTangentVector (G4double vec[6])
 
void ResetfNORHSCalls ()
 
void RightHandSide (const G4double y[], G4double dydx[]) const
 
void RightHandSide (const G4double y[], G4double dydx[], G4double field[]) const
 
void RightHandSide (G4double y[], G4double dydx[])
 
void SetEquationOfMotion (G4EquationOfMotion *newEquation)
 
void Stepper (const G4double yInput[], const G4double dydx[], G4double hstep, G4double yOutput[], G4double yError[]) override final
 
virtual ~G4TMagErrorStepper ()
 

Protected Member Functions

void SetFSAL (G4bool flag=true)
 
void SetIntegrationOrder (G4int order)
 

Private Member Functions

 G4TMagErrorStepper (const G4TMagErrorStepper &)
 
G4TMagErrorStepperoperator= (const G4TMagErrorStepper &)
 

Private Attributes

G4double dydxMid [N< 8 ? 8 :N]
 
T_Equation * fEquation_Rhs
 
G4ThreeVector fFinalPoint
 
G4ThreeVector fInitialPoint
 
G4int fIntegrationOrder = -1
 
G4bool fIsFSAL = false
 
G4ThreeVector fMidPoint
 
const G4int fNoIntegrationVariables = 0
 
unsigned long fNoRHSCalls = 0UL
 
const G4int fNoStateVariables = 0
 
G4double yInitial [N< 8 ? 8 :N]
 
G4double yMiddle [N< 8 ? 8 :N]
 
G4double yOneStep [N< 8 ? 8 :N]
 

Detailed Description

template<class T_Stepper, class T_Equation, unsigned int N>
class G4TMagErrorStepper< T_Stepper, T_Equation, N >

Definition at line 46 of file G4TMagErrorStepper.hh.

Constructor & Destructor Documentation

◆ G4TMagErrorStepper() [1/2]

template<class T_Stepper , class T_Equation , unsigned int N>
G4TMagErrorStepper< T_Stepper, T_Equation, N >::G4TMagErrorStepper ( T_Equation *  EqRhs,
G4int  numberOfVariables,
G4int  numStateVariables = 12 
)
inline

Definition at line 49 of file G4TMagErrorStepper.hh.

51 : G4MagIntegratorStepper(EqRhs, numberOfVariables, numStateVariables)
52 , fEquation_Rhs(EqRhs)
53 {
54 // G4int nvar = std::max(this->GetNumberOfVariables(), 8);
55 }
G4MagIntegratorStepper(G4EquationOfMotion *Equation, G4int numIntegrationVariables, G4int numStateVariables=12, G4bool isFSAL=false)
T_Equation * fEquation_Rhs

◆ ~G4TMagErrorStepper()

template<class T_Stepper , class T_Equation , unsigned int N>
virtual G4TMagErrorStepper< T_Stepper, T_Equation, N >::~G4TMagErrorStepper ( )
inlinevirtual

Definition at line 57 of file G4TMagErrorStepper.hh.

57{ ; }

◆ G4TMagErrorStepper() [2/2]

template<class T_Stepper , class T_Equation , unsigned int N>
G4TMagErrorStepper< T_Stepper, T_Equation, N >::G4TMagErrorStepper ( const G4TMagErrorStepper< T_Stepper, T_Equation, N > &  )
private

Member Function Documentation

◆ DistChord()

template<class T_Stepper , class T_Equation , unsigned int N>
G4double G4TMagErrorStepper< T_Stepper, T_Equation, N >::DistChord
inlinefinaloverridevirtual

Implements G4MagIntegratorStepper.

Definition at line 153 of file G4TMagErrorStepper.hh.

154{
155 // Estimate the maximum distance from the curve to the chord
156 //
157 // We estimate this using the distance of the midpoint to
158 // chord (the line between
159 //
160 // Method below is good only for angle deviations < 2 pi,
161 // This restriction should not a problem for the Runge cutta methods,
162 // which generally cannot integrate accurately for large angle deviations.
163 G4double distLine, distChord;
164
166 {
168 // This is a class method that gives distance of Mid
169 // from the Chord between the Initial and Final points.
170
171 distChord = distLine;
172 }
173 else
174 {
175 distChord = (fMidPoint - fInitialPoint).mag();
176 }
177
178 return distChord;
179}
double G4double
Definition: G4Types.hh:83
static G4double Distline(const G4ThreeVector &OtherPnt, const G4ThreeVector &LinePntA, const G4ThreeVector &LinePntB)
G4ThreeVector fFinalPoint
G4ThreeVector fInitialPoint

References G4LineSection::Distline(), G4TMagErrorStepper< T_Stepper, T_Equation, N >::fFinalPoint, G4TMagErrorStepper< T_Stepper, T_Equation, N >::fInitialPoint, and G4TMagErrorStepper< T_Stepper, T_Equation, N >::fMidPoint.

◆ GetEquationOfMotion() [1/2]

G4EquationOfMotion * G4MagIntegratorStepper::GetEquationOfMotion ( )
inlineinherited

◆ GetEquationOfMotion() [2/2]

const G4EquationOfMotion * G4MagIntegratorStepper::GetEquationOfMotion ( ) const
inlineinherited

◆ GetfNoRHSCalls()

unsigned long G4MagIntegratorStepper::GetfNoRHSCalls ( )
inlineinherited

◆ GetNumberOfStateVariables()

G4int G4MagIntegratorStepper::GetNumberOfStateVariables ( ) const
inlineinherited

◆ GetNumberOfVariables()

G4int G4MagIntegratorStepper::GetNumberOfVariables ( ) const
inlineinherited

◆ IntegrationOrder()

G4int G4MagIntegratorStepper::IntegrationOrder ( )
inlineinherited

◆ IntegratorOrder()

virtual G4int G4MagIntegratorStepper::IntegratorOrder ( ) const
pure virtualinherited

◆ IsFSAL()

G4bool G4MagIntegratorStepper::IsFSAL ( ) const
inlineinherited

◆ NormalisePolarizationVector()

void G4MagIntegratorStepper::NormalisePolarizationVector ( G4double  vec[12])
inlineinherited

◆ NormaliseTangentVector()

void G4MagIntegratorStepper::NormaliseTangentVector ( G4double  vec[6])
inlineinherited

◆ operator=()

template<class T_Stepper , class T_Equation , unsigned int N>
G4TMagErrorStepper & G4TMagErrorStepper< T_Stepper, T_Equation, N >::operator= ( const G4TMagErrorStepper< T_Stepper, T_Equation, N > &  )
private

◆ ResetfNORHSCalls()

void G4MagIntegratorStepper::ResetfNORHSCalls ( )
inlineinherited

◆ RightHandSide() [1/3]

void G4MagIntegratorStepper::RightHandSide ( const G4double  y[],
G4double  dydx[] 
) const
inlineinherited

◆ RightHandSide() [2/3]

void G4MagIntegratorStepper::RightHandSide ( const G4double  y[],
G4double  dydx[],
G4double  field[] 
) const
inlineinherited

◆ RightHandSide() [3/3]

template<class T_Stepper , class T_Equation , unsigned int N>
void G4TMagErrorStepper< T_Stepper, T_Equation, N >::RightHandSide ( G4double  y[],
G4double  dydx[] 
)
inline

Definition at line 59 of file G4TMagErrorStepper.hh.

60 {
61 fEquation_Rhs->T_Equation::RightHandSide(y, dydx);
62 }

References G4TMagErrorStepper< T_Stepper, T_Equation, N >::fEquation_Rhs.

Referenced by G4TMagErrorStepper< T_Stepper, T_Equation, N >::Stepper().

◆ SetEquationOfMotion()

void G4MagIntegratorStepper::SetEquationOfMotion ( G4EquationOfMotion newEquation)
inlineinherited

◆ SetFSAL()

void G4MagIntegratorStepper::SetFSAL ( G4bool  flag = true)
inlineprotectedinherited

◆ SetIntegrationOrder()

void G4MagIntegratorStepper::SetIntegrationOrder ( G4int  order)
inlineprotectedinherited

◆ Stepper()

template<class T_Stepper , class T_Equation , unsigned int N>
void G4TMagErrorStepper< T_Stepper, T_Equation, N >::Stepper ( const G4double  yInput[],
const G4double  dydx[],
G4double  hstep,
G4double  yOutput[],
G4double  yError[] 
)
inlinefinaloverridevirtual

Implements G4MagIntegratorStepper.

Definition at line 94 of file G4TMagErrorStepper.hh.

104{
105 const unsigned int maxvar = GetNumberOfStateVariables();
106
107 // Saving yInput because yInput and yOutput can be aliases for same array
108 for(unsigned int i = 0; i < N; ++i)
109 yInitial[i] = yInput[i];
110 yInitial[7] =
111 yInput[7]; // Copy the time in case ... even if not really needed
112 yMiddle[7] = yInput[7]; // Copy the time from initial value
113 yOneStep[7] = yInput[7]; // As it contributes to final value of yOutput ?
114 // yOutput[7] = yInput[7]; // -> dumb stepper does it too for RK4
115 for(unsigned int i = N; i < maxvar; ++i)
116 yOutput[i] = yInput[i];
117
118 G4double halfStep = hstep * 0.5;
119
120 // Do two half steps
121
122 static_cast<T_Stepper*>(this)->DumbStepper(yInitial, dydx, halfStep,
123 yMiddle);
125 static_cast<T_Stepper*>(this)->DumbStepper(yMiddle, dydxMid, halfStep,
126 yOutput);
127
128 // Store midpoint, chord calculation
129
131
132 // Do a full Step
133 static_cast<T_Stepper*>(this)->DumbStepper(yInitial, dydx, hstep, yOneStep);
134 for(unsigned int i = 0; i < N; ++i)
135 {
136 yError[i] = yOutput[i] - yOneStep[i];
137 yOutput[i] +=
138 yError[i] *
139 T_Stepper::IntegratorCorrection; // Provides accuracy increased
140 // by 1 order via the
141 // Richardson Extrapolation
142 }
143
145 fFinalPoint = G4ThreeVector(yOutput[0], yOutput[1], yOutput[2]);
146
147 return;
148}
CLHEP::Hep3Vector G4ThreeVector
G4int GetNumberOfStateVariables() const
G4double yInitial[N< 8 ? 8 :N]
G4double yOneStep[N< 8 ? 8 :N]
G4double dydxMid[N< 8 ? 8 :N]
void RightHandSide(G4double y[], G4double dydx[])
G4double yMiddle[N< 8 ? 8 :N]

References G4TMagErrorStepper< T_Stepper, T_Equation, N >::dydxMid, G4TMagErrorStepper< T_Stepper, T_Equation, N >::fFinalPoint, G4TMagErrorStepper< T_Stepper, T_Equation, N >::fInitialPoint, G4TMagErrorStepper< T_Stepper, T_Equation, N >::fMidPoint, G4MagIntegratorStepper::GetNumberOfStateVariables(), G4TMagErrorStepper< T_Stepper, T_Equation, N >::RightHandSide(), G4TMagErrorStepper< T_Stepper, T_Equation, N >::yInitial, G4TMagErrorStepper< T_Stepper, T_Equation, N >::yMiddle, and G4TMagErrorStepper< T_Stepper, T_Equation, N >::yOneStep.

Field Documentation

◆ dydxMid

template<class T_Stepper , class T_Equation , unsigned int N>
G4double G4TMagErrorStepper< T_Stepper, T_Equation, N >::dydxMid[N< 8 ? 8 :N]
private

◆ fEquation_Rhs

template<class T_Stepper , class T_Equation , unsigned int N>
T_Equation* G4TMagErrorStepper< T_Stepper, T_Equation, N >::fEquation_Rhs
private

◆ fFinalPoint

template<class T_Stepper , class T_Equation , unsigned int N>
G4ThreeVector G4TMagErrorStepper< T_Stepper, T_Equation, N >::fFinalPoint
private

◆ fInitialPoint

template<class T_Stepper , class T_Equation , unsigned int N>
G4ThreeVector G4TMagErrorStepper< T_Stepper, T_Equation, N >::fInitialPoint
private

◆ fIntegrationOrder

G4int G4MagIntegratorStepper::fIntegrationOrder = -1
privateinherited

Definition at line 134 of file G4MagIntegratorStepper.hh.

◆ fIsFSAL

G4bool G4MagIntegratorStepper::fIsFSAL = false
privateinherited

Definition at line 136 of file G4MagIntegratorStepper.hh.

◆ fMidPoint

template<class T_Stepper , class T_Equation , unsigned int N>
G4ThreeVector G4TMagErrorStepper< T_Stepper, T_Equation, N >::fMidPoint
private

◆ fNoIntegrationVariables

const G4int G4MagIntegratorStepper::fNoIntegrationVariables = 0
privateinherited

Definition at line 125 of file G4MagIntegratorStepper.hh.

◆ fNoRHSCalls

unsigned long G4MagIntegratorStepper::fNoRHSCalls = 0UL
mutableprivateinherited

Definition at line 128 of file G4MagIntegratorStepper.hh.

◆ fNoStateVariables

const G4int G4MagIntegratorStepper::fNoStateVariables = 0
privateinherited

Definition at line 126 of file G4MagIntegratorStepper.hh.

◆ yInitial

template<class T_Stepper , class T_Equation , unsigned int N>
G4double G4TMagErrorStepper< T_Stepper, T_Equation, N >::yInitial[N< 8 ? 8 :N]
private

◆ yMiddle

template<class T_Stepper , class T_Equation , unsigned int N>
G4double G4TMagErrorStepper< T_Stepper, T_Equation, N >::yMiddle[N< 8 ? 8 :N]
private

◆ yOneStep

template<class T_Stepper , class T_Equation , unsigned int N>
G4double G4TMagErrorStepper< T_Stepper, T_Equation, N >::yOneStep[N< 8 ? 8 :N]
private

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