using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter26 { /// /// Example05: Rewiring Two Charged Capacitors /// Two capacitors C_1 and C_2 (where C_1 > C_2) are charges /// to the same initial potential difference \Delta V_i. /// The charged capacitors are removed from the battery, /// and their plates are connected with opposite polarity /// as in Figure 26.13a. /// The switches S_1 and S_2 are then closed, as in Figure 26.13b. /// (A) /// Find the final potential difference \Delta V_f between a and b /// after the switches are closed. /// (B) /// Find the total energy stored in the capacitors before /// and after the switches are closed and the ratio of the /// final energy to the initial energy. /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }