Compare commits
1 Commits
9918d2b064
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9f4ce14d35 |
@@ -101,7 +101,7 @@ module params() {
|
||||
str("leg_length : ", leg_length),
|
||||
str("leg_angle : ", leg_angle),
|
||||
str("size : ", size),
|
||||
str("feat. size (mm): ", (c/freq)*1e3),
|
||||
str("feat. size (mm): ", (c/freq)*1e3 / 4),
|
||||
str("version : ", SCRIPT_VERSION)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -143,7 +143,7 @@ module params() {
|
||||
str("leg_length : ", leg_length),
|
||||
str("leg_angle : ", leg_angle),
|
||||
str("size : ", size),
|
||||
str("feat. size (mm): ", (c/freq)*1e3),
|
||||
str("feat. size (mm): ", (c/freq)*1e3 / 4),
|
||||
str("version : ", SCRIPT_VERSION)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -105,7 +105,7 @@ module params() {
|
||||
str("leg_length : ", leg_length),
|
||||
str("leg_angle : ", leg_angle),
|
||||
str("size : ", size),
|
||||
str("feat. size (mm): ", (c/freq)*1e3),
|
||||
str("feat. size (mm): ", (c/freq)*1e3 / 4),
|
||||
str("version : ", SCRIPT_VERSION)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -25,7 +25,11 @@ SCRIPT_VERSION="0.0.1";
|
||||
// this really just need to be any mon font
|
||||
FONT="Ubuntu Sans Mono:style=Regular";
|
||||
test_number = 1;
|
||||
|
||||
// scale in m
|
||||
// 1e3 : mm
|
||||
// 1e6 : um
|
||||
// 1e9 : nm
|
||||
scale_unit = 1e3;
|
||||
// ================= meta =================
|
||||
|
||||
@@ -101,7 +105,7 @@ module params() {
|
||||
str("leg_length : ", leg_length),
|
||||
str("leg_angle : ", leg_angle),
|
||||
str("size : ", size),
|
||||
str("feat. size (mm): ", (c/freq)*1e3),
|
||||
str("feat. size (mm): ", (c/freq)*1e3 / 4),
|
||||
str("version : ", SCRIPT_VERSION)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
{
|
||||
"parameterSets": {
|
||||
"frogs": {
|
||||
"$fa": "1",
|
||||
"$fs": "0.01",
|
||||
"FONT": "Ubuntu Sans Mono:style=Regular",
|
||||
"SCRIPT_VERSION": "0.0.1",
|
||||
"bond_pad_shape": "square",
|
||||
"c": "3992",
|
||||
"distance": "50",
|
||||
"finger_length": "60",
|
||||
"freq": "5e+7",
|
||||
"gap": "0",
|
||||
"has_id_number": "true",
|
||||
"id_text_size": "1",
|
||||
"idt_x_spacing": "10",
|
||||
"idt_y_spacing": "12.5",
|
||||
"info_block_offset_x": "7",
|
||||
"info_block_offset_y": "30",
|
||||
"info_block_scale": "0.3",
|
||||
"leg_angle": "10",
|
||||
"leg_length": "0.003",
|
||||
"leg_width": "0.00001875",
|
||||
"n_fingers": "50",
|
||||
"number_of_idts_per_quadrent": "4",
|
||||
"prop_text_size": "2.5",
|
||||
"scale_unit": "1000",
|
||||
"size": "0.002",
|
||||
"substrate": "LINBO",
|
||||
"test_number": "1",
|
||||
"thickness": "0",
|
||||
"title_text_size": "4",
|
||||
"wafer_size_inch": "4"
|
||||
}
|
||||
},
|
||||
"fileFormatVersion": "1"
|
||||
}
|
||||
@@ -89,7 +89,7 @@ module params() {
|
||||
str("leg_length : ", leg_length),
|
||||
str("leg_angle : ", leg_angle),
|
||||
str("size : ", size),
|
||||
str("feat. size (mm): ", (c/freq)*1e3),
|
||||
str("feat. size (mm): ", (c/freq)*1e3 / 4),
|
||||
str("version : ", SCRIPT_VERSION)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -47,7 +47,7 @@ scale_unit = 1e3;
|
||||
substrate = "SI";
|
||||
|
||||
// linbo
|
||||
// the aoucstice wave speed in the substrate
|
||||
// the acoustic wave speed in the substrate
|
||||
c = 3992.0;
|
||||
// si
|
||||
// c = 3159.0;
|
||||
@@ -144,7 +144,7 @@ module params() {
|
||||
str("leg_length : ", leg_length),
|
||||
str("leg_angle : ", leg_angle),
|
||||
str("size : ", size),
|
||||
str("feat. size (mm): ", (c/freq)*scale_unit),
|
||||
str("feat. size (mm): ", (c/freq)*1e3 / 4),
|
||||
str("version : ", SCRIPT_VERSION)
|
||||
]
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user