using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter10 { /// /// Example16: Sphere Rolling Down an Incline /// For the solid sphere shown in Figure 10.30, calculate /// the liner speed of the center of mass at the bottom of /// the incline and the magnitude of the linear acceleration /// of the center of mass. /// v_{cm} = \sqrt{10/7*gh} /// public class Example16 { public Example16() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }