using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter25 { /// /// Example06: Electric Potential Due to a Uniformly Charged Disk. /// A uniformly charged disk has radius a and surface charge /// density. Find /// (A) /// the electric potential and /// V = 2 \pi k_e \sigma [(x^2 + a^2)^{1/2} - x] /// (B) /// the magnitude of the electric field along the perpendicular /// central axis of the disk. /// E_x = 2 \pi k_e \sigma [1 - x / \sqrt(x^2 + a^2)] /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }