-
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.
Browse files
Browse the repository at this point in the history
Co-authored-by: Larissa Kühn <[email protected]> Co-authored-by: fabian.wuellhorst <[email protected]> Co-authored-by: David Jansen <[email protected]>
- Loading branch information
1 parent
c3c8b15
commit c264147
Showing
219 changed files
with
3,462 additions
and
3,094 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Case1Standard | ||
PartialCase | ||
BESParameters | ||
Buildings | ||
Case1Standard |
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 was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
BESMod/Examples/MyOwnHeatingRodEfficiencyStudy/SimpleStudyOfHeatingRodEfficiency.mo
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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,30 @@ | ||
within BESMod.Examples.SolarThermalSystem; | ||
model SolarThermalAixLib "Solar thermal collector from AixLib" | ||
extends BESMod.Examples.SolarThermalSystem.PartialSolarThermalHPS(redeclare | ||
model hydGeneration = | ||
BESMod.Systems.Hydraulical.Generation.SolarThermalBivHPAixLib ( | ||
redeclare model PerDataMainHP = | ||
AixLib.DataBase.HeatPump.PerformanceData.VCLibMap (refrigerant= | ||
"Propane", flowsheet="VIPhaseSeparatorFlowsheet"), | ||
redeclare | ||
BESMod.Systems.Hydraulical.Generation.RecordsCollection.DefaultHP | ||
heatPumpParameters(genDesTyp=BESMod.Systems.Hydraulical.Generation.Types.GenerationDesign.BivalentParallel), | ||
|
||
redeclare | ||
BESMod.Systems.Hydraulical.Generation.RecordsCollection.DefaultHR | ||
heatingRodParameters, | ||
redeclare BESMod.Systems.RecordsCollection.Movers.DefaultMover pumpData, | ||
|
||
redeclare package Medium_eva = AixLib.Media.Air, | ||
redeclare BESMod.Examples.SolarThermalSystem.SolarCollector | ||
solarThermalParas( | ||
final A=parameterStudy.A, | ||
final eta_zero=parameterStudy.eta_zero, | ||
final c1=parameterStudy.c1, | ||
final c2=parameterStudy.c2), | ||
redeclare BESMod.Systems.RecordsCollection.Movers.DefaultMover | ||
pumpSTData)); | ||
|
||
extends Modelica.Icons.Example; | ||
|
||
end SolarThermalAixLib; |
29 changes: 29 additions & 0 deletions
29
BESMod/Examples/SolarThermalSystem/SolarThermalBuildings.mo
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,29 @@ | ||
within BESMod.Examples.SolarThermalSystem; | ||
model SolarThermalBuildings | ||
"HPS which is supported by a solar thermal collector" | ||
extends BESMod.Examples.SolarThermalSystem.PartialSolarThermalHPS( | ||
redeclare model hydGeneration = | ||
BESMod.Systems.Hydraulical.Generation.SolarThermalBivHPBuiLib ( | ||
redeclare model PerDataMainHP = | ||
AixLib.DataBase.HeatPump.PerformanceData.VCLibMap (refrigerant="Propane", | ||
flowsheet="VIPhaseSeparatorFlowsheet"), | ||
redeclare | ||
BESMod.Systems.Hydraulical.Generation.RecordsCollection.DefaultHP | ||
heatPumpParameters(genDesTyp=BESMod.Systems.Hydraulical.Generation.Types.GenerationDesign.BivalentParallel), | ||
redeclare | ||
BESMod.Systems.Hydraulical.Generation.RecordsCollection.DefaultHR | ||
heatingRodParameters, | ||
redeclare BESMod.Systems.RecordsCollection.Movers.DefaultMover pumpData, | ||
redeclare package Medium_eva = AixLib.Media.Air, | ||
redeclare BESMod.Examples.SolarThermalSystem.SolarCollector | ||
solarThermalParas( | ||
final A=parameterStudy.A, | ||
final eta_zero=parameterStudy.eta_zero, | ||
final c1=parameterStudy.c1, | ||
final c2=parameterStudy.c2), | ||
redeclare BESMod.Systems.RecordsCollection.Movers.DefaultMover | ||
pumpSTData)); | ||
|
||
extends Modelica.Icons.Example; | ||
|
||
end SolarThermalBuildings; |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
BESMod/Examples/SolarThermalSystem/SolarThermalSystemParameters.mo
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
within BESMod.Examples.SolarThermalSystem; | ||
record SolarThermalSystemParameters | ||
extends BESMod.Examples.UseCaseAachen.AachenSystem; | ||
extends BESMod.Examples.UseCaseDesignOptimization.AachenSystem; | ||
|
||
end SolarThermalSystemParameters; |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
SolarThermalHPS | ||
PartialSolarThermalHPS | ||
SolarThermalAixLib | ||
SolarThermalBuildings | ||
SolarThermalSystemParameters | ||
SolarThermalDesignOptimization | ||
CombiStorage | ||
SolarCollector | ||
SolarThermalHPSBuildingsLib |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.