PSSL for DCLF and Sensitivity Analysis

The following are some sample code to load an AC Loadflow network data, in IEEE Common Data Format, and run a DCLF analysis.

AclfNetwork net = IpssAdapter.importAclfNet("testData/aclf/ieee14.ieee")

  .setFormat(IpssAdapter.FileFormat.IEEECommonFormat)

.load()

.getAclfNet();


DclfAlgorithmDSL algoDsl = IpssPTrading.createDclfAlgorithm(net)

.runDclfAnalysis();

System.out.println(IpssUtil.outDclfResult(algoDsl)

.toString());