Package com.powsybl.loadflow.validation
Interface CandidateComputation
-
- All Known Implementing Classes:
LoadFlowComputation
,LoadFlowResultsCompletion
public interface CandidateComputation
A computation carried out on a network, which result may be validated through the validation tool. All computation tools which want to pass the validation tests must implement that interface and register itself as a known candidate through the use of @AutoService. Must be thread-safe.- Author:
- Sylvain Leclerc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
A name which uniquely identifies that computation.void
run(Network network, ComputationManager computationManager)
A computation carried out on thenetwork
.
-
-
-
Method Detail
-
getName
String getName()
A name which uniquely identifies that computation.
-
run
void run(Network network, ComputationManager computationManager)
A computation carried out on thenetwork
.
-
-