using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter33 { /// /// Example07: A Resonating Series RLC Circuit /// Consider a series RLC circuit for which R = 150 \Omega, /// L = 20.0 mH, \Delta V_{max} = 20.0 V, and \omega = 5000 s^{-1}. /// Determine the value of the capacitance for which /// the current is a maximum. /// public class Example07 { public Example07() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }