sjtusonic的个人空间 https://blog.eetop.cn/icstep [收藏] [复制] [分享] [RSS]

空间首页 动态 记录 日志 相册 主题 分享 留言板 个人资料

日志

常搞混的三个参数-intersect, -within, -touching ZZ solvnet

已有 1621 次阅读| 2012-10-25 15:38

Difference Between the -intersect, -within, and -touching Options
Question:

The following commands return the same cells in my design:

   get_cells -touching {50 50 100 100}
   get_cells -within {50 50 100 100}

What is the difference between the -touching, -within and -intersect options of the get_cells command?

Answer:

When used with the get_cells command,

  • The -within option returns the cells that are totally inside the specified region and do not overlap the boundary
  • The -touching option returns the cells that are inside the the specified region, including cells that overlap the boundary
  • The -intersect option returns the cells that have common points with the specified region and at least part of the cell boundary is outside the specified region.

The following example shows the difference between these options.

 

 

 

icc_shell> get_cells -within {400 400 800 750}
{U1}
icc_shell> get_cells -touching {400 400 800 750}
{U1 U2}
icc_shell> get_cells -intersect {400 400 800 750}
{U3 U4}
icc_shell> get_cells -intersect {830 70  880 140}
{Mem1}

Note that these options are supported by many of the get_* commands and behave in a similar manner when used with these commands.


点赞

评论 (0 个评论)

facelist

您需要登录后才可以评论 登录 | 注册

  • 关注TA
  • 加好友
  • 联系TA
  • 0

    周排名
  • 0

    月排名
  • 0

    总排名
  • 1

    关注
  • 4

    粉丝
  • 3

    好友
  • 0

    获赞
  • 1

    评论
  • 1737

    访问数
关闭

站长推荐 上一条 /2 下一条

小黑屋| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-4-25 09:46 , Processed in 0.013801 second(s), 6 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
返回顶部