using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter45 { /// /// Example03: The Fusion of Two Deuterons /// The separation distance between two deuterons must be /// about 1.0 \times 10^{-14} m in order for the nuclear force /// to overcome the repulsive Coulomb force. /// (A) Calculate the height of the potential barrier due /// to the repulsive force. /// (B) Estimate the temperature required for a deuteron to /// overcome the potential barrier, assuming an energy /// of 3/2 k_B T per deuteron (where k_B is Boltzmann¡¯s constant). /// (C) Find the energy released in the deuterium-deuterium reaction /// 2H + 2H -> 2H + 1H /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }