using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter15 { /// /// Example07: A Swinging Rod /// A uniform rod of mass M and length L is pivoted about /// one end oscillates in a vertical plane (Fig.15.19). /// Find the period of oscillation of the amplitude if /// the motion is small. /// T = 2\pi \sqrt{2L/3/g} /// public class Example07 { public Example07() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }