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); }
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); }
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); }
public Neutron(UpQuark u, DownQuark d1, DownQuark d2) : base(u, d1, d2) { this.symbol = "n"; this.antiParticle = new AntiNeutron(this); }
public Nucleon(UpQuark u, DownQuark d1, DownQuark d2) : base(u, d1, d2) { this.spin = new Fraction(1, 2); this.antiParticle = new AntiNucleon(this); }
public Nucleon(UpQuark u1, UpQuark u2, DownQuark d) : base(u1, u2, d) { this.spin = new Fraction(1, 2); this.antiParticle = new AntiNucleon(this); }
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); }
/// <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); }
/// <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); }
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); }
public Proton(UpQuark u1, UpQuark u2, DownQuark d) : base(u1, u2, d) { this.symbol = "p"; this.antiParticle = new AntiProton(this); }
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); }
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); }