using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter33 { /// /// Example04: Finding L from a Phasor Diagram /// In a series RLC circuit, the applied voltage has a /// maximum value of 120 V and oscillates at a frequency /// of 60.0 Hz, the circuit contains an inductor whose /// inductance can be varied, a 200-\Omega resistor, /// and a 4.00-\mu F capacitor. /// What value of L should an engineer analyzing /// the circuit choose such that the voltage across the /// capacitor lags the applied voltage by 30.0^{\circle}? /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }