Yes. Depends on what is in the CDF already. If the auLvs simInfo exists already, it would be: cdf=cdfGetBaseCellCDF(ddGetObj("gpdk045" "nmos1v")) cdf->simInfo->auLvs->permuteRule="(p D S)" If the CDF is pretty empty, then you might have to do this: unless(cdf->simInfo cdf->simInfo=ncons(nil) ) unless(cdf->simInfo->auLvs cdf->simInfo->auLvs=ncons(nil) ) cdf->simInfo->auLvs->permuteRule="(p D S)" cdfSaveCDF(cdf) Regards, Andrew.
↧