using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter06 { /// /// Example01 : Force That Cause Centripetal Acceleration /// The force causing centripetal acceleration is sometimes /// called a centripetal force. We are familiar with a /// variety of force in nature - friction, gravity, /// normal forces, tension, and so forth. Should we add /// centripetal force to this list? /// public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }