Browse Source

devices/ind: bug fix, multiplier `m'

multiplier `m' was applied twice,
  because it was already implemented in indtemp.c before this commit :

> Date:   Thu May 9 10:28:38 2013 +0200
>
>     devices/ind: implement multiplier `m'
pre-master-46
rlar 11 years ago
parent
commit
685d684c88
  1. 1
      src/spicelib/devices/ind/indtemp.c

1
src/spicelib/devices/ind/indtemp.c

@ -69,7 +69,6 @@ INDtemp(GENmodel *inModel, CKTcircuit *ckt)
factor = 1.0 + tc1*difference + tc2*difference*difference;
here->INDinduct = here->INDinduct * factor * here->INDscale;
here->INDinduct = here->INDinduct / here->INDm;
}
}

Loading…
Cancel
Save