using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter45 { /// /// Example04: Inside a Fusion Reactor /// In 1998, the JT-60U tokamak in Japan was operated /// with a D-T plasma density of 4.8 \times 10^{13} cm^{-3} /// at a temperature (in energy units) of 24.1 keV. /// It was able to confine this plasma inside /// a magnetic field for 1.1s. /// (A) Does this meet Lawson's criterion? /// (B) How does the plasma density compare with the /// density of atoms in an ideal gas when the gas is /// at room temperature and pressure? /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }