From 6be6fd918b8db5bef5c0e8f24389544377b77679 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Tue, 21 May 2019 07:13:23 -0700 Subject: [PATCH] Correct units factor on resistances. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- prjxray/tile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prjxray/tile.py b/prjxray/tile.py index 4ca5a702..380bc1bb 100644 --- a/prjxray/tile.py +++ b/prjxray/tile.py @@ -134,7 +134,7 @@ class SitePin(namedtuple('SitePin', 'name wire timing')): WireInfo = namedtuple('WireInfo', 'pips sites') # Conversion factor from database to internal units. -RESISTANCE_FACTOR = 1 +RESISTANCE_FACTOR = 1e3 CAPACITANCE_FACTOR = 1e3