-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
example_process.txt
218 lines (204 loc) · 3.33 KB
/
example_process.txt
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
# Process configuration file for gds2pov
#
# Lines starting with a # are comments.
#
# This file describes a made up p-sub, single well 4 layer metal CMOS process.
#
# This file consists of Layer entries in the following format:
#
# LayerStart: LayerName
# Layer: LayerNumber (integer)
# Datatype: (integer)
# Height: (float) - See NOTE below
# Thickness: (float) - See NOTE below
# Red: (float, between 0,1 with 1 being full)
# Green: (float, between 0,1 with 1 being full)
# Blue: (float, between 0,1 with 1 being full)
# Filter: (float, between 0,1 with 1 being full)
# Metal: (boolean, 0 or 1)
# Show: (boolean, 0 or 1)
# LayerEnd
#
# Filter defines the transparency of the layer, with 1 being the most
# transparent. It actually works for values greater than 1, but the povray
# documentation states that it is limited to 1 so don't rely on it.
#
# Metal, when set to 1, will make the layer slightly reflective.
# Show defines whether the layer is shown or not.
#
# The only compulsory items are LayerStart, Layer and LayerEnd. If any value is ommitted, the default
# will be used. The defaults are:
#
# Datatype: -1 (meaning all datatypes for this layer)
# Height: 0
# Thickness: 0 (thickness of 0 means the layer will not be shown)
# Red: 0.0
# Green: 0.0
# Blue: 0.0
# Filter: 0.0
# Metal: 0
# Show: 0 (do *not* show by default)
#
#
# If any layer is not listed in this file it will be ignored in the gds2 file.
#
# NOTE
# ====
#
# The numbers given here for Height and Thickness are specified in DB units. This is defined in your GDS2 file
# (not the process!), which is why the Height and Thickness must use them. To find the DB units for your GDS2
# file, just run the file through GDS2POV and it will provide the information.
LayerStart: NTUB
Layer: 1
Height: -2000
Thickness: 2000
Red: 0
Green: 0
Blue: 1
Filter: 0.2
Metal: 0
Show: 1
LayerEnd
LayerStart: DIFF
Layer: 2
Height: 10
Thickness: 10
Red: 0
Green: 1
Blue: 1
Filter: 0
Metal: 0
Show: 1
LayerEnd
LayerStart: POLY
Layer: 3
Height: 50
Thickness: 300
Red: 1
Green: 1
Blue: 0
Filter: 0
Metal: 0
Show: 1
LayerEnd
LayerStart: NPLUS
Layer: 4
Height: -200
Thickness: 210
Red: 0.5
Green: 0.25
Blue: 0
Filter: 0
Metal: 0
Show: 1
LayerEnd
LayerStart: PPLUS
Layer: 5
Height: -205
Thickness: 210
Red: 1
Green: 0
Blue: 1
Filter: 0
Metal: 0
Show: 1
LayerEnd
LayerStart: CONT
Layer: 6
Height: 10
Thickness: 990
Red: 0
Green: 1
Blue: 0
Filter: 0
Metal: 0
Show: 1
LayerEnd
LayerStart: MET1
Layer: 7
Height: 990
Thickness: 1010
Red: 1
Green: 0
Blue: 0
Filter: 0
Metal: 1
Show: 1
LayerEnd
LayerStart: VIA1
Layer: 8
Height: 1990
Thickness: 1010
Red: 1
Green: 0.75
Blue: 1
Filter: 0
Metal: 0
Show: 1
LayerEnd
LayerStart: MET2
Layer: 9
Height: 2990
Thickness: 1010
Red: 1
Green: 0.75
Blue: 0
Filter: 0
Metal: 1
Show: 1
LayerEnd
LayerStart: VIA2
Layer: 10
Height: 3990
Thickness: 1010
Red: 1
Green: 0.5
Blue: 0.5
Filter: 0
Metal: 0
Show: 1
LayerEnd
LayerStart: MET3
Layer: 11
Height: 4990
Thickness: 1010
Red: 0
Green: 0.5
Blue: 0.5
Filter: 0
Metal: 1
Show: 1
LayerEnd
LayerStart: VIA3
Layer: 12
Height: 5990
Thickness: 1010
Red: 1
Green: 0.75
Blue: 0.75
Filter: 0
Metal: 0
Show: 1
LayerEnd
LayerStart: MET4
Layer: 13
Height: 6990
Thickness: 1010
Red: 0.75
Green: 0
Blue: 1
Filter: 0
Metal: 1
Show: 1
LayerEnd
LayerStart: TEXT
Layer: 14
Height: 8000
Thickness: 10
Red: 1
Green: 1
Blue: 1
Filter: 0
Metal: 0
Show: 1
LayerEnd