How to add tear drop in kicad?

When I wrote this script, I only tested it against Ubuntu 14.04 with python 2.7.

I don’t have any solution right now but I will install kicad inside a virtual machine and try to reproduce your problem.

I use teardrops to protect me against drill imprecision.

If the drill is made too close to the track, the remaining conductive material might be too small to be remain functional.

See this blog entry for more details.
https://blog.elphel.com/2015/04/trying-out-kicad/

Teardrops allow you to add conductive material to prevent that problem. This actually a problem of confidence in your PCB manufacturer. If you impose the right drill tolerance to your manufacturer, you don’t need teardrops. But if you need to save some money on the PCB, reducing drill tolerance can be one solution. And then teardrops are a simple protective method.

By the way, my script is just a quick (and dirty) hack. I recently seen this (and hoping it will be integrated quickly):

3 Likes

do you drill yourself by hand ?

if you use a fab house they wont miss
if they fear they will, they add the tear-drops (after asking you of-course if its OK)

standard via

0.25mm drill bit
0.45mm pad

no problem whatsoever

Good guess!
I wrote this script for a hand made PCB.

At my current company, we are designing very high density PCB (over 12 layers with very highly controled tolerances) and we never needed any teardrop and all is working like a charm.

1 Like

After some (quick) research, I don’t think this is due to the td script. I think you can reproduce it just by importing pcbnew by typing :
from pcbnew import *

it seams that this is due to a mismatch between python’s version and kicad’s version. Both need to be equal (both 32bit or both 64bit).

See the second answer to on this post:

I hope this will help.

1 Like

Uh…

And the via settings in that case were 0.6/0.4

Never say never.

In that second image even a teardrop wouldn’t help (nor would it help in the first image for that matter). It all goes back to the matter of the setup and competency of the fab.

You can build kicad from my source mirror https://github.com/sethhillbrand/kicad-source-mirror/tree/teardrops-wip to use teardrops. This is an updated version of Mikhail Karpenko’s teardrops code, which was sadly out of date.

1 Like

Have you planned to push in the main tree?
This would be awesome.

1 Like

Sneaky peak from the strictly unofficial, “you ain’t seen me” smoke filled backrooms

hopefully makes it to official KiCad one day.

5 Likes

hi!

which version is this? I would like to try it!

@Niluje - I’ve linked the repo to the bug report at https://bugs.launchpad.net/kicad/+bug/593972 Dealing with launchpad is not my cup of tea, so figuring out the pull request system is lower on my priority list. Sorry!

Ever design flex circuits?

13 pcs in 2017, not counting the flex-rigid ones.

2 Likes

Do you not find teardrops useful there? My boardhouse highly recommends them for the same reason you don’t use 90deg bends: stress concentrators.

A few resources:
http://www.epectec.com/flex/design/
www.aetpcb.com/aet/net_resources/help/Flexible_Circuit_Design_Guide.pdf

Even though it is 2018, I still think teardrops can be useful, and KiCad would benefit from their inclusion.

Flexis are a special case that really benefit from tear dropping.
They are very common in professional and military radios

1 Like

Good to know there is more applications for teardrops, I use it mostly because of his anesthetic, also the curved traces. The person who makes that video also makes his code public, here: https://github.com/heikkipu/kicad-devel
I hope more people find this useful and more can collaborate with the code :slight_smile: (a thing I’m far to be able to do)

Wow, impressive.

  • how much of that (teardrops, curves, via stitching) made it into the V5 rc ?

Via stitching


these features were ‘available’ since about three years ago…
Round Corners & SolderMask clearance


Stitching Vias

Via Fencing

and without any changes in kicad_pcb format (then compatible with v5 pcbnew format)

3 Likes