using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter24 { /// /// Example03: Flux Due to a Point Charge /// A spherical gaussian surface surrounds a point charge q. /// Describe what happens to the total flux through the surface if /// (A) the charge is tripled, /// (B) the radius of the sphere is doubled, /// (C) the surface is changed to a cube, and /// (D) the charge is moved to another location inside the surface. /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }