This repository has been archived by the owner on Aug 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FindAnnularRing_6C.pas
271 lines (251 loc) · 10 KB
/
FindAnnularRing_6C.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
{....................................................................}
{ Summary This script checks checks IAR and OAR }
{ Conflicting pads and vias have been reported }
{ }
{ }
{ Created by: Henk de Jonge, Transfer BV, The Netherlands }
{ Date: 15-11-2011 }
{ This script has to be used with Pattern Class 6 and Drill Class C }
{....................................................................}
Procedure FindAnnularRingClass6C;
Var
Board : IPCB_Board;
Track : IPCB_Track;
Pad : IPCB_Pad;
Via : IPCB_Via;
ViaIteratorHandle : IPCB_BoardIterator;
PadIteratorHandle : IPCB_BoardIterator;
TheLayerStack : IPCB_LayerStack;
ReportList : TStringList;
Tolerance : Float;
IAR : Float;
OAR : Float;
Via_Afm : Float;
Hole_Afm : Float;
Pad_AfmX : Float;
Pad_AfmY : Float;
Hole_Width : Float;
AnnularRing : Float;
Layer : TLayer;
ViaXPos : Float;
ViaYPos : Float;
PadXPos : Float;
PadYPos : Float;
PadXAnnularRing : Float;
PadYAnnularRing : Float;
PCBOriginX : Float;
PCBOriginY : Float;
NumOfLayers : Integer;
Begin
// Obtain the PCB document interface
Board := PCBServer.GetCurrentPCBBoard;
If Board = Nil Then Exit;
SetCursorBusy;
//Showmessage('Layer: ' + FloatToStr(Layer));
RunProcess('PCB:DeSelect');
//Create the list with reports
ReportList := TStringList.Create;
ReportList.Add('Inner and Outer Annular Ring violations report:');
ReportList.Add('_______________________________________________');
ReportList.Add('');
ReportList.Add('VIAS');
ReportList.Add('');
// PHD = finished hole size + 0.100mm for via's (no more difference for holes <= 0.45 mm)
// IAR = 1/2 * (Inner pad diameter - PHD)
// OAR = 1/2 * (Outer pad diameter - PHD)
// ToleranceS is Tolerance for holes Smaller then 0.45mm -- not valid
// ToleranceL is Tolerance for holes Larger then 0.45mm -- not valid
Tolerance := 0.10;
OAR := 0.125;
IAR := 0.125;
//Obtain the PCB Current Origin, needed for X and Y coordinates
PCBOriginX := CoordToMMs(Board.XOrigin);
PCBOriginY := CoordToMMs(Board.YOrigin);
// VIAS
ViaIteratorHandle := Board.BoardIterator_Create;
ViaIteratorHandle.AddFilter_ObjectSet(MkSet(eViaObject));
ViaIteratorHandle.AddFilter_LayerSet(AllLayers);
ViaIteratorHandle.AddFilter_Method(eProcessAll);
Via := ViaIteratorHandle.FirstPCBObject;
TheLayerStack := Board.LayerStack;
NumOfLayers := TheLayerStack.SignalLayerCount;
While Via <> Nil Do
Begin
Via.Selected := true;
ViaXPos := CoordToMMs(Via.X) - PCBOriginX;
ViaYPos := CoordToMMs(Via.Y) - PCBOriginY;
// eTopLayer is 1 ; eBottomLayer is 32
For Layer := eTopLayer to eBottomLayer Do
Begin
If (Layer = 1) or (Layer = 32) Then
Begin
Hole_Afm := CoordToMMs(Via.Holesize);
Via_Afm := CoordToMMs(Via.SizeOnLayer[Layer]);
If (Via_Afm <> 0) Then
Begin
AnnularRing := (Via_afm - Tolerance - Hole_Afm)/2;
If (AnnularRing < OAR) Then
Begin
ReportList.Add('OAR Violation for Via on ' +
Layer2String(Layer) +
' on location: ' +
FloatToStr(ViaXPos) +
',' +
FloatToStr(ViaYPos) +
' ; ' +
'Outer Annular Ring ' +
FloatToStr(AnnularRing) +
' is smaller dan OAR Rule: ' +
FloatToSTr(OAR));
End;
End;
End
Else
Begin
If Layer < NumOfLayers Then
Begin
Hole_Afm := CoordToMMs(Via.Holesize);
Via_Afm := CoordToMMs(Via.SizeOnLayer[Layer]);
If (Via_Afm <> 0) Then
Begin
AnnularRing := (Via_afm - Tolerance - Hole_Afm)/2;
If (AnnularRing < IAR) Then
Begin
ReportList.Add('IAR Violation for Via on ' +
Layer2String(Layer) +
' on location: ' +
FloatToStr(ViaXPos) +
',' +
FloatToStr(ViaYPos) +
' ; ' +
'Inner Annular Ring ' +
FloatToStr(AnnularRing) +
' is smaller dan IAR Rule: ' +
FloatToSTr(IAR));
End;
End;
End;
End;
End;
Via.Selected := false;
Via := ViaIteratorHandle.NextPCBObject;
End;
Board.BoardIterator_Destroy(ViaIteratorHandle);
ReportList.Add('');
ReportList.Add('PADS:');
ReportList.Add('');
// PADS
PadIteratorHandle := Board.BoardIterator_Create;
PadIteratorHandle.AddFilter_ObjectSet(MkSet(ePadObject));
PadIteratorHandle.AddFilter_LayerSet(AllLayers);
PadIteratorHandle.AddFilter_Method(eProcessAll);
Pad := PadIteratorHandle.FirstPCBObject;
While Pad <> Nil Do
Begin
Pad.Selected := true;
PadXPos := CoordToMMs(Pad.X) - PCBOriginX;
PadYPos := CoordToMMs(Pad.Y) - PCBOriginY;
Hole_Width := 0.0;
For Layer := MinLayer to MaxLayer Do
Begin
if (Layer = 74) Then
Begin
Hole_Width := CoordToMMs(Pad.HoleSize);
End;
End;
if Hole_Width > 0 Then
Begin
// eTopLayer is 1 ; eBottomLayer is 32
For Layer := eTopLayer to eBottomLayer Do
Begin
If (Layer = 1) or (Layer = 32) Then
Begin
Pad_AfmX := CoordToMMs(Pad.XSizeOnLayer[Layer]);
Pad_AfmY := CoordToMMs(Pad.YSizeOnLayer[Layer]);
If (Pad_AfmX <> 0) And (Pad_AfmY <> 0) Then
Begin
PadXAnnularRing := (Pad_afmX - Tolerance - Hole_Width)/2;
If (PadXAnnularRing < OAR) Then
Begin
ReportList.Add('OAR Violation for Pad-X on ' +
Layer2String(Layer) +
' on location: ' +
FloatToStr(PadXPos) +
',' +
FloatToStr(PadYPos) +
' ; ' +
'Outer Annular Ring ' +
FloatToStr(PadXAnnularRing) +
' is smaller dan OAR Rule: ' +
FloatToSTr(OAR));
End;
PadYAnnularRing := (Pad_afmY - Tolerance - Hole_Width)/2;
If (PadYAnnularRing < OAR) Then
Begin
ReportList.Add('OAR Violation for Pad-Y on ' +
Layer2String(Layer) +
' on location: ' +
FloatToStr(PadXPos) +
',' +
FloatToStr(PadYPos) +
' ; ' +
'Outer Annular Ring ' +
FloatToStr(PadYAnnularRing) +
' is smaller dan OAR Rule: ' +
FloatToSTr(OAR));;
End;
End;
End
Else
Begin
If Layer < NumOfLayers Then
Begin
Pad_AfmX := CoordToMMs(Pad.XSizeOnLayer[Layer]);
Pad_AfmY := CoordToMMs(Pad.YSizeOnLayer[Layer]);
If (Pad_AfmX <> 0) And (Pad_AfmY <> 0) Then
Begin
PadXAnnularRing := (Pad_afmX - Tolerance - Hole_Width)/2;
If (PadXAnnularRing < IAR) Then
Begin
ReportList.Add('IAR Violation for Pad-X on ' +
Layer2String(Layer) +
' on location: ' +
FloatToStr(PadXPos) +
',' +
FloatToStr(PadYPos) +
' ; ' +
'Inner Annular Ring ' +
FloatToStr(PadXAnnularRing) +
' is smaller dan IAR Rule: ' +
FloatToSTr(IAR));
End;
PadYAnnularRing := (Pad_afmY - Tolerance - Hole_Width)/2;
If (PadYAnnularRing < IAR) Then
Begin
ReportList.Add('IAR Violation for Pad-Y on ' +
Layer2String(Layer) +
' on location: ' +
FloatToStr(PadXPos) +
',' +
FloatToStr(PadYPos) +
' ; ' +
'Inner Annular Ring ' +
FloatToStr(PadYAnnularRing) +
' is smaller dan IAR Rule: ' +
FloatToSTr(IAR));
End;
End;
End;
End;
End;
End;
Pad.Selected := false;
Pad := PadIteratorHandle.NextPCBObject;
End;
ReportList.SaveToFile('C:\TEMP\AnnularRing.txt');
ReportList.Free;
Showmessage('Output completed. See C:\TEMP\AnnularRing.txt for results.');
Board.BoardIterator_Destroy(PadIteratorHandle);
ResetCursor;
End;
{..............................................................................}