using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter30 { /// /// Example10: An Iron-Filled Toroid /// A toroid wound with 60.0 turns/m of wire carries a /// current of 5.00 A. The torus is iron, which has a /// magnetic permeability of \mu_m = 5000 \mu_0 /// under the given conditions. Find H and B inside the iron. /// public class Example10 { public Example10() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }