File: resistance.py

package info (click to toggle)
python-measurement 3.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 332 kB
  • sloc: python: 1,402; makefile: 13
file content (16 lines) | stat: -rw-r--r-- 216 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from measurement.base import MeasureBase


__all__ = [
    'Resistance'
]


class Resistance(MeasureBase):
    STANDARD_UNIT = 'ohm'
    UNITS = {
        'ohm': 1.0,
    }
    ALIAS = {
    }
    SI_UNITS = ['ohm']