ICC2学习之PG

画PG网络有两种方式,一种是自己根据命令直接画,一种是做定义,规定约束,然后让工具自动画.

两种方式都需要先创建net,如下:

create_net VDD

create_net VSS

set_net_type -net VDD -type power

set_net_type -net VSS -type ground

规定约束让工具自己画,如下:

create_pg_mesh_pattern top_pg -layers {{{horizontal_layer:M3} {width:5} {spacing:interleaving} {pitch:40} {offset:10} {trim:true} \

{{vertical_layer:M4} {width:5} {spacing:interleaving} {pitch:50} {offset:15} {trim:true}}}

set_pg_strategy top_vddvss -core \

-pattern {{name:top_pg} {nets:{VDD VSS}}} \

-extension {stop:design_boundary_and_generate_pin}

compile_pg -strategies top_vddvss

执行完这三条命令后,画的PG如下:

根据命令直接画:

create_pg_strap -net VDD -direction vertical -layer M2 -width 5 -start 10 -pitch 40 -stop 160

create_pg_strap -net VSS -direction vertical -layer M2 -width 5 -start 30 -pitch 40 -stop 160

create_pg_strap -net VDD -direction horizontal -layer M3 -width 5 -start 15 -pitch 50 -stop 210

create_pg_strap -net VSS -direction horizontal -layer M3 -width 5 -start 40 -pitch 50 -stop 210

当画完PG后想要删除,命令如下:

remove_routes -nets {VDD VSS} -stripe

remove_pg_patterns -all

remove_pg_strategies -all

相关推荐
y = xⁿ15 小时前
DeepSeek Harness 学习日记:关于Agent接口,工具调用的底层实现
android·java·学习
HugoStudio_SWAN18 小时前
【擦除重绘】C++ 控制台动画:弹跳 Logo DVD 屏保效果
开发语言·c++·学习·程序人生
sakiko_19 小时前
Swift学习笔记42-SwiftUI的属性包装器(讲解+面试)
笔记·学习·ios·swiftui·swift
存在morning21 小时前
【Paimon 学习笔记 三】工作流程:Paimon 的批写、流写、批读与流读
笔记·学习
老当益壮梁奶奶1 天前
Linux软件编程学习笔记(八):进程间通信详解(1)
linux·c语言·笔记·学习·算法
凯尔萨厮1 天前
Java学习笔记十(注解)
java·笔记·学习
JoannaJuanCV1 天前
VLM学习-SFT(监督微调)
深度学习·学习·机器学习·大模型·视觉大模型·vlm·视觉编码器
程序员大雄学编程1 天前
微积分43. 无穷积分入门:从概念到Python实战可视化
开发语言·python·学习·微积分
一条破秋裤1 天前
STM32 学习笔记:GPIO 输出实验——LED 闪烁、流水灯与蜂鸣器
笔记·stm32·学习
2601_962073971 天前
【MySQL】全面学习数据库查询技巧:查询指令深度学习指南
数据库·学习·mysql