1 package JSci.physics.particles; 2 3 import JSci.physics.quantum.QuantumParticle; 4 5 10 public final class Neutron extends Nucleon { 11 14 public Neutron() {} 15 19 public double restMass() {return 939.56563;} 20 24 public int isospinZ() {return -1;} 25 29 public int charge() {return 0;} 30 33 public QuantumParticle[] quarks() { 34 QuantumParticle comp[]={new Up(),new Down(),new Down()}; 35 return comp; 36 } 37 40 public QuantumParticle anti() { 41 return new AntiNeutron(); 42 } 43 46 public boolean isAnti(QuantumParticle qp) { 47 return (qp!=null) && (qp instanceof AntiNeutron); 48 } 49 52 public String toString() { 53 return new String ("Neutron"); 54 } 55 } 56 57 | Popular Tags |