Skip to content

Commit 327e3a1

Browse files
committed
Adds missing comma after i.e.
1 parent ebec324 commit 327e3a1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

OpenIPSL/Examples/OpenCPS/NoiseInjections/BaseClass.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ equation
3333
points={{-100,0},{-80,0},{-70,40},{-60,-20},{-50,20},{-28,-40},{-10,
3434
40},{0,-20},{12,20},{20,0},{40,0},{40,0}},
3535
thickness=2)}), Documentation(info="<html>
36-
<p>This model is used as base for building the node injections into electrical nodes via consumption of active and reactive powers, i.e. <code>P</code> and <code>Q</code>, respectively.
36+
<p>This model is used as base for building the node injections into electrical nodes via consumption of active and reactive powers, i.e., <code>P</code> and <code>Q</code>, respectively.
3737
These variables are changed differently according to the noise injection procedure in which the extended models are based on. </p>
3838
</html>"));
3939
end BaseClass;

OpenIPSL/Examples/OpenCPS/NoiseInjections/WhiteNoiseInjection.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ equation
66
P = noise_gen.y;
77
Q = 0;
88
annotation (Documentation(info="<html>
9-
<p>This model injects white noise to the electrical node via active power value, i.e. <code>P</code>.
9+
<p>This model injects white noise to the electrical node via active power value, i.e., <code>P</code>.
1010
Reactive power, <code>Q</code>, is set to 0 and no noise is injected there.</p>
1111
</html>"));
1212
end WhiteNoiseInjection;

OpenIPSL/Examples/OpenCPS/NoiseInjections/WienerProcessInjection.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ equation
99
der(P) = noise_gen.y;
1010
Q = 0;
1111
annotation (Documentation(info="<html>
12-
<p>This model injects noise to the electrical node via the derivative of the active power value, i.e. <code>der(P)</code>.
12+
<p>This model injects noise to the electrical node via the derivative of the active power value, i.e., <code>der(P)</code>.
1313
Reactive power, <code>Q</code>, is set to 0 and no noise is injected there.</p>
1414
</html>"));
1515
end WienerProcessInjection;

0 commit comments

Comments
 (0)