using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter29 { /// /// Example02: Force on a Semicircular Conductor /// A wire bent into a semicircle of radius R forms a /// closed circuit and carries a current I. The wire lies /// in the xy plane, and a uniform magnetic field is directed /// along the positive y axis, as shown in Figure 29.12. Find /// the magnitude and direction of the magnetic force acting /// on the straight portion of the wire and on the curved portion. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }