using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter15 { /// /// Example06: A Connection Between Length and Time /// Christian Huygens (1629-1695), the greatest clockmaker /// in history, suggested that an international unit of length /// could be defined as the length of a simple pendulum having /// a period of exactly 1 s. How much shorter would our length /// unit be had his suggestion been followed? /// L = T^2 g / 4 / \pi^2 = 0.248 m /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }