using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter08 { /// /// Example01: The Bowler and the Sore Toe /// A bowler ball held by a careless bowler slips from /// the bowler's hands and drops on the bowler's toe. /// Choosing floor level as the y = 0 point of your coordinate /// system, estimate the change in gravitational potential /// energy of the ball - earth system as the ball galls. /// Repeat the calculation, using the top of the bowler's /// head as the origin of coordinates. /// \Delta U_g = -32.24 J /// public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }