using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter29 { /// /// Example05: The D'Arsonval Galvanometer /// An end view of a D'Arsonval galvanometer (see Section 28.5) /// is shown in Figure 29.17. When the turns of wire making /// up the coil carry a current, the magnetic field created /// by the magnet exerts on the coil a torque that turns it /// (along with its attached pointer) against the spring. /// Show that the angle of deflection of the pointer is /// directly proportional to the current in the coil. /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }