mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-22 14:17:43 +02:00
Additional changes: Moved the halving of the sidewall capacitance
coefficient from the calculation to the tech file parser (done once instead of done many times), and corrected the included (old) SCMOS tech files to use the new "standard" coefficient values.
This commit is contained in:
+1
-1
@@ -3099,7 +3099,7 @@ extSideCommon(rinside, rfar, tpnear, tpfar, bdir, overlap, sep, extCoupleList)
|
||||
cap = extGetCapValue(he);
|
||||
for (e = extCoupleList; e; e = e->ec_next)
|
||||
if (TTMaskHasType(&e->ec_near, near) && TTMaskHasType(&e->ec_far, far)) {
|
||||
swcap = 0.5 * (e->ec_cap * overlap) / (sep + e->ec_offset);
|
||||
swcap = (e->ec_cap * overlap) / (sep + e->ec_offset);
|
||||
cap += swcap;
|
||||
if (CAP_DEBUG)
|
||||
extAdjustCouple(he, swcap, "sidewall");
|
||||
|
||||
Reference in New Issue
Block a user