-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: lisrte <[email protected]>
- Loading branch information
Showing
19 changed files
with
285 additions
and
272 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
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
16 changes: 0 additions & 16 deletions
16
dynawaltz-dsl/src/test/resources/curves_dynamicModelId_staticId.groovy
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
81 changes: 0 additions & 81 deletions
81
dynawaltz/src/main/java/com/powsybl/dynawaltz/DynawoCurveBuilder.java
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* 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/. | ||
*/ | ||
package com.powsybl.dynawaltz; | ||
package com.powsybl.dynawaltz.curves; | ||
|
||
import com.powsybl.dynamicsimulation.Curve; | ||
|
||
|
@@ -13,13 +13,12 @@ | |
/** | ||
* @author Mathieu Bague {@literal <[email protected]>} | ||
*/ | ||
//TODO switch to record | ||
public class DynawoCurve implements Curve { | ||
|
||
private final String dynamicModelId; | ||
private final String variable; | ||
|
||
public DynawoCurve(String dynamicModelId, String variable) { | ||
DynawoCurve(String dynamicModelId, String variable) { | ||
this.dynamicModelId = Objects.requireNonNull(dynamicModelId); | ||
this.variable = Objects.requireNonNull(variable); | ||
} | ||
|
Oops, something went wrong.