using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter30 { /// /// Example05: The Magnetic Field Created by a Toroid /// A device called a toroid (Fig. 30.14) is often used /// to create an almost uniform magnetic field in some /// enclosed area. The device consists of a conducting /// wire wrapped around a ring (a torus) made of a /// nonconducting material. For a toroid having N /// closely spaced turns of wire, calculate the magnetic /// field in the- region occupied by the torus, a distance /// r from the center. /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }