Merge pull request #844 from litghost/fix_units_factor

Correct units factor on resistances.
This commit is contained in:
litghost 2019-05-21 07:15:09 -07:00 committed by GitHub
commit 8aa8edddc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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