using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter42 { /// /// Example07: Space Quantization for Hydrogen /// Consider the hydrogen atom in the l = 3 state. Calculate /// the magnitude of L, the allowed values of L_z, and the /// corresponding angles \theta that |L| makes with the z axis. /// public class Example07 { public Example07() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }