예제 #1
0
 public BottomLambda(UpQuark u, DownQuark d, BottomQuark b)
     : base(u, d, b)
 {
     this.symbol       = "\u039B\u2070b";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiBottomLambda(this);
 }
예제 #2
0
 public Sigma(UpQuark u, DownQuark d, StrangeQuark s) : base(u, d, s)
 {
     this.symbol       = "\u03A3\u2070";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiSigma(this);
 }
예제 #3
0
 public Sigma(UpQuark u1, UpQuark u2, StrangeQuark s) : base(u1, u2, s)
 {
     this.symbol       = "\u03A3\u207A";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiSigma(this);
 }
예제 #4
0
 public Neutron(UpQuark u, DownQuark d1, DownQuark d2) : base(u, d1, d2)
 {
     this.symbol       = "n";
     this.antiParticle = new AntiNeutron(this);
 }
예제 #5
0
 public Nucleon(UpQuark u, DownQuark d1, DownQuark d2) : base(u, d1, d2)
 {
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiNucleon(this);
 }
예제 #6
0
 public Nucleon(UpQuark u1, UpQuark u2, DownQuark d) : base(u1, u2, d)
 {
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiNucleon(this);
 }
예제 #7
0
 public BottomSigma(UpQuark u1, UpQuark u2, BottomQuark b) : base(u1, u2, b)
 {
     this.symbol       = "\u03A3\u207Ab";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiBottomSigma(this);
 }
예제 #8
0
파일: Delta.cs 프로젝트: Shine6Z/GenXSource
 /// <summary>
 ///  DELTA ZERO
 /// </summary>
 public Delta(UpQuark u, DownQuark d1, DownQuark d2) : base(u, d1, d2)
 {
     this.symbol       = "\u0394\u2070";
     this.spin         = new Fraction(3, 2);
     this.antiParticle = new AntiDelta(this);
 }
예제 #9
0
파일: Delta.cs 프로젝트: Shine6Z/GenXSource
 /// <summary>
 ///  DELTA PLUS
 /// </summary>
 public Delta(UpQuark u1, UpQuark u2, DownQuark d) : base(u1, u2, d)
 {
     this.symbol       = "\u0394\u207A";
     this.spin         = new Fraction(3, 2);
     this.antiParticle = new AntiDelta(this);
 }
예제 #10
0
 public CharmedLambda(UpQuark u, DownQuark d, CharmQuark c) : base(u, d, c)
 {
     this.symbol       = "\u039B\u207Ac";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiCharmedLambda(this);
 }
예제 #11
0
 public Proton(UpQuark u1, UpQuark u2, DownQuark d) : base(u1, u2, d)
 {
     this.symbol       = "p";
     this.antiParticle = new AntiProton(this);
 }
예제 #12
0
 public Xi(UpQuark u, StrangeQuark s1, StrangeQuark s2) : base(u, s1, s2)
 {
     this.symbol       = "\u039E\u2070";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiXi(this);
 }
예제 #13
0
 public CharmedXi(UpQuark u, StrangeQuark s, CharmQuark c) : base(u, c, s)
 {
     this.symbol       = "\u039E\u207Ac";
     this.spin         = new Fraction(1, 2);
     this.antiParticle = new AntiCharmedXi(this);
 }