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'
This commit is contained in:
parent
000b23cc52
commit
685d684c88
|
|
@ -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…
Reference in New Issue