-
Notifications
You must be signed in to change notification settings - Fork 84
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
1 parent
d532921
commit ac70d26
Showing
23 changed files
with
205 additions
and
58 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
IBPSA/Electrical/BaseClasses/PV/BaseClasses/Icons/package.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,3 +1,17 @@ | ||
within IBPSA.Electrical.BaseClasses.PV.BaseClasses; | ||
package Icons | ||
annotation(Documentation(info="<html> | ||
<p> | ||
This package contains icons for the models in | ||
<a href=\"modelica://IBPSA.Electrical.BaseClasses.PV.BaseClasses\">IBPSA.Electrical.BaseClasses.PV.BaseClasses</a>. | ||
</p> | ||
</html>", | ||
revisions="<html> | ||
<ul> | ||
<li> | ||
Oct 6, 2023, by Laura Maier:<br/> | ||
First implementation. | ||
</li> | ||
</ul> | ||
</html>")); | ||
end Icons; |
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
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
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
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
7 changes: 7 additions & 0 deletions
7
IBPSA/Electrical/DC/Sources/Validation/BaseClasses/package.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,4 +1,11 @@ | ||
within IBPSA.Electrical.DC.Sources.Validation; | ||
package BaseClasses "BaseClasses for validation" | ||
extends Modelica.Icons.BasesPackage; | ||
|
||
annotation(preferredView="info", Documentation(info="<html> | ||
<p> | ||
This package contains base classes that are used to construct the models in | ||
<a href=\"modelica://IBPSA.Electrical.DC.Sources.Validation\">IBPSA.Electrical.DC.Sources.Validation</a>. | ||
</p> | ||
</html>")); | ||
end BaseClasses; |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
within IBPSA.Electrical.Data.PV; | ||
record SingleDiodeSharpNUU235F2 | ||
"Single-diode record for Sharp NU-U235F2 modules" | ||
extends IBPSA.Electrical.Data.PV.SingleDiodeData( | ||
n_ser=60, | ||
n_par=1, | ||
A_cel=((V_mp0*I_mp0)/(1000*eta_0))/n_ser, | ||
A_mod=0.994*1.640, | ||
eta_0=0.144, | ||
V_oc0=37, | ||
I_sc0=8.6, | ||
V_mp0=30, | ||
I_mp0=7.84, | ||
P_mp0=235, | ||
TCoeff_Isc=0.00053*I_sc0, | ||
TCoeff_Voc=-0.00351*V_oc0, | ||
gamma_Pmp=-0.00485, | ||
T_NOCT=47.5 + 273.15, | ||
Eg0 = 1.107, | ||
C=0.0002677); | ||
annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( | ||
coordinateSystem(preserveAspectRatio=false)),Documentation(info="<html> | ||
<p> | ||
This is an exemplary data model of the mono-Si module Sharp NU-U235 F2 used for the single-diode PV model. | ||
This data is used for validation in | ||
<a href=\"modelica://IBPSA.Electrical.DC.Sources.Validation.PVSingleDiodeNISTValidation\">IBPSA.Electrical.DC.Sources.Validation.PVSingleDiodeNISTValidation</a>. | ||
</p> | ||
</html>", | ||
revisions="<html> | ||
<ul> | ||
<li> | ||
Oct 6, 2023, by Laura Maier:<br/> | ||
First implementation. | ||
</li> | ||
</ul> | ||
</html>")); | ||
end SingleDiodeSharpNUU235F2; |
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
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,3 +1,9 @@ | ||
within IBPSA.Electrical.Data; | ||
package PV "Data records for PV models" | ||
annotation(preferredView="info", Documentation(info="<html> | ||
<p> | ||
This package contains data required for PV models in the package | ||
<a href=\"modelica://IBPSA.Electrical\">IBPSA.Electrical</a>. | ||
</p> | ||
</html>")); | ||
end PV; |
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,6 @@ | ||
Generic | ||
SingleDiodeData | ||
SingleDiodeShardNUU235F2 | ||
SingleDiodeSharpNUU235F2 | ||
SingleDiodeSolibroSL2CIGS110 | ||
SingleDiodeSolibroSL2CIGS115 | ||
SingleDiodeSolibroSL2CIGS120 |
Oops, something went wrong.