Skip to content

Commit

Permalink
Merge pull request #1969 from ibpsa/issue1968_solarCollectorExample
Browse files Browse the repository at this point in the history
Removed assignment of parameter that no longer exits in SolarCollector example
  • Loading branch information
mwetter authored Feb 12, 2025
2 parents 6608f4d + 83f737a commit 725c9be
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ env:
- TEST_ARG="make test-openmodelica PACKAGE=\"IBPSA.{Examples,Experimental}\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.Fluid.{Actuators,BaseClasses,Chillers,Delays,Geothermal,Examples,FMI,FixedResistances}\""
- TEST_ARG="make test-openmodelica PACKAGE=\"IBPSA.Fluid.{Actuators,BaseClasses,Chillers,Delays,Geothermal,Examples,FMI,FixedResistances}\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.Fluid.{HeatExchangers,HeatPumps,Humidifiers,Interfaces,MassExchangers,MixingVolumes,Movers,Sensors,Sources,Storage}\""
- TEST_ARG="make test-openmodelica PACKAGE=\"IBPSA.Fluid.{HeatExchangers,HeatPumps,Humidifiers,Interfaces,MassExchangers,MixingVolumes,Movers,Sensors,Sources,Storage}\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.Fluid.{HeatExchangers,HeatPumps,Humidifiers,Interfaces,MassExchangers,MixingVolumes,Movers,SolarCollectors,Sensors,Sources,Storage}\""
- TEST_ARG="make test-openmodelica PACKAGE=\"IBPSA.Fluid.{HeatExchangers,HeatPumps,Humidifiers,Interfaces,MassExchangers,MixingVolumes,Movers,SolarCollectors,Sensors,Sources,Storage}\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.ThermalZones\""
- TEST_ARG="make test-openmodelica PACKAGE=\"IBPSA.ThermalZones\""
- TEST_ARG="make test-dymola PACKAGE=\"IBPSA.{Airflow,BoundaryConditions,Controls,Electrical}\""
Expand Down
15 changes: 12 additions & 3 deletions IBPSA/Fluid/SolarCollectors/Validation/EN12975_Array.mo
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,19 @@ model EN12975_Array
nPanels=4,
nSeg=3,
sysConfig=IBPSA.Fluid.SolarCollectors.Types.SystemConfiguration.Array,
nPanelsSer=2,
nPanelsPar=2)
"Flat plate solar collector model, has been modified for validation purposes"
annotation (Placement(transformation(extent={{-20,20},{0,40}})));

Collector solCol1(nSeg=3, nPanels=2)
Collector solCol1(
nSeg=3,
nPanels=2)
"Flat plate solar collector model, has been modified for validation purposes"
annotation (Placement(transformation(extent={{-50,-40},{-30,-20}})));

Collector solCol2(nSeg=3, nPanels=2)
Collector solCol2(
nSeg=3,
nPanels=2)
"Flat plate solar collector model, has been modified for validation purposes"
annotation (Placement(transformation(extent={{-50,-80},{-30,-60}})));

Expand Down Expand Up @@ -147,6 +150,12 @@ Furthermore, the pressure drops over all models should be the same.
</html>", revisions="<html>
<ul>
<li>
February 11, 2025, by Michael Wetter:<br/>
Removed parameter assignment for parameter that no longer exists.<br/>
This is for
<a href=\"https://github.com/ibpsa/modelica-ibpsa/issues/1968\">IBPSA, #1968</a>.
</li>
<li>
February 27, 2024, by Jelger Jansen:<br/>
First implementation.<br/>
This is for
Expand Down

0 comments on commit 725c9be

Please sign in to comment.