-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update vrf classes #344
update vrf classes #344
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,71 @@ | |
}, | ||
}, | ||
"Steam_System": {"tags": [TAG.Steam, TAG.System]}, | ||
"Refrigerant_System": { | ||
"tags": [TAG.Fluorocarbon_Refrigerant, TAG.Hydrocarbon_Refrigerant, TAG.System], | ||
"subclasses": { | ||
"Single_Split_System": { | ||
"tags": [ | ||
TAG.Fluorocarbon_Refrigerant, | ||
TAG.Hydrocarbon_Refrigerant, | ||
TAG.Heat, | ||
TAG.Cool, | ||
TAG.System, | ||
TAG.Indoor_Unit, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These Units do not have to be part of the system's tags, especially given that the tags are "necessary" conditions for the class. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Units may be a part of the system, but it doesn't mean that it has to be the tags for the system class. |
||
TAG.Outdoor_Unit | ||
], | ||
}, | ||
"Multi_Split_System": { | ||
"tags": [ | ||
TAG.Fluorocarbon_Refrigerant, | ||
TAG.Hydrocarbon_Refrigerant, | ||
TAG.Heat, | ||
TAG.Cool, | ||
TAG.System, | ||
TAG.Indoor_Unit, | ||
TAG.Outdoor_Unit, | ||
TAG.Mode_Switch_Box | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to units in the previous comment. Mode_Switch_Box may be |
||
], | ||
}, | ||
"VRF_System": { | ||
"tags": [ | ||
TAG.Fluorocarbon_Refrigerant, | ||
TAG.Hydrocarbon_Refrigerant, | ||
TAG.Heat, | ||
TAG.Cool, | ||
TAG.System, | ||
TAG.Indoor_Unit, | ||
TAG.Outdoor_Unit, | ||
TAG.Mode_Switch_Box], | ||
"subclasses":{ | ||
"VRF_Heat_Pump_System": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I feel this is |
||
"tags": [ | ||
TAG.Fluorocarbon_Refrigerant, | ||
TAG.Hydrocarbon_Refrigerant, | ||
TAG.Heat, | ||
TAG.Cool, | ||
TAG.System, | ||
TAG.Indoor_Unit, | ||
TAG.Outdoor_Unit, | ||
TAG.Mode_Switch_Box | ||
], | ||
}, | ||
"VRF_Heat_Recovery_System": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same for this, would it be a piece of |
||
"tags": [ | ||
TAG.Fluorocarbon_Refrigerant, | ||
TAG.Hydrocarbon_Refrigerant, | ||
TAG.Heat, | ||
TAG.Cool, | ||
TAG.System, | ||
TAG.Indoor_Unit, | ||
TAG.Outdoor_Unit, | ||
TAG.Mode_Switch_Box | ||
], | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"Water_System": { | ||
"tags": [TAG.Water, TAG.System], | ||
"subclasses": { | ||
|
@@ -63,7 +128,7 @@ | |
"tags": [ | ||
TAG.Hot, | ||
TAG.Water, | ||
TAG.System, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove empty space |
||
TAG.Preheat, | ||
TAG.System, | ||
] | ||
|
@@ -72,7 +137,7 @@ | |
"tags": [ | ||
TAG.Hot, | ||
TAG.Water, | ||
TAG.System, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove empty space |
||
TAG.Reheat, | ||
TAG.System, | ||
] | ||
|
@@ -81,7 +146,7 @@ | |
"tags": [ | ||
TAG.Hot, | ||
TAG.Water, | ||
TAG.System, | ||
TAG.Radiation, | ||
TAG.System, | ||
] | ||
|
@@ -90,7 +155,7 @@ | |
"tags": [ | ||
TAG.Hot, | ||
TAG.Water, | ||
TAG.System, | ||
TAG.Heat, | ||
TAG.Recovery, | ||
TAG.System, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this case, the tags should be just "Refrigerant" instead of the types of refrigerant. The tags are "necessary" conditions but in my understanding those refrigerant are may or may not be used together.