using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter26 { /// /// Example09: Effect of a Metallic Slab /// A parallel-plate capacitor has a plate separation d and /// plate area A. An uncharged metallic slab of thickness a is /// inserted midway between the plates. /// (A) /// Find the capacitance of the device. /// (B) /// Show that the capacitance of the original capacitor is /// unaffected by the insertion of the metallic slab if the /// slab is infinitesimally thin. /// public class Example09 { public Example09() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }