Skip to content

Commit

Permalink
Clean comments
Browse files Browse the repository at this point in the history
Signed-off-by: p-arvy <pierre.arvy@artelys.com>
  • Loading branch information
p-arvy committed Jan 3, 2025
1 parent f995fc5 commit f2b0a18
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ void testGeneratorQmaxPmaxRatioBounds() throws IOException {

@Test
void testGeneratorQBoundsInterpolatedBetweenMinPMaxP() throws IOException {
// verify feasibility when minQ/maxQ are interpolated between bounds at MinP and MaxP (0 < minP < targetP < maxP)
// verify feasibility when minQ/maxQ are interpolated between minP and maxP (0 < minP < targetP < maxP)
Network network = create(101, 50, 150, 150);
network.getGenerator("g1").newReactiveCapabilityCurve()
.beginPoint()
Expand Down Expand Up @@ -140,7 +140,7 @@ void testGeneratorQBoundsInterpolatedBetweenMinPMaxP() throws IOException {

@Test
void testGeneratorQBoundsInterpolatedBetweenMinPMaxP2() throws IOException {
// verify feasibility when minQ/maxQ are interpolated between bounds at MinP and MaxP (minP < targetP < maxP < 0)
// verify feasibility when minQ/maxQ are interpolated between minP and maxP (minP < targetP < maxP < 0)
Network network = create(-10, -20, -5, -10);
setDefaultVoltageLimits(network, 0.85, 1.15);
network.getGenerator("g1").newReactiveCapabilityCurve()
Expand Down Expand Up @@ -176,7 +176,7 @@ void testGeneratorQBoundsInterpolatedBetweenMinPMaxP2() throws IOException {

@Test
void testGeneratorQBoundsInterpolatedBetweenP0MaxP() throws IOException {
// verify feasibility when minQ/maxQ are interpolated between bounds at MinP and P0 (minP < 0 < targetP < maxP)
// verify feasibility when minQ/maxQ are interpolated between P0 and maxP (minP < 0 < targetP < maxP)
Network network = create(101, -50, 150, 150);
network.getGenerator("g1").newReactiveCapabilityCurve()
.beginPoint()
Expand Down Expand Up @@ -211,7 +211,7 @@ void testGeneratorQBoundsInterpolatedBetweenP0MaxP() throws IOException {

@Test
void testGeneratorQBoundsInterpolatedBetweenP0MaxP2() throws IOException {
// verify feasibility when minQ/maxQ are interpolated between bounds at MinP and P0 (maxP < targetP < 0)
// verify feasibility when minQ/maxQ are interpolated between P0 and maxP (maxP < targetP < 0)
Network network = create(-4, -20, -5, -4);
setDefaultVoltageLimits(network, 0.85, 1.15);
network.getGenerator("g1").newReactiveCapabilityCurve()
Expand Down Expand Up @@ -247,7 +247,7 @@ void testGeneratorQBoundsInterpolatedBetweenP0MaxP2() throws IOException {

@Test
void testGeneratorQBoundsInterpolatedBetweenP0MinP() throws IOException {
// verify feasibility when minQ/maxQ are interpolated between bounds at MinP and P0 (0 < targetP < minP)
// verify feasibility when minQ/maxQ are interpolated between minP and P0 (0 < targetP < minP)
Network network = create(101, 150, 200, 100);
network.getGenerator("g1").newReactiveCapabilityCurve()
.beginPoint()
Expand Down Expand Up @@ -282,7 +282,7 @@ void testGeneratorQBoundsInterpolatedBetweenP0MinP() throws IOException {

@Test
void testGeneratorQBoundsInterpolatedBetweenP0MinP2() throws IOException {
// verify feasibility when minQ/maxQ are interpolated between bounds at MinP and P0 (minP < targetP < 0 < maxP)
// verify feasibility when minQ/maxQ are interpolated between minP and P0 (minP < targetP < 0 < maxP)
Network network = create(-5.1, -10, 10, -2);
setDefaultVoltageLimits(network, 0.85, 1.15);
network.getGenerator("g1").newReactiveCapabilityCurve()
Expand Down

0 comments on commit f2b0a18

Please sign in to comment.