HolegPowerFlowContext.java 335 B

123456789101112131415
  1. package holeg;
  2. import holeg.model.Grid;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. public class HolegPowerFlowContext {
  6. public PowerFlowSettings settings = PowerFlowSettings.getDefault();
  7. public List<Grid> lastSolvedGrids = new ArrayList<>();
  8. public void clearCache() {
  9. lastSolvedGrids.clear();
  10. }
  11. }