using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter05 { /// /// Example06: The runaway car /// A car of mass m is on an icy driveway inclined at /// an angle \theta as in Figure 5.11a. /// (A) Find the acceleration of the car, assuming that /// the driveway is frictionless. /// (B) Suppose the car is released from rest at the top /// of the incline, and the distance from the car's front /// bumper to the bottom of the incline is d. How long does /// it take the front bumper to reach the bottom, and what /// is the car's speed as it arrives there? /// a_x = g \sin\theta /// v_xf = \sqrt(2 g d \sin\theta ) /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }