using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter28 { /// /// Example13: Discharging a Capacitor in an RC Circuit /// Consider a capacitor of capacitance C that is being /// discharged through a resistor of resistance R, as shown /// in Figure 28.21 /// (A) /// After how many time constants is the charge on the /// capacitor one-fourth is initial value? /// (B) /// The energy stored in the capacitor decreases with /// time as the capacitor discharges. After how many /// time constants is this stored energy one-fourth its /// initial value? /// public class Example13 { public Example13() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }