mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-09-02 11:08:30 +02:00
Corrected an egregious error made when converting "extresist" from
reading the .sim file format to reading the .ext file format, which is that .sim files use capacitance values of fF while .ext files use capacitance values of (nominally) aF. So there was a conversion factor of 1000 left over from the .sim file reading code that needed to be removed, or else parasitic values come out to be 1000 times too high.
This commit is contained in:
@@ -146,6 +146,15 @@ ResReadExt(CellDef *def)
|
||||
*/
|
||||
switch (keyTable[n].k_key)
|
||||
{
|
||||
case SCALE:
|
||||
/* NOTE: Currently the code assumes that the .ext
|
||||
* file is read back immediately and has the same
|
||||
* scale values currently in the extraction style.
|
||||
* However, this should be style-independent and
|
||||
* scale values should be read back and used.
|
||||
* (to be completed).
|
||||
*/
|
||||
break;
|
||||
case DEVICE:
|
||||
locresult = ResReadDevice(argc, argv);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user