-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CGMES post-processor to remove grounds (#2877)
Signed-off-by: Luma <zamarrenolm@aia.es>
- Loading branch information
1 parent
ee2d2a8
commit 7beecd6
Showing
4 changed files
with
120 additions
and
2 deletions.
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
51 changes: 51 additions & 0 deletions
51
...mes-conversion/src/main/java/com/powsybl/cgmes/conversion/RemoveGroundsPostProcessor.java
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,51 @@ | ||
/** | ||
* Copyright (c) 2024, RTE (http://www.rte-france.com) | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
* SPDX-License-Identifier: MPL-2.0 | ||
*/ | ||
package com.powsybl.cgmes.conversion; | ||
|
||
import com.google.auto.service.AutoService; | ||
import com.powsybl.commons.config.PlatformConfig; | ||
import com.powsybl.iidm.modification.topology.RemoveFeederBay; | ||
import com.powsybl.iidm.network.Identifiable; | ||
import com.powsybl.iidm.network.Network; | ||
import com.powsybl.triplestore.api.TripleStore; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
/** | ||
* @author Luma Zamarreño {@literal <zamarrenolm@aia.es>} | ||
*/ | ||
@AutoService(CgmesImportPostProcessor.class) | ||
public class RemoveGroundsPostProcessor implements CgmesImportPostProcessor { | ||
|
||
public static final String NAME = "RemoveGrounds"; | ||
private static final Logger LOG = LoggerFactory.getLogger(RemoveGroundsPostProcessor.class); | ||
|
||
public RemoveGroundsPostProcessor() { | ||
this(PlatformConfig.defaultConfig()); | ||
} | ||
|
||
public RemoveGroundsPostProcessor(PlatformConfig platformConfig) { | ||
Objects.requireNonNull(platformConfig); | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return NAME; | ||
} | ||
|
||
@Override | ||
public void process(Network network, TripleStore tripleStore) { | ||
Objects.requireNonNull(network); | ||
LOG.info("Execute {} post processor on network {}", getName(), network.getId()); | ||
List<String> grounds = network.getGroundStream().map(Identifiable::getId).toList(); | ||
grounds.forEach(g -> new RemoveFeederBay(g).apply(network)); | ||
} | ||
} |
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