X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=OAH6Qwu9IxK5olA+nFpqVpvDTNslNp2XDSB1ERj9Ic4=; b=envTiXTnTAQJrejkMrQYbNCdkC51F1sw2Si6JthasmCMhMpj4rf2iwVPaXw2EOsVZ8 TXxDSBUCLQYOjupdiJA+aF6/JDLrljLmi3hCFQFfScxJ2Rwio0QwNwJK/9g7P0coviIs 7pNEZ4AZyW9NLOxhPnixjMWo4axbFSg+/tvKVSq3R6uW7bVFjtzvptvI12CfI0uzUHdL R+xgq28feQ36msJbL5EibbAjEWeDSTGQMie2ic/ZZ4KQmqkUcvSiROvIZV4pOFAKnU+p B3691yVI7zP0zXislQr0boO2kfXY24vzAJmdgGLlxxEO2xiVJX3p5asXOZT98c/R4raf 9Qhg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=OAH6Qwu9IxK5olA+nFpqVpvDTNslNp2XDSB1ERj9Ic4=; b=GfDSGJT80aTYvc4XmYmZgc96k+LFmZTRhBhZrhMnsdlpW09janScNFWiuQAVqBGpkq ZgVZTzgfV1GI1dwK7rBPzVJfSfRc/ay6yMrNTLCsSbKcFFTo2YOwqI0HB3jL3xwiyLnA LT9ZOHfSW4rQr/wTpPcz0/QSEF45vT09R2PQ0TWx47ZyjBbeESJJ09dHtTOiW+gaP4L/ ga4ILIeNq52ToZuC4gEGkhoeMTXpwq6U/+7oN5gRVhLNEdLtz3+zFa2TjcalVjh2d2oI Isq3D6rk2kQCImbQlq2oxUx3bPh/MKJpjOPOASsoxll4x2viETK75p7mKWLo2qsI/Gzt vThA== X-Gm-Message-State: AOPr4FVWSVdUTq+3YCUtsFmyDvkEpUNGz2A4MYxLEQ/AngH4jaue5Xn38RnASlwwmEO7Lw== X-Received: by 10.28.126.145 with SMTP id z139mr1851319wmc.81.1463124182744; Fri, 13 May 2016 00:23:02 -0700 (PDT) Date: Fri, 13 May 2016 09:22:57 +0200 From: "Nicklas Karlsson (nicklas DOT karlsson17 AT gmail DOT com) [via geda-user AT delorie DOT com]" To: geda-user AT delorie DOT com Subject: Re: [geda-user] Differential pair support Message-Id: <20160513092257.f5f93f21367e78d2b06245cd@gmail.com> In-Reply-To: References: X-Mailer: Sylpheed 3.5.0beta1 (GTK+ 2.24.25; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk It's not that hard, perfect! Then eventually I get enough time to work on different clearances for different nets internet is full of differential line impedance calculators and this could be added to. I guess more than two might be useful then drawing buses but it is more important to get into use. Regards Nicklas Karlsson On Fri, 13 May 2016 14:58:08 +1000 "Stephen Ecob (stephen DOT ecob AT sioi DOT com DOT au) [via geda-user AT delorie DOT com]" wrote: > Here's a basic implementation of differential pair support. > > The code in "differential.c" needs to be placed inside action.c > > The code is run by typing > > :MakeDifferential(TargetWidth,gap) > > where TargetWidth is the width of lines to transform and gap is the > thickness of the gap to insert. > > The pictures show a 19 mil trace that is transformed into a > differential pair with thickness 7 mil and gap 5 mil. This was done > by typing > > :MakeDifferential(19mil,5mil) > > Caveats: > > * Doesn't support undo properly. Back up your work before running. > > * Doesn't work well with straight line intersections, it creates gaps > and overhangs at the intersections. The workaround is to use arcs for > changing direction, as it handles line to arc intersections > beautifully. > > Enjoy!