-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
154 changed files
with
8,010 additions
and
7,507 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
components: | ||
- component_template: | ||
bus: | ||
integer_outputs: | ||
- component: fanSup | ||
name: u1SupFan | ||
port: y_actual | ||
target: element.name | ||
real_inputs: | ||
- component: fanSup1 | ||
input_model: '' | ||
name: ySupFan | ||
port: y | ||
target: element.name | ||
- component: fanSup | ||
input_model: '' | ||
name: ySupFan | ||
port: y | ||
target: element.name | ||
- component: damRet | ||
input_model: '' | ||
name: yRetDam | ||
port: y | ||
target: element.name | ||
- component: damOut | ||
input_model: '' | ||
name: yOutDam | ||
port: y | ||
target: element.name | ||
- component: damExh | ||
input_model: '' | ||
name: yOutDam | ||
port: y | ||
target: element.name | ||
real_outputs: | ||
- component: TOut | ||
input_model: '' | ||
name: TOut | ||
port: T | ||
target: element.control.name | ||
- component: VOut1 | ||
input_model: '' | ||
name: VAirOut_flow | ||
port: V_flow | ||
target: element.control.name | ||
- component: TSup | ||
input_model: '' | ||
name: TAirSup | ||
port: T | ||
target: element.control.name | ||
- component: TMix | ||
input_model: '' | ||
name: TAirMix | ||
port: T | ||
target: element.control.name | ||
- component: dpDisSupFan | ||
input_model: '' | ||
name: dpDuc | ||
port: p_rel | ||
target: element.control.name | ||
category: ventilation | ||
template: "\n model Ahu{{ element.name | capitalize}}\n extends {{ package_name\ | ||
\ }}.Common.Fluid.Ventilation.PartialAhu;\n {{bus_template}}\n equation\n\ | ||
\ {{bus_ports | safe}}\n end Ahu{{ element.name | capitalize}};\n \ | ||
\ " | ||
ports: | ||
- flow: inlet | ||
multi_connection: true | ||
names: | ||
- port_a | ||
targets: | ||
- System | ||
- Space | ||
use_counter: false | ||
- flow: outlet | ||
multi_connection: true | ||
names: | ||
- port_b | ||
targets: | ||
- System | ||
- Space | ||
use_counter: false | ||
- names: | ||
- ports | ||
targets: | ||
- BaseBoundary | ||
- names: | ||
- dataBus | ||
targets: | ||
- AhuControl | ||
template: "{{package_name}}.Common.Fluid.\n Ventilation.Ahu{{ element.name |\ | ||
\ capitalize}}\n {{ element.name }}\n (redeclare package MediumA = Medium,\n\ | ||
\ {% raw %}\n VRoo={100,100},\n AFlo={20,20},\n mCooVAV_flow_nominal={0.01,0.01}{%\ | ||
\ endraw %})" | ||
variant: default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
ideas: | ||
- template: | | ||
{{package_name}}.Common.Fluid.Boilers. | ||
BoilerWithStorage{{ element.name | capitalize}} {{ element.name }}( | ||
{{ macros.render_parameters(parameters) | safe}}, | ||
redeclare package MediumW = MediumW) "Boiler" | ||
ports: | ||
- targets: | ||
- Control | ||
- DataBus | ||
names: | ||
- dataBus | ||
multi_connection: True | ||
use_counter: False | ||
- names: | ||
- port_a | ||
flow: inlet | ||
multi_connection: True | ||
use_counter: False | ||
- names: | ||
- port_b | ||
flow: outlet | ||
multi_connection: True | ||
use_counter: False | ||
component_template: | ||
template: | | ||
model BoilerWithStorage{{ element.name | capitalize}} | ||
extends {{ package_name }}.Common.Fluid.Boilers.PartialBoilerWithStorage; | ||
{{bus_template}} | ||
equation | ||
{{bus_ports | safe}} | ||
end BoilerWithStorage{{ element.name | capitalize}}; | ||
category: boiler | ||
bus: | ||
real_inputs: | ||
- name: yBoiCon | ||
target: element.name | ||
component: Boiy | ||
port: y | ||
- name: yPumBoi | ||
target: element.name | ||
component: pumBoi | ||
port: y | ||
real_outputs: | ||
- name: TStoBot | ||
target: element.name | ||
component: tanTemBot | ||
port: T | ||
- name: TStoTop | ||
target: element.name | ||
component: tanTemTop | ||
port: T |
Oops, something went wrong.