using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter07 { /// /// Example15: Car Accelerating Up a Hill /// Consider a car of mass m that is accelerating up /// a hill, as shown in Figure 7.20. /// An automotive engineer measures the magnitude of the /// total resistive force to be /// F = (218 + 0.70 v^2) N /// Where v is the speed in meters per second. /// Determine the power the engine must deliver to the /// wheels as a function of speed. /// P = mva + mvg \sin\theta + 218v + 0.70v^3 /// public class Example15 { public Example15() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }