using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter31 { /// /// Example04: Motional emf Induced in a Rotating Bar /// A conducting bar of length l rotates with a constant /// angular speed \omega abut a pivot at one end. A uniform /// magnetic field B is directed perpendicular to the plane /// of rotation, as shown in Figure 31.11. Find the motional /// emf induced between the ends of the bar. /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }