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 <sylvain.leclerc at rte-france.com>
  • Method Summary

    Modifier and Type
    Method
    Description
    A name which uniquely identifies that computation.
    void
    run(Network network, ComputationManager computationManager)
    A computation carried out on the network.
  • Method Details

    • getName

      String getName()
      A name which uniquely identifies that computation.
    • run

      void run(Network network, ComputationManager computationManager)
      A computation carried out on the network.