Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VFSALIntegrationStepper.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4VFSALIntegrationStepper
27//
28// Class description:
29//
30// Class similar to G4VMagIntegratorStepper, for steppers which
31// estimate the value of the derivative at the projected endpoint
32// of integration - at each successful step.
33// This ability is known as 'First Same As Last' (FSAL). It
34// reduces the number of required calls to the equation's
35// RightHandSide method, and, as such the number of calls to the
36// (potentially expensive) field evaluation methods.
37//
38// Based on G4VMagIntegratorStepper
39
40// Author: Somnath Banerjee (CERN, Google Summer of Code 2015), 26.05.2016
41// Supervision: John Apostolakis (CERN)
42// --------------------------------------------------------------------
43#ifndef G4VFSALINTEGRATOR_STEPPER_HH
44#define G4VFSALINTEGRATOR_STEPPER_HH
45
46#include "G4Types.hh"
47#include "G4EquationOfMotion.hh"
48
49/**
50 * @brief G4VFSALIntegrationStepper is a class similar to
51 * G4VMagIntegratorStepper, but for steppers which estimate the value of
52 * the derivative at the projected endpoint of integration, at each successful
53 * step. This ability is known as 'First Same As Last' (FSAL).
54 * It reduces the number of required calls to the equation's RightHandSide
55 * method, and, as such the number of calls to the (potentially expensive)
56 * field evaluation methods.
57 */
58
60{
61 public:
62
63 /**
64 * Constructor for G4VFSALIntegrationStepper.
65 * @param[in] Equation Pointer to the provided equation of motion.
66 * @param[in] numStateVariables The number of state variables.
67 */
69 G4int numIntegrationVariables,
70 G4int numStateVariables = 12);
71
72 /**
73 * Default Destructor.
74 */
75 virtual ~G4VFSALIntegrationStepper() = default;
76
77 /**
78 * Copy constructor and assignment operator not allowed.
79 */
82
83 /**
84 * The stepper for the Runge Kutta integration.
85 * The stepsize is fixed, with the step size given by 'h'.
86 * Integrates ODE starting values yInput[0 to 6].
87 * Outputs yout[] and its estimated error yerr[].
88 * @param[in] y Starting values array of integration variables.
89 * @param[in] dydx Derivatives array.
90 * @param[in] h The given step size.
91 * @param[out] yout Integration output.
92 * @param[out] yerr The estimated error.
93 * @param[out] lastDydx Last derivative.
94 */
95 virtual void Stepper( const G4double y[],
96 const G4double dydx[],
97 G4double h,
98 G4double yout[],
99 G4double yerr[],
100 G4double lastDydx[]) = 0;
101
102 /**
103 * Returns an estimate of the maximum distance of a chord from the
104 * true path over the segment last integrated.
105 */
106 virtual G4double DistChord() const = 0;
107
108 /**
109 * Simple utility function to (re)normalise 'unit velocity' vector.
110 */
111 inline void NormaliseTangentVector( G4double vec[6] );
112
113 /**
114 * Simple utility function to (re)normalise 'unit spin' vector.
115 */
116 inline void NormalisePolarizationVector( G4double vec[12] );
117
118 /**
119 * Utility method to supply the standard Evaluation of the
120 * Right Hand side of the associated equation.
121 */
122 void RightHandSide( const double y[], double dydx[] );
123
124 /**
125 * Returns the number of variables that the stepper will integrate over.
126 */
128
129 /**
130 * Returns the number of variables of state variables (>= above, integration)
131 */
133
134 /**
135 * Returns the order of the integrator, i.e. its error behaviour
136 * is of the order O(h^order).
137 */
138 virtual G4int IntegratorOrder() const = 0;
139
140 /**
141 * Returns a pointer to the equation of motion.
142 * As some steppers (e.g. RKG3) require other methods of Eq_Rhs,
143 * this function allows for access to them.
144 */
146
147 /**
148 * Setter for the equation of motion.
149 */
150 inline void SetEquationOfMotion(G4EquationOfMotion* newEquation);
151
152 /**
153 * Methods for debug use.
154 */
155 inline G4int GetfNoRHSCalls() { return fNoRHSCalls; }
156 void increasefNORHSCalls();
157 inline void ResetfNORHSCalls() { fNoRHSCalls = 0; }
158
159 private:
160
161 G4EquationOfMotion* fEquation_Rhs = nullptr;
162
163 /** Variables in integration. */
164 const G4int fNoIntegrationVariables = 0;
165
166 /** Number required for FieldTrack. */
167 const G4int fNoStateVariables = 0;
168
169 /** Used for debug. */
170 G4int fNoRHSCalls = 0;
171};
172
173#include "G4VFSALIntegrationStepper.icc"
174
175#endif
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
G4EquationOfMotion is the abstract base class for the right hand size of the equation of motion of a ...
G4VFSALIntegrationStepper & operator=(const G4VFSALIntegrationStepper &)=delete
G4int GetNumberOfVariables() const
virtual ~G4VFSALIntegrationStepper()=default
virtual G4double DistChord() const =0
G4EquationOfMotion * GetEquationOfMotion()
G4VFSALIntegrationStepper(const G4VFSALIntegrationStepper &)=delete
void NormalisePolarizationVector(G4double vec[12])
void NormaliseTangentVector(G4double vec[6])
void SetEquationOfMotion(G4EquationOfMotion *newEquation)
virtual G4int IntegratorOrder() const =0
G4VFSALIntegrationStepper(G4EquationOfMotion *Equation, G4int numIntegrationVariables, G4int numStateVariables=12)
void RightHandSide(const double y[], double dydx[])
G4int GetNumberOfStateVariables() const
virtual void Stepper(const G4double y[], const G4double dydx[], G4double h, G4double yout[], G4double yerr[], G4double lastDydx[])=0