Skip to content
Snippets Groups Projects
Commit bde19da4 authored by Ryoichi Miyamoto's avatar Ryoichi Miyamoto
Browse files

A way around for 0 emittance (which could happen, for example, in LEBT or when...

A way around for 0 emittance (which could happen, for example, in LEBT or when all the particles are lost when the MEBT chopper is on) was extended to x and y plane for the PARTRAN class.
parent 65056f02
No related branches found
No related tags found
No related merge requests found
...@@ -413,8 +413,10 @@ class PARTRAN: ...@@ -413,8 +413,10 @@ class PARTRAN:
self.halx =data[idx_halx ]; self.haly=data[idx_haly]; self.halz=data[idx_halp]; self.halp=data[idx_halp] self.halx =data[idx_halx ]; self.haly=data[idx_haly]; self.halz=data[idx_halp]; self.halp=data[idx_halp]
self.Nptcl=data[idx_Nptcl]; self.loss=data[idx_loss] self.Nptcl=data[idx_Nptcl]; self.loss=data[idx_loss]
# To avoid #/0 for LEBT # Way around for 0 emitt
for i in range(len(self.s)): for i in range(len(self.s)):
if self.epsx[i]==0.0: self.epsx[i]=inf
if self.epsy[i]==0.0: self.epsy[i]=inf
if self.epsz[i]==0.0: self.epsz[i]=inf if self.epsz[i]==0.0: self.epsz[i]=inf
if self.epsp[i]==0.0: self.epsp[i]=inf if self.epsp[i]==0.0: self.epsp[i]=inf
...@@ -431,8 +433,10 @@ class PARTRAN: ...@@ -431,8 +433,10 @@ class PARTRAN:
self.alfz =-data[idx_alfz]/self.epsz*self.beta*self.gamma**3 self.alfz =-data[idx_alfz]/self.epsz*self.beta*self.gamma**3
self.alfp =-self.alfz self.alfp =-self.alfz
# Set epsz/epsp back to 0 # Set inf emitt back to 0
for i in range(len(self.s)): for i in range(len(self.s)):
if self.epsx[i]==inf: self.epsx[i]=0.0
if self.epsy[i]==inf: self.epsy[i]=0.0
if self.epsz[i]==inf: self.epsz[i]=0.0 if self.epsz[i]==inf: self.epsz[i]=0.0
if self.epsp[i]==inf: self.epsp[i]=0.0 if self.epsp[i]==inf: self.epsp[i]=0.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment