using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter30 { /// /// Example09: Displacement Current in a Capacitor /// A sinusoidally varying voltage is applied across /// an 8.00-\mu F capacitor. The frequency of the voltage /// is 3.00 kHz, and the voltage amplitude is 30.0 V. /// Find the displacement current in the capacitor. /// public class Example09 { public Example09() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }