using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter31 { /// /// Example10: The Induced Current in a Motor /// Assume that a motor in which the coil has a total /// resistance of 10 \Omega is supplied by a voltage of 120 V. /// When the motor is running at its maximum speed, the /// back emf is 70 V. Find current in the coil /// (A) when the motor is turned on and /// (B) when it has reached maximum speed. /// public class Example10 { public Example10() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }