mirror of https://github.com/openXC7/prjxray.git
Merge pull request #844 from litghost/fix_units_factor
Correct units factor on resistances.
This commit is contained in:
commit
8aa8edddc6
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue