Skip to content

Commit

Permalink
fix(alias): Update Aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-p-may committed Nov 13, 2022
1 parent 707af27 commit ae2936d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ph_units/unit_types/energy.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class KBtuPerFootSquared(Base_UnitType):
"""KBTU/FT2"""

__symbol__ = "KBTU/FT2"
__aliases__ = []
__aliases__ = ["KBTU/SF"]
__factors__ = {
"SI": "{}*3.15459",
"WH/M2": "{}*3154.59",
Expand All @@ -72,7 +72,7 @@ class BtuPerFootSquared(Base_UnitType):
"""BTU/FT2"""

__symbol__ = "BTU/FT2"
__aliases__ = []
__aliases__ = ["BTU/SF"]
__factors__ = {
"SI": "{}*0.00315459",
"WH/M2": "{}*3.15459",
Expand Down
10 changes: 5 additions & 5 deletions ph_units/unit_types/envelope.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class WattsPerMeterSquaredKelvin(Base_UnitType):
"""W/M2K (U-Value)"""

__symbol__ = "W/M2K"
__aliases__ = []
__aliases__ = ["U-SI"]
__factors__ = {
"SI": "{}*1",
"W/M2K": "{}*1",
Expand All @@ -22,7 +22,7 @@ class BtuPerHourFootSquaredFahrenheit(Base_UnitType):
"""BTU/HR-FT2-F (U-Value)"""

__symbol__ = "BTU/HR-FT2-F"
__aliases__ = []
__aliases__ = ["U-IP", "BTU/HR-SF-F", "BTU/H-SF-F"]
__factors__ = {
"SI": "{}*5.678264134",
"W/M2K": "{}*5.678264134",
Expand All @@ -36,7 +36,7 @@ class MeterSquaredKelvinPerWatt(Base_UnitType):
"""M2K/W (R-Value)"""

__symbol__ = "M2K/W"
__aliases__ = []
__aliases__ = ["R-SI"]
__factors__ = {
"SI": "{}*1",
"M2K/W": "{}*1",
Expand All @@ -50,7 +50,7 @@ class HourFootSquaredFahrenheitPerBtu(Base_UnitType):
"""HR-FT2-F/BTU (R-Value)"""

__symbol__ = "HR-FT2-F/BTU"
__aliases__ = []
__aliases__ = ["R-IP", "H-SF-F/BTU", "HR-SF-F/BTU"]
__factors__ = {
"SI": "1/((1/{})*5.678264134)",
"M2K/W": "1/((1/{})*5.678264134)",
Expand All @@ -64,7 +64,7 @@ class HourFootSquaredFahrenheitPerBtuInch(Base_UnitType):
"""HR-FT2-F/BTU-IN (R-per-inch)"""

__symbol__ = "HR-FT2-F/BTU-IN"
__aliases__ = []
__aliases__ = ["R/IN", "R-IN", "H-SF-F/BTU-IN"]
__factors__ = {
"SI": "{}*1.730734908",
"W/MK": "(1/({}*12))*1.730734908",
Expand Down
2 changes: 1 addition & 1 deletion ph_units/unit_types/power.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class BtuPerHourFootSquared(Base_UnitType):
"""BTU/HR-FT2"""

__symbol__ = "BTU/HR-FT2"
__aliases__ = []
__aliases__ = ["BTUH/FT2", "BTU/H-SF", "BTU/H-FT2"]
__factors__ = {
"SI": "{}*3.154591186",
"W/M2": "{}*3.154591186",
Expand Down
2 changes: 1 addition & 1 deletion ph_units/unit_types/speed.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MeterPerSecond(Base_UnitType):
"""Meter/Second"""

__symbol__ = "M/S"
__aliases__ = []
__aliases__ = ["METER/SEC", "METER/SECOND", "M/SECOND"]
__factors__ = {
"SI": "{}*1",
"M/S": "{}*1",
Expand Down
2 changes: 1 addition & 1 deletion ph_units/unit_types/volume_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class MeterCubedPerHour(Base_UnitType):
"""M3/HR"""

__symbol__ = "M3/HR"
__aliases__ = ["FT3/H", "FT3H"]
__aliases__ = ["CM/H", "CMH"]
__factors__ = {"SI": "{}*1", "M3/HR": "{}*1", "CFM": "{}*0.588577779"}


Expand Down

0 comments on commit ae2936d

Please sign in to comment.