using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter29 { /// /// Example06: A Proton Moving Perpendicular to a Uniform Magnetic Field /// A proton is moving in a circular orbit of radius 14 cm /// in a uniform 0.35-T magnetic field perpendicular to the /// velocity of the proton. Find the linear speed of the proton. /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }