Skip to content

Commit

Permalink
Bump to 2.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Dupuy <[email protected]>
  • Loading branch information
flo-dup committed Dec 13, 2023
1 parent ffa7475 commit e6af65b
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ DynamicSimulationParameters parameters = DynamicSimulationParameters.load();

// Run the simulation and display the results
DynamicSimulationResult result = DynamicSimulation.run(network, dynamicModelsSupplier, eventModelsSupplier, curvesSupplier, parameters);
System.out.println(result.isOk());
System.out.println(result.getLogs());
System.out.println(result.getStatus());
System.out.println("Timeline:");
result.getTimeLine().forEach(tl -> System.out.printf("[%.8f] %s (on %s)%n", tl.time(), tl.message(), tl.modelName()));
```

To learn more about the usage of DynaWaltz, read the [dedicated page](https://www.powsybl.org/pages/documentation/simulation/timedomain/dynawo) on our website.
Expand Down
2 changes: 1 addition & 1 deletion commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<artifactId>powsybl-dynawo</artifactId>
<groupId>com.powsybl</groupId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
</parent>

<artifactId>powsybl-dynawo-commons</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<artifactId>powsybl-dynawo</artifactId>
<groupId>com.powsybl</groupId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
</parent>

<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion dynaflow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<artifactId>powsybl-dynawo</artifactId>
<groupId>com.powsybl</groupId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
</parent>

<artifactId>powsybl-dynaflow</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion dynawaltz-dsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<artifactId>powsybl-dynawo</artifactId>
<groupId>com.powsybl</groupId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
</parent>

<artifactId>powsybl-dynawaltz-dsl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion dynawaltz/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<artifactId>powsybl-dynawo</artifactId>
<groupId>com.powsybl</groupId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
</parent>

<artifactId>powsybl-dynawaltz</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion dynawo-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-dynawo</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
</parent>

<artifactId>powsybl-dynawo-integration-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</parent>

<artifactId>powsybl-dynawo</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
<packaging>pom</packaging>

<name>powsybl dynawo</name>
Expand Down

0 comments on commit e6af65b

Please sign in to comment.