Skip to content

Commit a207071

Browse files
committed
lowercase > and <
1 parent 7342e41 commit a207071

File tree

23 files changed

+28
-28
lines changed

23 files changed

+28
-28
lines changed

BuildSysPro/BaseClasses/HeatTransfer/Sources/FixedHeatFlow.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ equation
4646
Documentation(info="<html>
4747
<p><u><b>Hypothesis and equations</b></u></p>
4848
<p>This model allows a specified amount of heat flow rate to be &quot;injected&quot; into a thermal system at a given port. The constant amount of heat flow rate Q_flow is given as a parameter. The heat flows into the component to which the component FixedHeatFlow is connected, if parameter Q_flow is positive.</p>
49-
<p>If parameter alpha is &GT; 0, the heat flow is mulitplied by (1 + alpha*(port.T - T_ref)) in order to simulate temperature dependent losses (which are given an reference temperature T_ref).</p>
49+
<p>If parameter alpha is &gt; 0, the heat flow is mulitplied by (1 + alpha*(port.T - T_ref)) in order to simulate temperature dependent losses (which are given an reference temperature T_ref).</p>
5050
<p><u><b>Bibliography</b></u></p>
5151
<p>none</p>
5252
<p><u><b>Instructions for use</b></u></p>

BuildSysPro/BaseClasses/HeatTransfer/Sources/PrescribedHeatFlow.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ equation
4949
Documentation(info="<html>
5050
<p><u><b>Hypothesis and equations</b></u></p>
5151
<p>This model allows a specified amount of heat flow rate to be &quot;injected&quot; into a thermal system at a given port. The amount of heat is given by the input signal Q_flow into the model. The heat flows into the component to which the component PrescribedHeatFlow is connected, if the input signal is positive.</p>
52-
<p>If parameter alpha is &GT; 0, the heat flow is mulitplied by (1 + alpha*(port.T - T_ref)) in order to simulate temperature dependent losses (which are given an reference temperature T_ref).</p>
52+
<p>If parameter alpha is &gt; 0, the heat flow is mulitplied by (1 + alpha*(port.T - T_ref)) in order to simulate temperature dependent losses (which are given an reference temperature T_ref).</p>
5353
<p><u><b>Bibliography</b></u></p>
5454
<p>none</p>
5555
<p><u><b>Instructions for use</b></u></p>

BuildSysPro/BoundaryConditions/Scenarios/CombiTimeTable.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ initial equation
117117
<span style=\"font-family: Courier New,courier;\"> = 1: smooth interpolation with Akima Splines such</span>
118118
<span style=\"font-family: Courier New,courier;\"> that der(y) is continuous.</span></pre>
119119
<li>If the table has only <b>one row</b>, no interpolation is performed and the table values of this row are just returned.</li>
120-
<li>Via parameters <b>startTime</b> and <b>offset</b> the curve defined by the table can be shifted both in time and in the ordinate value. The time instants stored in the table are therefore <b>relative</b> to <b>startTime</b>. If time &LT; startTime, no interpolation is performed and the offset is used as ordinate value for all outputs. </li>
120+
<li>Via parameters <b>startTime</b> and <b>offset</b> the curve defined by the table can be shifted both in time and in the ordinate value. The time instants stored in the table are therefore <b>relative</b> to <b>startTime</b>. If time &lt; startTime, no interpolation is performed and the offset is used as ordinate value for all outputs. </li>
121121
<li>The table is implemented in a numerically sound way by generating <b>time events</b> at interval boundaries, in order to not integrate over a discontinuous or not differentiable points. </li>
122122
<li>For special applications it is sometimes needed to know the minimum and maximum time instant defined in the table as a parameter. For this reason parameters <b>t_min</b> and <b>t_max</b> are provided and can be access from the outside of the table object. </li>
123123
</ul>

BuildSysPro/BoundaryConditions/Scenarios/StepFunctionMat.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ with n rows and two columns and a second table <code>table2 [i, j]</code> n rows
189189
<ul>
190190
<li>the interpolation is effcient because the search for a new interpolation starts from the last interval used for the previous interpolation</li>
191191
<li>if the table has only one row, its values are returned regardless of the input signal value</li>
192-
<li>if the value of the input signal <code>u</code> is outside the range defined by the first column of the table, for example, u&GT; table [size (table, 1), 1] or u &LT;table [1, 1], the corresponding value is determined by linear extrapolation from the first or last two points of the table</li>
192+
<li>if the value of the input signal <code>u</code> is outside the range defined by the first column of the table, for example, u&gt; table [size (table, 1), 1] or u &lt;table [1, 1], the corresponding value is determined by linear extrapolation from the first or last two points of the table</li>
193193
<li>the first column must be strictly monotonic</li>
194194
</ul>
195195
<p>A table can be defined as follows:</p>

BuildSysPro/BoundaryConditions/Scenarios/StepFunctionMatPeriodic.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ with n rows and two columns and a second table <code>table2 [i, j]</code> n rows
190190
<ul>
191191
<li>the interpolation is effcient because the search for a new interpolation starts from the last interval used for the previous interpolation</li>
192192
<li>if the table has only one row, its values are returned regardless of the input signal value</li>
193-
<li>if the value of the input signal <code>u</code> is outside the range defined by the first column of the table, for example, u&GT; table [size (table, 1), 1] or u &LT;table [1, 1], the corresponding value is determined by linear extrapolation from the first or last two points of the table</li>
193+
<li>if the value of the input signal <code>u</code> is outside the range defined by the first column of the table, for example, u&gt; table [size (table, 1), 1] or u &lt;table [1, 1], the corresponding value is determined by linear extrapolation from the first or last two points of the table</li>
194194
<li>the first column must be strictly monotonic</li>
195195
</ul>
196196
<p>A table can be defined as follows:</p>

BuildSysPro/BoundaryConditions/Scenarios/StepFunctionSimpleXY.mo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ protected
3838
<p><u><b>Instructions for use</b></u></p>
3939
<p>X vector (dependent variable) and Y vector (data to be interpolated) are 2 vectors having the same size: n elements each.</p>
4040
<p>For all i from 1 to n-1, for any x in [Xi, X (i + 1) [, calculation of y = Yi</p>
41-
<p>For all x &GT;= Xn : y = Yn</p>
42-
<p>For all x, calculation of xp = >if period &GT; 0 then mod(x,period) else x and calculation of y=y(xp)</p>
41+
<p>For all x &gt;= Xn : y = Yn</p>
42+
<p>For all x, calculation of xp = >if period &gt; 0 then mod(x,period) else x and calculation of y=y(xp)</p>
4343
<p><u><b>Validations</b></u></p>
4444
<p>Validated model - Hassan Bouia 07/2012 </p>
4545
<p><b>--------------------------------------------------------------<br>

BuildSysPro/BoundaryConditions/Solar/Irradiation/FLUXsurf.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Author : Aurélie KAEMMERLEN, EDF (2011)<br>
159159
<p><ul>
160160
<li>Ajout de sorties : hauteur et azimut du soleil, Rayonnement incident diffus provenant du sol</li>
161161
<li>Vecteur Gh de dimension 9 (anciennement 6) pour ajouter les entrées CoupleFlux, MoyFlux et dt</li>
162-
<li>Ajout d'une sécurité pour éviter un flux direct infini : sinh&GT;0.01 au lieu de &GT;0 pour le calcul de FDIRN/FDIRH</li>
162+
<li>Ajout d'une sécurité pour éviter un flux direct infini : sinh&gt;0.01 au lieu de &gt;0 pour le calcul de FDIRN/FDIRH</li>
163163
</ul></p>
164164
<p><br>Hassan Bouia 03/2013 : Simplication du calcul solaire - attention nouvelle dimension du vecteur <b>Gh</b> renommé en <b>G</b></p>
165165
<p>Amy Lindsay 03/2013 : Ajout du paramètre diffus_isotrope pour choisir entre un modèle de diffus isotrope ou le modèle de diffus HDKR</p>

BuildSysPro/BoundaryConditions/Solar/Irradiation/SolarBC.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,6 @@ BuildSysPro version 2.0.0<br>
382382
Author : Gilles PLESSIS, EDF (2013)<br>
383383
--------------------------------------------------------------</b></p>
384384
</html>", revisions="<html>
385-
<p>Gilles Plessis 12/2013 : Mise à jour des noms des paramètres SurfaceVitree-&GT;SurfacesVitrees et SurfaceExterieures-&GT;SurfacesExterieures</p>
385+
<p>Gilles Plessis 12/2013 : Mise à jour des noms des paramètres SurfaceVitree-&gt;SurfacesVitrees et SurfaceExterieures-&gt;SurfacesExterieures</p>
386386
</html>"));
387387
end SolarBC;

BuildSysPro/BoundaryConditions/Solar/SolarMasks/Masks.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Author : Aurélie KAEMMERLEN, EDF (2013)<br>
181181
--------------------------------------------------------------</b></p>
182182
</html>
183183
", revisions="<html>
184-
<p>Aurélie Kaemmerlen 04/2013 : Ajout d'une condition sur la hauteur du soleil pour le calcul de la surface ensoleillée. Fait suite à la correction des flux solaires (calcul de l'azimut corrigé - avant il n'était pas déterminé si sinh&LT;=0)</p>
184+
<p>Aurélie Kaemmerlen 04/2013 : Ajout d'une condition sur la hauteur du soleil pour le calcul de la surface ensoleillée. Fait suite à la correction des flux solaires (calcul de l'azimut corrigé - avant il n'était pas déterminé si sinh&lt;=0)</p>
185185
<p>Laura Sudries, Vincent Magnaudeix 05/2015 : Ajout de la prise en compte des masques lointains verticaux</p>
186186
<p>Benoît Charrier 05/2015 : Ajout du choix possible de prise en compte ou non des masques lointains verticaux</p>
187187
<p>Benoît Charrier 05/2015 : Correction sur le facteur d'affaiblissement du rayonnement solaire direct dû à un masque lointain vertical, qui était appliqué par erreur au rayonnement diffus.</p>

BuildSysPro/BoundaryConditions/Weather/CombiTable1Ds_ForStepMeteo.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ equation
128128
<ul>
129129
<li>The interpolation is <b>efficient</b>, because a search for a new interpolation starts at the interval used in the last call.</li>
130130
<li>If the table has only <b>one row</b>, the table value is returned, independent of the value of the input signal.</li>
131-
<li>If the input signal <b>u</b> is <b>outside</b> of the defined <b>interval</b>, i.e., u &GT; table[size(table,1),1] or u &LT; table[1,1], the corresponding value is also determined by linear interpolation through the last or first two points of the table.</li>
131+
<li>If the input signal <b>u</b> is <b>outside</b> of the defined <b>interval</b>, i.e., u &gt; table[size(table,1),1] or u &lt; table[1,1], the corresponding value is also determined by linear interpolation through the last or first two points of the table.</li>
132132
<li>The grid values (first column) have to be strictly increasing.</li>
133133
</ul>
134134

0 commit comments

Comments
 (0)