GeFiCa
Germanium detector Field Calculator
Rho.cc
Go to the documentation of this file.
1 #include "Rho.h"
2 #include "Units.h"
3 #include "TrueCoaxial.h"
4 using namespace GeFiCa;
5 
6 void Rho::SetupWith(Detector &detector)
7 {
8  Grid::SetupWith(detector); // check number of calls
9 
10  TString type(detector.ClassName());
11  if (type.Contains("TrueCoaxial")==false) {
12  Error("SetupWith", "%s is not expected. "
13  "Please pass in a TrueCoaxial detector.", type.Data());
14  abort();
15  }
16  TrueCoaxial& coaxial = (TrueCoaxial&) detector;
17  coaxial.CheckConfigurations();
18  fDetector = &detector; // for GetC to use fDetector->Bias[]
19 
20  double dR=coaxial.Radius-coaxial.BoreR;
21  for (size_t i=0; i<N1; i++) {
22  dC1p.push_back(dR/(N1-1)); dC1m.push_back(dR/(N1-1));
23  C1.push_back(coaxial.BoreR+i*dC1p[i]);
24  E1.push_back(0); Et.push_back(0);
25  fIsFixed.push_back(false); fIsDepleted.push_back(false);
26  Src.push_back(-coaxial.GetImpurity(C1[i])*Qe/epsilon);
27  }
28  dC1m[0]=0; dC1p[N1-1]=0;
29  // fix 1st and last points
30  fIsFixed[0]=true; fIsFixed[N1-1]=true;
31  // linear interpolation between Bias[0] and Bias[1]
32  double slope = (coaxial.Bias[1]-coaxial.Bias[0])/(N1-1);
33  for (size_t i=0; i<N1; i++) Vp.push_back(coaxial.Bias[0]+slope*i);
34  Vp[N1-1]=coaxial.Bias[1];
35 }
36 //______________________________________________________________________________
37 //
39 {
40  Grid::SolveAnalytically(); // check if impurity is constant
41  // https://www.wolframalpha.com/input/?i=(V%27(r)r)%27%2Fr%3Da
42  double c1 = (Vp[N1-1]-Vp[0] + Src[0]*(C1[N1-1]*C1[N1-1]-C1[0]*C1[0])/4);
43  c1/=log(C1[N1-1]/C1[0]);
44  double c2 = Vp[N1-1]*log(C1[0]) - Vp[0]*log(C1[N1-1]) +
45  Src[0]*(C1[N1-1]*C1[N1-1]*log(C1[0])-C1[0]*C1[0]*log(C1[N1-1]))/4;
46  c2/=log(C1[0])-log(C1[N1-1]);
47  for (size_t i=0; i<N1; i++)
48  Vp[i] = -Src[0]*C1[i]*C1[i]/4 + c1*log(C1[i]) + c2;
49  CalculateE();
50 }
51 //______________________________________________________________________________
52 //
53 double Rho::GetC()
54 {
55  Grid::GetC(); // calculate field excluding undepleted region
56 
57  double dV = fDetector->Bias[1]-fDetector->Bias[0]; if (dV<0) dV=-dV;
58  double integral=0;
59  for (size_t i=0; i<GetN(); i++) {
60  integral+=E1[i]*E1[i]*dC1p[i]*C1[i];
61  if (!fIsDepleted[i]) fIsFixed[i]=false; // release undepleted points
62  }
63  double c=integral*2*Pi*epsilon/dV/dV;
64  Info("GetC","%.2f pF/cm",c/pF*cm);
65  return c;
66 }
67 //______________________________________________________________________________
68 //
69 void Rho::OverRelaxAt(size_t idx)
70 {
71  if (fIsFixed[idx]) return; // no need to calculate on boundaries
72 
73  // calculate Vp[idx] from Vp[idx-1] and Vp[idx+1]
74  double vnew = Src[idx]*dC1p[idx]*dC1m[idx]/2
75  + ((Vp[idx+1]-Vp[idx-1])/C1[idx]/2
76  + Vp[idx+1]/dC1p[idx]+Vp[idx-1]/dC1m[idx])
77  /(1/dC1m[idx]+1/dC1p[idx]);
78  vnew=RelaxationFactor*(vnew-Vp[idx])+Vp[idx]; // over relax
79 
80  // check depletion and update Vp[idx] accordingly
81  double min=Vp[idx-1], max=Vp[idx-1];
82  if (min>Vp[idx+1]) min=Vp[idx+1];
83  if (max<Vp[idx+1]) max=Vp[idx+1];
84  if (vnew<min) {
85  fIsDepleted[idx]=false; Vp[idx]=min;
86  } else if (vnew>max) {
87  fIsDepleted[idx]=false; Vp[idx]=max;
88  } else {
89  fIsDepleted[idx]=true; Vp[idx]=vnew;
90  }
91 
92  // update Vp for impurity-only case even if the point is undepleted
93  if (Vp[0]==Vp[N1-1]) Vp[idx]=vnew;
94 }
std::vector< double > dC1m
step length to previous point alone C1
Definition: Grid.h:21
std::vector< double > Bias
bias on electrodes
Definition: Detector.h:35
static const double Pi
Definition: Units.h:29
std::vector< bool > fIsFixed
true if field values are fixed
Definition: Grid.h:129
static const double cm
centimeter
Definition: Units.h:12
std::vector< double > E1
projection of Et on C1
Definition: Grid.h:17
double GetC()
Definition: Rho.cc:53
std::vector< double > Src
-(net impurity concentration)x|Qe|/epsilon
Definition: Grid.h:56
double Radius
radius of the detector
Definition: TrueCoaxial.h:12
Configuration of true coaxial detectors.
Definition: TrueCoaxial.h:9
size_t N1
number of points along the 1st coordinate
Definition: Grid.h:53
void SolveAnalytically()
Solve Poisson&#39;s Equation analytically.
Definition: Grid.cc:154
virtual void SetupWith(Detector &detector)
Fix potentials on boundaries based on.
Definition: Grid.cc:111
Detector & crystal properties.
Definition: Detector.h:32
std::vector< double > dC1p
step length to next point alone C1
Definition: Grid.h:20
size_t GetN()
total number of points
Definition: Grid.h:26
void OverRelaxAt(size_t idx)
Over relax potential Vp[.
Definition: Rho.cc:69
static const double epsilon
permittivity of Ge [C/volt/cm]
Definition: Units.h:27
std::vector< bool > fIsDepleted
true if a grid point is depleted
Definition: Grid.h:130
Detector * fDetector
! Pointer to associated detector object
Definition: Grid.h:132
double BoreR
radius of the bore
Definition: TrueCoaxial.h:13
A file defining commonly used units & constants.
static const double pF
pico farad
Definition: Units.h:22
double GetImpurity(double height)
Return net impurity concentration at.
Definition: Detector.h:20
void CheckConfigurations()
Definition: TrueCoaxial.cc:10
virtual void CalculateE()
Calculate Et, E1, E2, E3 from Vp.
Definition: Grid.cc:551
double GetC()
Get detector capacitance.
Definition: Grid.cc:198
std::vector< double > Vp
potential at each point
Definition: Grid.h:15
static const double Qe
electron charge in Coulomb [C]
Definition: Units.h:24
The only namespace in GeFiCa.
Definition: Detector.h:6
void SetupWith(Detector &detector)
Fix potentials on boundaries based on.
Definition: Rho.cc:6
std::vector< double > Et
total electric field strength
Definition: Grid.h:16
std::vector< double > C1
the 1st coordinates of the points
Definition: Grid.h:12
double RelaxationFactor
within (0,2), used to speed up convergence
Definition: Grid.h:58
void SolveAnalytically()
Definition: Rho.cc:38