using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter44 { /// /// Example03: Applying the Semiempirical Binding-Energy Formula /// The nucleus 64Zn has a tabulated binding energy of 559.09 MeV. /// Use the semiempirical binding-energy formula to generate a /// theoretical estimate of the binding energy for this nucleus. /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { L.Nucleus Zn = new L.Nucleus(); Zn.AtomicNumber = 30; Zn.NeutronNumber = 34; Zn.MassNumber = 64; result+=Convert.ToString(Zn.BindingEnergyMeV); } } } //559.675