Skip to content

Commit

Permalink
CGMES short circuit (#244)
Browse files Browse the repository at this point in the history
Signed-off-by: JB-H <[email protected]>
Signed-off-by: Geoffroy Jamgotchian <[email protected]>
  • Loading branch information
geofjamg committed Sep 9, 2022
1 parent 1b7bc5e commit c366cb4
Show file tree
Hide file tree
Showing 24 changed files with 1,901 additions and 45 deletions.
1 change: 1 addition & 0 deletions simulator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<module>network-reduction</module>
<module>util</module>
<module>short-circuit</module>
<module>short-circuit-cgmes</module>
</modules>

<properties>
Expand Down
67 changes: 67 additions & 0 deletions simulator/short-circuit-cgmes/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2022, Jean-Baptiste Heyberger & Geoffroy Jamgotchian
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/.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>powsybl-incubator-simulator</artifactId>
<groupId>com.powsybl</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>powsybl-incubator-simulator-short-circuit-cgmes</artifactId>
<name>CGMES Short circuit</name>

<dependencies>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-cgmes-conversion</artifactId>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-incubator-simulator-util</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-cgmes-conformity</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-iidm-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-triple-store-impl-rdf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-incubator-simulator-short-circuit</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit c366cb4

Please sign in to comment.