-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.corto
54 lines (35 loc) · 867 Bytes
/
model.corto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
in units
// -- BASE UNITS
quantity length = {}
unit metre: length, "m"
quantity mass = {}
unit gram: mass, "g"
quantity time = {}
unit second: time, "s"
quantity current = {}
unit ampere: current, "A"
quantity temperature = {}
unit kelvin: temperature, "K"
quantity amount_of_substance = {}
unit mole: amount_of_substance, "mol"
quantity luminosity = {}
unit candela: luminosity, "cd"
// -- DERIVED UNITS
quantity angle = {}
unit radian: angle, "rad"
quantity frequency = {}
unit hertz: frequency, "Hz"
quantity pressure = {}
unit pascal: pressure, "Pa"
quantity energy = {}
unit joule: energy, "J"
quantity power = {}
unit watt: power, "W"
quantity voltage = {}
unit volt: voltage, "V"
quantity force = {}
unit newtown: force, "N"
quantity resistance = {}
unit ohm: resistance, "O"
unit fahrenheit: temperature, "F"
unit celsius: temperature, "C"