using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter26 { /// /// Example07: Energy Stored Before and After /// A parallel-plate capacitor is charged with a battery /// to a charge Q_0, as shown in Figure 26.20a. The battery /// is then removed, and a slab of material that has a /// dielectric constant \kappa is inserted between the plates, /// as shown in Figure 26.20b. Find the energy stored in the /// capacitor before and after the dielectric is inserted. /// public class Example07 { public Example07() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }