File indexing completed on 2025-01-18 09:58:37
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042 #ifndef G4LightIonQMDMeanField_hh
0043 #define G4LightIonQMDMeanField_hh
0044
0045 #include "G4QMDSystem.hh"
0046 #include "G4LightIonQMDNucleus.hh"
0047
0048 class G4LightIonQMDMeanField
0049 {
0050 public:
0051
0052 G4LightIonQMDMeanField();
0053 ~G4LightIonQMDMeanField() = default;
0054
0055 void SetSystem ( G4QMDSystem* aSystem );
0056 void SetNucleus ( G4LightIonQMDNucleus* aSystem );
0057 inline G4QMDSystem* GetSystem () { return system; }
0058
0059 void Cal2BodyQuantities();
0060 void Cal2BodyQuantities( G4int );
0061
0062 void CalGraduate();
0063
0064 G4bool IsPauliBlocked( G4int );
0065
0066 G4double GetTotalPotential();
0067 G4double GetPotential( G4int );
0068
0069 void DoPropagation( G4double );
0070
0071 std::vector< G4LightIonQMDNucleus* > DoClusterJudgment();
0072
0073 inline G4double GetRR2( G4int i , G4int j ) { return rr2[i][j]; }
0074 inline G4double GetRHA( G4int i , G4int j ) { return rha[i][j]; }
0075 inline G4double GetRHE( G4int i , G4int j ) { return rhe[i][j]; }
0076 inline G4ThreeVector GetFFr( G4int i ) { return ffr[i]; }
0077 inline G4ThreeVector GetFFp( G4int i ) { return ffp[i]; }
0078
0079 std::vector< G4double > GetLocalDensity();
0080 std::vector< G4double > GetDepthOfPotential();
0081
0082 void Update();
0083
0084 G4double GetTotalEnergy();
0085 G4double GetSingleEnergy( G4int );
0086
0087 private:
0088
0089 G4double calPauliBlockingFactor( G4int );
0090
0091 private:
0092
0093 G4QMDSystem* system;
0094
0095 G4double rclds { 3.99 };
0096
0097 G4double hbc , rho0;
0098 G4double epsx { -20.0 };
0099 G4double epscl { 0.0001 };
0100
0101 G4double cpc;
0102
0103
0104 G4int irelcr { 1 };
0105 G4double gamm, c0, c3, cs, cl, wl;
0106 G4double g0, g0iso, gtau0, eta, kappas;
0107
0108 G4double c0w, clw, c0sw;
0109
0110 G4double c0g,c3g,csg,pag;
0111 G4double cg0,cgtau0,pag_tau;
0112
0113 G4double cpw,cph;
0114
0115
0116 std::vector < std::vector < G4double > > rr2;
0117 std::vector < std::vector < G4double > > pp2;
0118 std::vector < std::vector < G4double > > rbij;
0119
0120
0121 std::vector < std::vector < G4double > > rha;
0122
0123
0124 std::vector < std::vector < G4double > > rhe;
0125 std::vector < std::vector < G4double > > rhc;
0126
0127 std::vector < G4ThreeVector > ffr;
0128 std::vector < G4ThreeVector > ffp;
0129 std::vector < G4double > rh3d;
0130 std::vector < G4double > rh3d_tau;
0131
0132 };
0133
0134 #endif