using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter31 { /// /// Example06: Application of Lenz's Law /// A metal ring is placed near a solenoid, as shown in /// Figure 31.17a. Find the direction of the induced /// current in the ring /// (A) at the instant the switch in the circuit containing /// the solenoid is thrown closed, /// (B) after the switch has been closed for several /// seconds, and /// (C) at the instant the switch is thrown open. /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }