using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter31 { /// /// Example07: A Loop Moving Through a Magnetic Field /// A rectangular metallic loop of dimensions l and w and /// resistance R moves with constant speed v to the right, /// as in Figure 31.18a. The loop passes through a uniform /// magnetic field B directed into the page and extending a /// distance 3w along the x axis. Defining x as the position /// of the right side of the loop along the x axis, plot as /// functions of x /// (A) the magnetic flux through the area enclosed by the loop, /// (B) the induced motional emf, and /// (C) the external applied force necessary to counter /// the magnetic force and keep v constant. /// public class Example07 { public Example07() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }