using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter40 { /// /// Example02: The Quantized Oscillator /// A 2.0-kg block is attached to a massless spring that has /// a force constant of k = 25 N/m. The spring is stretched 0.40 m /// from its equilibrium position and released. /// (A) /// Find the total energy of the system and the frequency /// of oscillation according to classical calculations. /// (B) /// Assuming that the energy is quantized, find the quantum /// number n for the system oscillating with this amplitude. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }