Skip to content

Commit

Permalink
Merge pull request #32 from openego/dev
Browse files Browse the repository at this point in the history
Merge dev to master for release ov v0.0.3
  • Loading branch information
gplssm authored Jun 28, 2017
2 parents 7f7fa4e + ca2ef16 commit c6b0e12
Show file tree
Hide file tree
Showing 7 changed files with 579 additions and 521 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# ego.powerflow
A power flow app to solve AC and DC powerflow problems using PyPSA

LICENSE
-------

Copyright (C) 2017 openego project group

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.

This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU General Public License along with
this program. If not, see https://www.gnu.org/licenses/.
86 changes: 0 additions & 86 deletions egopowerflow/examples/hv_grid.py

This file was deleted.

97 changes: 0 additions & 97 deletions egopowerflow/examples/hv_grid_lopf.py

This file was deleted.

43 changes: 43 additions & 0 deletions egopowerflow/tools/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"lopf":
{
"Bus": null,
"Generator":
{
"GeneratorPqSet": ["p_set", "p_max_pu"]
},
"Line": null,
"Transformer": null,
"Load":
{
"LoadPqSet": ["p_set", "q_set"]
},
"Storage":
{
"StoragePqSet": ["p_set"]
}
},
"pf":
{
"Bus":
{
"BusVMagSet":["v_mag_pu_set"]
},
"Generator":
{
"GeneratorPqSet": ["p_set", "q_set"]
},
"Line": null,
"Transformer": null,
"Load":
{
"LoadPqSet": ["p_set", "q_set"]
},
"Storage":
{
"StoragePqSet": ["p_set", "q_set"]
}
}
}


Loading

0 comments on commit c6b0e12

Please sign in to comment.