using System; namespace Science.Physics.GeneralPhysics { /// /// CircuitLC /// public class CircuitLC { private Inductance l; private Capacitance c; public CircuitLC() { } public CircuitLC(Inductance L, Capacitance C) { l = L; c = C; } public double NaturalFrequency { get{return 1.0/2.0/Math.PI/Math.Sqrt(l.H*c.F);} } } }