using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// KirchhoffTest /// public class CircuitLCTest { public CircuitLCTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Inductance L = new GP.Inductance(); L.H = 10.0; GP.Capacitance C = new GP.Capacitance(); C.F = 3.0; GP.CircuitLC cir = new GP.CircuitLC(L,C); result += Convert.ToString(cir.NaturalFrequency) + "\r\n"; } } } // 0.0290575841566274