国产精品久久久aaaa,日日干夜夜操天天插,亚洲乱熟女香蕉一区二区三区少妇,99精品国产高清一区二区三区,国产成人精品一区二区色戒,久久久国产精品成人免费,亚洲精品毛片久久久久,99久久婷婷国产综合精品电影,国产一区二区三区任你鲁

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

基于PCB 板的邊倒圓角實現方案解析

PCB線路板打樣 ? 來源:博客園 ? 作者:pcbren ? 2021-03-02 14:11 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

PCB 外形是直角時, 通常工程制作外形 (鑼帶) 時, 會將直角或尖角的地方倒成圓角, 主要是為了防止板邊容易劃傷板且容易扎傷人

所以當客戶沒有特殊要求時, PCB 外形是直角一般會默認倒角 0.5mm 圓角(如下圖所示)

一。 PCB 板邊倒圓角點分析

原 PCB 外形 如下圖圖示: 看了這個 PCB 外形, 產生有 2 個問題點。

1. 外形中哪些點需倒圓角?

2. 如何怎么倒圓角?

1. 外形中哪些點需倒圓角?

看下圖: PCB 外形倒圓角的點, 剛好就是我們凸包需求出的點, 接下來我們將玩轉凸包了, 只要求出凸包, 那么就可以實現 PCB 板邊倒圓角啦。

求凸包的算法: 我們可以借鑒算法導論中的查找凸包的算法(加以改進得到新的求凸包方法, 詳見[方法一] 與[方法二] )

2. 如何怎么倒圓角?

在下面有說明倒角方法。

二。 求凸點

方法一求凸點:[采用多輪遍歷, 一遍一遍將凹點踢除, 剩于的即是凸點]

方法一求凸點: 代碼

/// 《summary》

/// 求最大多邊形最大凸包 1 [采用多輪遍歷將凹點踢除, 剩于的即是凸點]

/// 《/summary》

/// 《param name=“gSur_Point_list”》《/param》

/// 《returns》《/returns》

public List《gSur_Point》 s_convex_polyon1(List《gSur_Point》 gSur_Point_list)

{

add addCOM = new add();

bool isOK = true;

List《gSur_Point》 PointList = new List《gSur_Point》();

var isCCW = s_isCCW(gSur_Point_list);

int sum = gSur_Point_list.Count() - 1;

int n = gSur_Point_list.Count();

for (int i = 0; i 《n; i++)

{

int IndexPre = (i - 1) % sum;

if (IndexPre == -1) IndexPre = sum - 1;

int IndexCurrent = i % sum;

int IndexNext = (i + 1) % sum;

if (gSur_Point_list[IndexPre].type_point》 0) continue;

if (gSur_Point_list[IndexCurrent].type_point》 0) continue;

var multiVal = multi(gSur_Point_list[IndexPre].p, gSur_Point_list[IndexCurrent].p, gSur_Point_list[IndexNext].p);

if ((isCCW && multiVal》 0) || (!isCCW && multiVal 《0))

PointList.Add(gSur_Point_list[IndexCurrent]);

else

isOK = false;

}

List《gSur_Point》 Point2List = new List《gSur_Point》(PointList);

while (!isOK)

{

isOK = true;

PointList.Clear();

PointList.AddRange(Point2List);

Point2List.Clear();

sum = PointList.Count() - 1;

n = PointList.Count();

for (int i = 0; i 《n; i++)

{

int IndexPre = (i - 1) % sum;

if (IndexPre == -1) IndexPre = sum - 1;

int IndexCurrent = i % sum;

int IndexNext = (i + 1) % sum;

var multiVal = multi(PointList[IndexPre].p, PointList[IndexCurrent].p, PointList[IndexNext].p);

if ((isCCW && multiVal》 0) || (!isCCW && multiVal 《0))

Point2List.Add(PointList[IndexCurrent]);

else

isOK = false;

}

}

return Point2List;

}

方法二求凸包:[采用一邊遍歷找出凸點并加入隊列, 并同時將隊列中的凸點隊列中找出凹點踢除]

方法二求凸包代碼:

/// 《summary》

/// 求最大多邊形最大凸包 2 [采用一邊遍歷找出凸點并加入隊列, 并同時將隊列中的凸點隊列中找出凹點踢除]

/// 《/summary》

/// 《param name=“gSur_Point_list”》《/param》

/// 《returns》《/returns》

public List《gSur_Point》 s_convex_polyon2(List《gSur_Point》 gSur_Point_list)

{

Stack《gSur_Point》 StackPoint = new Stack《gSur_Point》();

var isCCW = s_isCCW(gSur_Point_list);

int sum = gSur_Point_list.Count() - 1;

int n = gSur_Point_list.Count();

for (int i = 0; i 《n; i++)

{

int IndexPre = (i - 1) % sum;

if (IndexPre == -1) IndexPre = sum - 1;

int IndexCurrent = i % sum;

int IndexNext = (i + 1) % sum;

if (gSur_Point_list[IndexPre].type_point》 0) continue;

if (gSur_Point_list[IndexCurrent].type_point》 0) continue;

var multiVal = multi(gSur_Point_list[IndexPre].p, gSur_Point_list[IndexCurrent].p, gSur_Point_list[IndexNext].p);

if ((isCCW && multiVal》 0) || (!isCCW && multiVal 《0))

{

L1:

if (StackPoint.Count》 1)

{

var Top1Point = StackPoint.Pop();

var Top2Point = StackPoint.Peek();

multiVal = multi(Top2Point.p, Top1Point.p, gSur_Point_list[IndexCurrent].p);

if ((isCCW && multiVal》 0) || (!isCCW && multiVal 《0))

StackPoint.Push(Top1Point);

else

goto L1;

}

StackPoint.Push(gSur_Point_list[IndexCurrent]);

}

}

return StackPoint.Reverse().ToList();

}

方法三求凸包:[按算法導論 Graham 掃描法 各節點按方位角 + 距離 逆時針排序 依次檢查, 當不屬凸點于則彈出]

方法三求凸包代碼

/// 《summary》

/// 求最大多邊形最大凸包 5 [按算法導論 Graham 掃描法 各節點按方位角 + 距離 逆時針排序 依次檢查, 當不屬凸點于則彈出]

/// 由于把各點的排列順序重新排序了, 只支持折線節點(當存在弧節點時會出異常 !!!)

/// 《/summary》

/// 《param name=“gSur_Point_list”》《/param》

/// 《returns》《/returns》

public List《gSur_Point》 s_convex_polyon3(List《gSur_Point》 gSur_Point_list)

{

var LeftBottomPoint = gSur_Point_list.OrderBy(tt =》 tt.p.y).ThenBy(tt =》 tt.p.x).FirstOrDefault();

gSur_Point_list.RemoveAt(gSur_Point_list.Count - 1);

gSur_Point_list.ForEach(tt =》

{

tt.Value = p2p_di(LeftBottomPoint.p, tt.p);

tt.Angle = p_ang(LeftBottomPoint.p, tt.p);

}

);

gSur_Point_list = gSur_Point_list.OrderBy(tt =》 tt.Angle).ThenBy(tt =》 tt.Value).ToList();

gSur_Point_list.Add(gSur_Point_list[0]);

Stack《gSur_Point》 StackPoint = new Stack《gSur_Point》();

var isCCW = true;

int sum = gSur_Point_list.Count() - 1;

int n = gSur_Point_list.Count();

for (int i = 0; i 《n; i++)

{

int IndexPre = (i - 1) % sum;

if (IndexPre == -1) IndexPre = sum - 1;

int IndexCurrent = i % sum;

int IndexNext = (i + 1) % sum;

var multiVal = multi(gSur_Point_list[IndexPre].p, gSur_Point_list[IndexCurrent].p, gSur_Point_list[IndexNext].p);

if (isCCW && multiVal》 0)

{

L1:

if (StackPoint.Count》 1)

{

var Top1Point = StackPoint.Pop();

var Top2Point = StackPoint.Peek();

multiVal = multi(Top2Point.p, Top1Point.p, gSur_Point_list[IndexCurrent].p);

if (isCCW && multiVal》 0)

StackPoint.Push(Top1Point);

else

goto L1;

}

StackPoint.Push(gSur_Point_list[IndexCurrent]);

}

}

return StackPoint.Reverse().ToList();

}

公共方法與數據結構

/// 《summary》

/// Surface 坐標泛型集類 1

/// 《/summary》

public class gSur_Point

{

public gSur_Point()

{ }

public gSur_Point(double x_val, double y_val, byte type_point_)

{

this.p.x = x_val;

this.p.y = y_val;

this.type_point = type_point_;

}

public gSur_Point(gPoint p, byte type_point_)

{

this.p = p;

this.type_point = type_point_;

}

public gPoint p;

/// 《summary》

/// 0 為折點 1 為順時針 2 為逆時針

/// 《/summary》

public byte type_point { get; set; } = 0;

/// 《summary》

/// 值

/// 《/summary》

public double Value { get; set; } = 0;

/// 《summary》

/// 角度

/// 《/summary》

public double Angle { get; set; } = 0;

/// 《summary》

/// 標記

/// 《/summary》

public bool isFalg { get; set; }

}

/// 《summary》

/// 點 數據類型 (XY)

/// 《/summary》

public struct gPoint

{

public gPoint(gPoint p_)

{

this.x = p_.x;

this.y = p_.y;

}

public gPoint(double x_val, double y_val)

{

this.x = x_val;

this.y = y_val;

}

public double x;

public double y;

public static gPoint operator +(gPoint p1, gPoint p2)

{

p1.x += p2.x;

p1.y += p2.y;

return p1;

}

public static gPoint operator -(gPoint p1, gPoint p2)

{

p1.x -= p2.x;

p1.y -= p2.y;

return p1;

}

public static gPoint operator +(gPoint p1, double val)

{

p1.x += val;

p1.y += val;

return p1;

}

public static bool operator ==(gPoint p1, gPoint p2)

{

return (p1.x == p2.x && p1.y == p2.y);

}

public static bool operator !=(gPoint p1, gPoint p2)

{

return !(p1.x == p2.x && p1.y == p2.y);

}

}

/// 《summary》

/// 求叉積 判斷[點 P 與線 L] 位置關系[小于 0] 在右邊 [大于 0] 在左邊 [等于 0] 共線

/// 《/summary》

/// 《param name=“ps”》《/param》

/// 《param name=“pe”》《/param》

/// 《param name=“p”》《/param》

/// 《returns》[小于 0] 在右邊 [大于 0] 在左邊 [等于 0] 共線《/returns》

public double multi(gPoint ps, gPoint pe, gPoint p)

{

return ((ps.x - p.x) * (pe.y - p.y) - (pe.x - p.x) * (ps.y - p.y));

}

/// 《summary》

/// 檢測 Surface 是否逆時針

/// 《/summary》

/// 《param name=“gSur_Point_list”》《/param》

/// 《returns》《/returns》

public bool s_isCCW(List《gSur_Point》 gSur_Point_list)

{

double d = 0;

int n = gSur_Point_list.Count() - 1;

for (int i = 0; i 《n; i++)

{

if (gSur_Point_list.type_point》 0) continue;

int NextI = i + 1 + (gSur_Point_list[i + 1].type_point》 0 ? 1 : 0);

d += -0.5 * (gSur_Point_list[NextI].p.y + gSur_Point_list.p.y) * (gSur_Point_list[NextI].p.x - gSur_Point_list.p.x);

}

return d》 0;

}

/// 《summary》

/// 返回兩點之間歐氏距離

/// 《/summary》

/// 《param name=“p1”》《/param》

/// 《param name=“p2”》《/param》

/// 《returns》《/returns》

public double p2p_di(gPoint p1, gPoint p2)

{

return Math.Sqrt((p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y));

}

/// 《summary》

/// 求方位角

/// 《/summary》

/// 《param name=“ps”》《/param》

/// 《param name=“pe”》《/param》

/// 《returns》《/returns》

public double p_ang(gPoint ps, gPoint pe)

{

double a_ang = Math.Atan((pe.y - ps.y) / (pe.x - ps.x)) / Math.PI * 180;

// 象限角 轉方位角 計算所屬象限 并求得方位角

if (pe.x》= ps.x && pe.y》= ps.y) //↗ 第一象限

{

return a_ang;

}

else if (!(pe.x》= ps.x) && pe.y》= ps.y) // ↖ 第二象限

{

return a_ang + 180;

}

else if (!(pe.x》= ps.x) && !(pe.y》= ps.y)) //↙ 第三象限

{

return a_ang + 180;

}

else if (pe.x》= ps.x && !(pe.y》= ps.y)) // ↘ 第四象限

{

return a_ang + 360;

}

else

{

return a_ang;

}

}

View Code

三。 板邊凸點倒圓角方法

方法一。 也最簡單的倒角方法, 我們將 PCB 板邊凸點找出來后, 可以直接借助 genesis 倒角功能就可以實現了

當然但偶爾會報錯的, 且當 N 個小線段組成的尖角倒角會出錯(要實現完美效果只有自己寫倒角算法啦)

方法二: 自己寫倒角算法, 這個算法和加內角孔算法類似 (這里只是介紹簡單的倒角) 考慮特殊的需要擴展

四。 凸點加倒圓角實現效果

編輯:hfy

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • pcb
    pcb
    +關注

    關注

    4405

    文章

    23878

    瀏覽量

    424347
收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評論

    相關推薦
    熱點推薦

    2025年PCB內置板載天線技術特點及應用方案解析

    隨著無線通信技術的迅猛發展,PCB天線(Printed Circuit Board Antenna,印刷電路天線)憑借其小型化、成本低、易于批量生產和良好的性能,在物聯網(IoT)、智能硬件、5G
    的頭像 發表于 02-01 10:48 ?478次閱讀

    pcb最少幾塊?

    BOM配單、SMT貼裝及元器件采銷等環節,詳細解析行業規范與操作實踐,并介紹一站式智造服務平臺——拍明芯城(www.iczoom.com)的服務優勢。 一、PCB的最小數量要求 PCB
    的頭像 發表于 12-26 17:57 ?119次閱讀
    <b class='flag-5'>pcb</b>打<b class='flag-5'>板</b>最少幾塊?

    主板到IO連接線核心技術與方案解析

    一、主板到IO連接線核心技術與雙品電子FFCSP方案解析1.1核心定義與主要功能主板到IO連接線(又稱
    的頭像 發表于 12-24 17:53 ?280次閱讀
    主板到IO<b class='flag-5'>板</b>連接線核心技術與<b class='flag-5'>方案</b><b class='flag-5'>解析</b>

    SCH1600 PCB 設計解析:助力快速原型開發

    SCH1600 PCB 設計解析:助力快速原型開發 在電子設計領域,快速原型開發是產品迭代和創新的關鍵環節。今天,我們就來深入了解一下 Murata 的 SCH1600 Chip Carrier
    的頭像 發表于 12-16 16:35 ?307次閱讀

    SCH1600 PCB規格與設計解析

    SCH1600 PCB規格與設計解析 在電子設計領域,快速原型開發是推動創新的關鍵環節。今天我們要探討的SCH1600 Chip Carrier PCB,就是一款專為實現快速原型開發而
    的頭像 發表于 12-16 15:50 ?443次閱讀

    SycoTec自動換刀主軸:PCB加工的精度與效率革新方案

    ,推出專為PCB加工場景打造的自動換刀主軸系列,以“高轉速、高精度、高穩定性”為核心,為PCB加工提供了革命性解決方案,成為電子制造企業的優選裝備。
    的頭像 發表于 12-16 09:32 ?308次閱讀
    SycoTec自動換刀主軸:<b class='flag-5'>PCB</b>分<b class='flag-5'>板</b>加工的精度與效率革新<b class='flag-5'>方案</b>

    如何判斷PCB的厚度?

    PCB的厚度與層數之間存在一定的關聯性,但并非絕對的一一對應關系。通常,層數越多,PCB的總厚度也會相應增加。 常見厚度與層數的對應關系 1.6mm厚度?:這是最常見的
    的頭像 發表于 11-12 09:44 ?677次閱讀

    PCB打樣避坑指南:PCB打樣全流程解析

    及分析: ? PCB打樣注意事項 一、前期準備:確保原始數據精準解析 實物完整性檢查 原始PCB需完整無損,殘缺或損傷可能導致逆向工程
    的頭像 發表于 11-04 09:23 ?779次閱讀
    <b class='flag-5'>PCB</b>抄<b class='flag-5'>板</b>打樣避坑指南:<b class='flag-5'>PCB</b>抄<b class='flag-5'>板</b>打樣全流程<b class='flag-5'>解析</b>

    PCB線路激光打碼機:賦能電子制造的高效標識解決方案

    在電子制造行業飛速發展的浪潮中,PCB(PrintedCircuitBoard,印制電路)作為電子產品的“骨架”,其生產質量與追溯管理至關重要。而PCB線路激光打碼機,作為
    的頭像 發表于 09-22 10:35 ?1056次閱讀
    <b class='flag-5'>PCB</b>線路<b class='flag-5'>板</b>激光打碼機:賦能電子制造的高效標識解決<b class='flag-5'>方案</b>

    ??PCBA拼板分全流程解析:從設計到量產,每一步都很關鍵!

    的核心要點。 PCBA拼板分全流程解析 一、PCBA拼板設計規范 1. 標準化尺寸匹配 - 根據SMT設備進規格設計拼板尺寸 - 常規建議拼板尺寸控制在250mm×150mm以內 - 保留≥5mm工藝
    的頭像 發表于 09-02 09:23 ?1092次閱讀
    ??PCBA拼板分<b class='flag-5'>板</b>全流程<b class='flag-5'>解析</b>:從設計到量產,每一步都很關鍵!

    PCB全流程解析:從拆解到測試,技術要點全揭秘!

    一站式PCBA加工廠家今天為大家講講PCB的完整流程是什么?PCB的完整流程與技術要點。PCB
    的頭像 發表于 07-26 16:22 ?1674次閱讀

    PCBA加工必知!工藝預留的原因、方式與重要性全解析

    一站式PCBA加工廠家今天為大家講講PCBA加工中為什么要預留工藝?預留工藝的方式及重要性。在PCBA加工過程中,預留工藝是一個至關重要的環節。許多客戶在設計電路時可能會忽略這
    的頭像 發表于 06-24 09:15 ?735次閱讀

    芯片內嵌式PCB封裝技術方案解析&amp;quot;七部曲&amp;quot; | 第二曲:市場主流玩家與技術方案解讀

    以下完整內容發表在「SysPro電力電子技術」知識星球-《芯片內嵌式PCB封裝技術方案全面解析的七部曲》系列文章-SysPro原創文章,僅用于SysPro內部使用-本篇為節選,完整內容會在知識星球
    的頭像 發表于 06-13 06:48 ?2720次閱讀
    芯片內嵌式<b class='flag-5'>PCB</b>封裝技術<b class='flag-5'>方案</b><b class='flag-5'>解析</b>&amp;quot;七部曲&amp;quot; | 第二曲:市場主流玩家與技術<b class='flag-5'>方案</b>解讀

    一文讀懂:單層、多層、特殊材質 PCB 加工方式全解析

    一站式PCBA加工廠家今天為大家講講單層、多層及特殊材質PCB的加工方式有哪些?單層、多層及特殊材質PCB加工方式。在電子產品制造過程中,PCB
    的頭像 發表于 05-06 08:59 ?939次閱讀

    PCBA設計工藝:提升生產效率與精度的關鍵

    緣的尺寸、形狀、過孔、切割方式等多方面的考慮。雖然在許多設計中,板材的內部結構可能會得到更多的關注,但工藝的設計同樣是至關重要的,因為它直接影響到整個PCB的制造、組裝、性能以及可靠性。 什么是PCBA設計工藝? PCBA設
    的頭像 發表于 04-23 09:24 ?674次閱讀