Esempio n. 1
0
        public override void makeClonned(int maxKnot, string cloneValue)
        {
            string[]   clonnedKnots = { maxKnot.ToString(), knots[1] };
            string[]   cloneCnots   = { knots[0], maxKnot.ToString() };
            Inductance clonned      = new Inductance(name + clonnedSuffix, clonnedKnots, value);
            Inductance clone        = new Inductance(name, cloneCnots, cloneValue);

            cloneElement    = clone;
            clonnedElements = new List <Element>()
            {
                clonned, clone
            };
        }
Esempio n. 2
0
 public override void makeClonned(int maxKnot, string cloneValue)
 {
     string[] clonnedKnots = { maxKnot.ToString(), knots[1] };
     string[] cloneCnots = { knots[0], maxKnot.ToString() };
     Inductance clonned = new Inductance(name + clonnedSuffix, clonnedKnots, value);
     Inductance clone = new Inductance(name, cloneCnots, cloneValue);
     cloneElement = clone;
     clonnedElements = new List<Element>() { clonned, clone };
 }
Esempio n. 3
0
 public Inductance(Inductance element) : base(element)
 {
 }
Esempio n. 4
0
 public Inductance(Inductance element)
     : base(element)
 {
 }