using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter30 { /// /// Example02: Magnetic Field Due to a Curved Wire Segment /// Calculate the magnetic field at point O for the /// current-carrying wire segment shown in Figure 30.5. /// The wire consists of two straight portions and a circular /// arc of radius R, which subtends an angle \theta. The arrowheads /// on the wire indicate the direction of the current. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }