Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4FSALDormandPrince745.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 // DormandPrince7 - 5(4) FSAL implementation by Somnath Banerjee
27 // Supervision / code review: John Apostolakis
28 //
29 // Sponsored by Google in Google Summer of Code 2015.
30 //
31 // First version: 25 May 2015
32 //
33 // $ID: FDormandPrince745.hh $
34 //
35 // History
36 // ----------------------------------------------------
37 // Created : 25 May 2015. - Somnath
38 //
39 // Added interpolate() method: - Somnath
40 // 29 June 2015
41 
42 
43 #ifndef FFDormand_Prince_745
44 #define FFDormand_Prince_745
45 
47 
49 {
50  public:
52  G4int numberOfVariables = 6,
53  G4bool primary = true);
55 
56  void Stepper( const G4double y[],
57  const G4double dydx[],
58  G4double h,
59  G4double yout[],
60  G4double yerr[],
61  G4double nextDydx[]) ;
62  void interpolate( const G4double yInput[],
63  const G4double dydx[],
64  G4double yOut[],
65  G4double Step,
66  G4double tau ) ;
67  //For higher order Interpolant
68  void SetupInterpolate( const G4double yInput[],
69  const G4double dydx[],
70  const G4double Step );
71 
72  //For calculating the output at the tau fraction of Step
73  void Interpolate( const G4double yInput[],
74  const G4double dydx[],
75  const G4double Step,
76  G4double yOut[],
77  G4double tau );
78 
79 
80  G4double DistChord() const;
81  G4int IntegratorOrder() const {return 4; }
82  G4bool isFSAL() const{ return true; }
83 // G4double *getLastDydx();
84 
85 private :
86 
89 
90  G4double *ak2, *ak3, *ak4, *ak5, *ak6, *ak7,
91  *ak8, *ak9, //For additional stages in the interpolant
92  *yTemp, *yIn;
93 
94  //Only for use with DistChord :-
95  G4double *pseudoDydx_for_DistChord;
96 
97  G4double fLastStepLength;
98  G4double *fLastInitialVector, *fLastFinalVector,
99  *fLastDyDx, *fMidVector, *fMidError;
100  // for DistChord calculations
101 
102  G4FSALDormandPrince745* fAuxStepper;
103 };
104 
105 #endif /* defined(__Geant4__FSALDormandPrince745__) */
void Stepper(const G4double y[], const G4double dydx[], G4double h, G4double yout[], G4double yerr[], G4double nextDydx[])
int G4int
Definition: G4Types.hh:78
void SetupInterpolate(const G4double yInput[], const G4double dydx[], const G4double Step)
bool G4bool
Definition: G4Types.hh:79
G4FSALDormandPrince745(G4EquationOfMotion *EqRhs, G4int numberOfVariables=6, G4bool primary=true)
void Interpolate(const G4double yInput[], const G4double dydx[], const G4double Step, G4double yOut[], G4double tau)
void interpolate(const G4double yInput[], const G4double dydx[], G4double yOut[], G4double Step, G4double tau)
double G4double
Definition: G4Types.hh:76