using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter30 { /// /// Example06: Magnetic Field Created by an Infinite Current Sheet /// So far we have imagined currents carried by wires of /// small cross section. Let us now consider an extended /// object. A thin, infinitely large sheet lying in the yz /// plane carries a current of linear current density J_s. /// The current is in the y direction, and J_s represents /// the current per unit length measured along the z axis. /// Find the magnetic field near the sheet. /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }