项目作者: felipemarkson

项目描述 :
Implementation on JuMP of Distribution Expansion Planning Model proposed by Muñoz-Delgado et al. (2014).
高级语言: Julia
项目地址: git://github.com/felipemarkson/MunozDelgado2014.git
创建时间: 2020-11-06T19:19:02Z
项目社区:https://github.com/felipemarkson/MunozDelgado2014

开源协议:

下载


Joint Expansion Planning of Distributed Generation and Distribution Networks

Implementation using JuMP of Distribution Expansion Planning Model proposed by Muñoz-Delgado et al. (2014).

Tested with HiGHS v1.2.2

Reference:

Muñoz-Delgado, G., Contreras, J., & Arroyo, J. M. (2014). Joint expansion planning of distributed generation and distribution networks. IEEE Transactions on Power Systems, 30(5), 2579-2590.
DOI: 10.1109/TPWRS.2014.2364960

Changes

This implementation does not use an identical model proposed by the reference paper.
See CHANGES.md for more details.

Quick start

  1. using JuMP
  2. using HiGHS # This package can be replaced by any other MILP with JuMP interface
  3. import MunozDelgado2014
  4. MD14 = MunozDelgado2014
  5. optimizer = HiGHS.Optimizer
  6. path = "path/to/data/folder" # See the folder "dados"
  7. model = MD14.build_model(path, optimizer; is_direct=true)
  8. optimize!(model)
  9. MD14.save_results(model, "path/to/results/folder")