using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter24 { /// /// Example06: The Electric Field Due to a Thin Spherical Shell /// A thin spherical shell of radius a has a total charge Q /// distributed uniformly over its surface. Find the electric /// field at points /// (A) outside and /// E = k_e Q / r^2 /// (B) inside the shell. /// E = 0 /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }