using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter41 { /// /// Example06: Transmission Coefficient for an Electron /// A 30-eV electron is incident on a square barrier of /// height 40 eV. What is the probability that the electron /// will tunnel through the barrier if its width is /// (A) 1.0 nm? /// (B) 0.10 nm? /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }