using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter29 { /// /// Example08: The Hall Effect for Copper /// A rectangular copper strip 1.5 cm wide and 0.10 cm /// thick carries a current of 5.0 A. Find the Hall voltage /// for a 1.2-T magnetic field applied in a direction /// perpendicular to the strip. /// public class Example08 { public Example08() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }