source: trunk/source/geometry/magneticfield/include/G4ConstRK4.hh @ 1340

Last change on this file since 1340 was 1340, checked in by garnier, 14 years ago

update ti head

File size: 4.8 KB
Line 
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//
27// $Id: G4ConstRK4.hh,v 1.3 2010/09/10 15:50:17 japost Exp $
28// GEANT4 tag $Name: field-V09-03-03 $
29//
30//
31// Class G4ConstRK4
32//
33// class description:
34//
35// G4ConstRK4 performs the integration of one step with error calculation
36// in constant magnetic field. The integration method is the same as in
37// ClassicalRK4. The field value is assumed constant for the step.
38// This field evaluation is called only once per step.
39// G4ConstRK4 can be used only for magnetic fields.
40
41// History:
42// - 18.09.2008 - J.Apostolakis, T.Nikitina - Created
43// -------------------------------------------------------------------
44
45#ifndef G4CONSTRK4_HH
46#define G4CONSTRK4_HH
47
48#include "G4MagErrorStepper.hh"
49#include "G4EquationOfMotion.hh"
50#include "G4Mag_EqRhs.hh"
51
52class G4ConstRK4 : public G4MagErrorStepper
53{
54   public:  // with description
55
56    G4ConstRK4(G4Mag_EqRhs *EquationMotion, G4int numberOfStateVariables=8);
57    ~G4ConstRK4();
58
59     void Stepper( const G4double y[],
60                   const G4double dydx[],
61                         G4double h,
62                         G4double yout[],
63                         G4double yerr[]  );
64     void DumbStepper( const G4double  yIn[],
65                       const G4double  dydx[],
66                             G4double  h,
67                             G4double  yOut[] ) ;
68     G4double DistChord() const;   
69 
70     inline void  RightHandSideConst(const  G4double y[],
71                                            G4double dydx[] ) const;
72
73     inline void  GetConstField(const G4double y[],G4double Field[]);
74
75   public:  // without description
76
77     G4int IntegratorOrder() const { return 4; }
78
79   private:
80
81     G4ConstRK4(const G4ConstRK4&);
82     G4ConstRK4& operator=(const G4ConstRK4&);
83       // Private copy constructor and assignment operator.
84
85   private:
86
87     G4ThreeVector fInitialPoint, fMidPoint, fFinalPoint;
88     // Data stored in order to find the chord
89     G4double *dydxm, *dydxt, *yt; // scratch space - not state
90     G4double *yInitial, *yMiddle, *dydxMid, *yOneStep;
91     G4Mag_EqRhs *fEq;
92     G4double Field[3];
93};
94
95// Inline methods
96
97inline void G4ConstRK4:: RightHandSideConst(const G4double y[],
98                                                  G4double dydx[] ) const
99{
100 
101  G4double momentum_mag_square = y[3]*y[3] + y[4]*y[4] + y[5]*y[5];
102  G4double inv_momentum_magnitude = 1.0 / std::sqrt( momentum_mag_square );
103   
104  G4double cof =fEq->FCof()*inv_momentum_magnitude;
105
106  dydx[0] = y[3]*inv_momentum_magnitude;       //  (d/ds)x = Vx/V
107  dydx[1] = y[4]*inv_momentum_magnitude;       //  (d/ds)y = Vy/V
108  dydx[2] = y[5]*inv_momentum_magnitude;       //  (d/ds)z = Vz/V
109 
110  dydx[3] = cof*(y[4]*Field[2] - y[5]*Field[1]) ;   // Ax = a*(Vy*Bz - Vz*By)
111  dydx[4] = cof*(y[5]*Field[0] - y[3]*Field[2]) ;   // Ay = a*(Vz*Bx - Vx*Bz)
112  dydx[5] = cof*(y[3]*Field[1] - y[4]*Field[0]) ;   // Az = a*(Vx*By - Vy*Bx)
113}
114
115inline void G4ConstRK4::GetConstField(const G4double y[],G4double B[])
116{
117  G4double  PositionAndTime[4];
118
119  PositionAndTime[0] = y[0];
120  PositionAndTime[1] = y[1];
121  PositionAndTime[2] = y[2];
122  // Global Time
123  PositionAndTime[3] = y[7]; 
124  fEq -> GetFieldValue(PositionAndTime, B) ;
125}
126
127#endif  // G4CONSTRK4_HH
Note: See TracBrowser for help on using the repository browser.