using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter35 { /// /// Example01: Measuring the Speed of Light with Fizeau's Wheel /// Assume that Fizeau's wheel has 360 teeth and is rotating /// at 27.5 rev/s when a pulse of light passing through /// opening A in Figure 35.2 is blocked by tooth B on its /// return. If the distance to the mirror is 7500 m, what /// is the speed of light? /// public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }