-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Synchronization between views for v and angle bus values. #452
Open
FranckLecuyer
wants to merge
8
commits into
main
Choose a base branch
from
synchronize_set_v_angle_on_bus_between_views
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a43f002
Synchronization between views for v and angle bus values.
FranckLecuyer 8492ef9
Merge branch 'main' into synchronize_set_v_angle_on_bus_between_views
FranckLecuyer 3afafdd
Merge branch 'main' into synchronize_set_v_angle_on_bus_between_views
FranckLecuyer 9ce5cb7
Merge branch 'main' into synchronize_set_v_angle_on_bus_between_views
FranckLecuyer 6661c1f
Changes after review
FranckLecuyer 3b26409
Fix sonar issue
FranckLecuyer 98bf508
Merge branch 'main' into synchronize_set_v_angle_on_bus_between_views
FranckLecuyer 4c2dffb
more exhaustive test
jonenst File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -15,10 +15,13 @@ | |||||||||||||||||||||||||||||
import com.powsybl.iidm.network.util.Networks; | ||||||||||||||||||||||||||||||
import com.powsybl.network.store.model.*; | ||||||||||||||||||||||||||||||
import lombok.EqualsAndHashCode; | ||||||||||||||||||||||||||||||
import org.apache.commons.collections4.CollectionUtils; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
import java.util.*; | ||||||||||||||||||||||||||||||
import java.util.function.Function; | ||||||||||||||||||||||||||||||
import java.util.function.ObjDoubleConsumer; | ||||||||||||||||||||||||||||||
import java.util.function.Predicate; | ||||||||||||||||||||||||||||||
import java.util.function.ToDoubleFunction; | ||||||||||||||||||||||||||||||
import java.util.stream.Collectors; | ||||||||||||||||||||||||||||||
import java.util.stream.Stream; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
@@ -48,6 +51,9 @@ public final class CalculatedBus implements BaseBus { | |||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private final Function<Terminal, Bus> getBusFromTerminal; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private static final String VOLTAGE = "v"; | ||||||||||||||||||||||||||||||
private static final String ANGLE = "angle"; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
CalculatedBus(NetworkObjectIndex index, String voltageLevelId, String id, String name, Resource<VoltageLevelAttributes> voltageLevelResource, | ||||||||||||||||||||||||||||||
int calculatedBusNum, boolean isBusView) { | ||||||||||||||||||||||||||||||
this.index = Objects.requireNonNull(index); | ||||||||||||||||||||||||||||||
|
@@ -131,13 +137,94 @@ public double getV() { | |||||||||||||||||||||||||||||
return getAttributes().getV(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private void setVInCalculatedBus(CalculatedBusAttributes calculatedBusAttributes, double value) { | ||||||||||||||||||||||||||||||
calculatedBusAttributes.setV(value); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private void setVInConfiguredBus(ConfiguredBusAttributes configuredBusAttributes, double value) { | ||||||||||||||||||||||||||||||
configuredBusAttributes.setV(value); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private double getVInBus(Bus bus) { | ||||||||||||||||||||||||||||||
return bus.getV(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private void setAngleInCalculatedBus(CalculatedBusAttributes calculatedBusAttributes, double value) { | ||||||||||||||||||||||||||||||
calculatedBusAttributes.setAngle(value); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private void setAngleInConfiguredBus(ConfiguredBusAttributes configuredBusAttributes, double value) { | ||||||||||||||||||||||||||||||
configuredBusAttributes.setAngle(value); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private double getAngleInBus(Bus bus) { | ||||||||||||||||||||||||||||||
return bus.getAngle(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||
public Bus setV(double v) { | ||||||||||||||||||||||||||||||
getAttributes().setV(v); | ||||||||||||||||||||||||||||||
index.updateVoltageLevelResource(voltageLevelResource, AttributeFilter.SV); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if (getVoltageLevel().getTopologyKind() == TopologyKind.BUS_BREAKER) { | ||||||||||||||||||||||||||||||
// update V in configured buses | ||||||||||||||||||||||||||||||
updateConfiguredBuses(v, getAttributes(), VOLTAGE, this::getVInBus, this::setVInConfiguredBus); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
if (isBusView) { | ||||||||||||||||||||||||||||||
// update V for buses in BusBreakerView | ||||||||||||||||||||||||||||||
updateBusesAttributes(v, voltageLevelResource.getAttributes().getCalculatedBusesForBusBreakerView(), getAttributes(), this::setVInCalculatedBus); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
// update V for buses in BusView | ||||||||||||||||||||||||||||||
updateBusesAttributes(v, voltageLevelResource.getAttributes().getCalculatedBusesForBusView(), getAttributes(), this::setVInCalculatedBus); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
return this; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private void updateBusesAttributes(double value, | ||||||||||||||||||||||||||||||
List<CalculatedBusAttributes> calculatedBusAttributesList, | ||||||||||||||||||||||||||||||
CalculatedBusAttributes sourceBusAttributes, | ||||||||||||||||||||||||||||||
ObjDoubleConsumer<CalculatedBusAttributes> setValue) { | ||||||||||||||||||||||||||||||
if (!CollectionUtils.isEmpty(calculatedBusAttributesList)) { | ||||||||||||||||||||||||||||||
calculatedBusAttributesList.forEach(busToUpdate -> busToUpdate.getVertices().forEach(vertex1 -> | ||||||||||||||||||||||||||||||
sourceBusAttributes.getVertices().stream().filter(v -> v.getId().equals(vertex1.getId())).findFirst().ifPresent(vertex2 -> { | ||||||||||||||||||||||||||||||
setValue.accept(busToUpdate, value); | ||||||||||||||||||||||||||||||
index.updateVoltageLevelResource(voltageLevelResource, AttributeFilter.SV); | ||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||
)); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private void updateConfiguredBuses(double newValue, | ||||||||||||||||||||||||||||||
CalculatedBusAttributes calculatedBusAttributes, | ||||||||||||||||||||||||||||||
String attributeName, | ||||||||||||||||||||||||||||||
ToDoubleFunction<Bus> getValue, | ||||||||||||||||||||||||||||||
ObjDoubleConsumer<ConfiguredBusAttributes> setValue) { | ||||||||||||||||||||||||||||||
List<String> busesIds = calculatedBusAttributes.getVertices().stream() | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. doesn't contain configuredbus without any vertex (equipment) |
||||||||||||||||||||||||||||||
.map(Vertex::getBus) | ||||||||||||||||||||||||||||||
.toList(); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
List<Bus> buses = getVoltageLevel().getBusBreakerView().getBusStream() | ||||||||||||||||||||||||||||||
.filter(bus -> busesIds.contains(bus.getId()) && !Objects.equals(getValue.applyAsDouble(bus), newValue)) | ||||||||||||||||||||||||||||||
.toList(); | ||||||||||||||||||||||||||||||
Comment on lines
+203
to
+209
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
something like that ? |
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
Map<Bus, Map.Entry<Double, Double>> oldNewValues = buses.stream() | ||||||||||||||||||||||||||||||
.collect(Collectors.toMap( | ||||||||||||||||||||||||||||||
bus -> bus, | ||||||||||||||||||||||||||||||
bus -> new AbstractMap.SimpleEntry<>(getValue.applyAsDouble(bus), newValue) | ||||||||||||||||||||||||||||||
)); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
buses.forEach(bus -> { | ||||||||||||||||||||||||||||||
setValue.accept(((ConfiguredBusImpl) bus).getResource().getAttributes(), newValue); | ||||||||||||||||||||||||||||||
index.updateConfiguredBusResource(((ConfiguredBusImpl) bus).getResource(), null); | ||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
String variantId = index.getNetwork().getVariantManager().getWorkingVariantId(); | ||||||||||||||||||||||||||||||
oldNewValues.forEach((bus, oldNewValue) -> | ||||||||||||||||||||||||||||||
index.notifyUpdate(bus, attributeName, variantId, oldNewValue.getKey(), oldNewValue.getValue()) | ||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||
public double getAngle() { | ||||||||||||||||||||||||||||||
return getAttributes().getAngle(); | ||||||||||||||||||||||||||||||
|
@@ -147,6 +234,19 @@ public double getAngle() { | |||||||||||||||||||||||||||||
public Bus setAngle(double angle) { | ||||||||||||||||||||||||||||||
getAttributes().setAngle(angle); | ||||||||||||||||||||||||||||||
index.updateVoltageLevelResource(voltageLevelResource, AttributeFilter.SV); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if (getVoltageLevel().getTopologyKind() == TopologyKind.BUS_BREAKER) { | ||||||||||||||||||||||||||||||
// update angle in configuredBus | ||||||||||||||||||||||||||||||
updateConfiguredBuses(angle, getAttributes(), ANGLE, this::getAngleInBus, this::setAngleInConfiguredBus); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
if (isBusView) { | ||||||||||||||||||||||||||||||
// update angle for Bus in BusBreakerView | ||||||||||||||||||||||||||||||
updateBusesAttributes(angle, voltageLevelResource.getAttributes().getCalculatedBusesForBusBreakerView(), getAttributes(), this::setAngleInCalculatedBus); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
// update angle for Bus in BusView | ||||||||||||||||||||||||||||||
updateBusesAttributes(angle, voltageLevelResource.getAttributes().getCalculatedBusesForBusView(), getAttributes(), this::setAngleInCalculatedBus); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
return this; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
@@ -423,6 +523,10 @@ public Stream<Terminal> getAllTerminalsStream() { | |||||||||||||||||||||||||||||
.filter(t -> t.getVoltageLevel().getId().equals(getVoltageLevel().getId()) && pred.test(t)); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
public int getCalculatedBusNum() { | ||||||||||||||||||||||||||||||
return calculatedBusNum; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||
public <E extends Extension<Bus>> void addExtension(Class<? super E> aClass, E e) { | ||||||||||||||||||||||||||||||
throw new UnsupportedOperationException("Adding an extension on calculated bus is not authorized"); | ||||||||||||||||||||||||||||||
|
@@ -467,8 +571,4 @@ public <E extends Extension<Bus>, B extends ExtensionAdder<Bus, E>> B newExtensi | |||||||||||||||||||||||||||||
ExtensionAdderProvider provider = ExtensionAdderProviders.findCachedProvider(getImplementationName(), type); | ||||||||||||||||||||||||||||||
return (B) provider.newAdder(this); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
public int getCalculatedBusNum() { | ||||||||||||||||||||||||||||||
return calculatedBusNum; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
v set in all remaining buses
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see this bug made the AbstractMainConnectedComponentWithSwitchTest work because there is a bus without any vertex which would be unset, but since it's setting v in all remaining buses it sets it anyway.
This is all to do with the fact that we can not use the equipment Vertex (=non switch equipment) to match buses, we need to use the topology vertex (nodes/configuredbus)