using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter28 { /// /// Example12: Charging a Capacitor in an RC Circuit /// An uncharged capacitor and a resistor are connected in /// series to a battery, as shown in Figure 28.23. If E = 12.0 V, /// C = 5.00 \mu F, and R = 8.00 \times 10^5 \Omega, /// find the time constant of the circuit, /// the maximum charge on the capacitor, the maximum current /// in the circuit, and the charge and current as functions of /// time. /// public class Example12 { public Example12() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }