Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
Signed-off-by: Damien Jeandemange <[email protected]>
  • Loading branch information
jeandemanged committed Nov 10, 2024
1 parent df225d3 commit d9c9c15
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ YAGAT today lacks many features, but you may already find it useful. What is pla
- **Grid Model Navigation**: Tabular views per equipment type
- **Grid Model Updates**: Adjust grid configurations, such as opening/closing switches, changing generator set points, etc.
- **Load Flow**:
- Complete Load Flow Parameters view
- Add ability to save/load the Load Flow parameters
- View Load Flow reports for troubleshooting non-convergence

Expand All @@ -79,10 +78,11 @@ YAGAT today lacks many features, but you may already find it useful. What is pla
## Under the Hood

YAGAT is:
- **Written in Python**: A versatile language that allows easy integration with other libraries.
- **Written in Python**: a high-level, general-purpose programming language.
- **Using [PyPowSyBl](https://pypowsybl.readthedocs.io/en/latest/index.html)**: Provides the core grid analysis functionalities.
- **Using [Tkinter](https://wiki.python.org/moin/TkInter)**: Supplies the graphical user interface, enabling an intuitive experience for users.
- **Using [PyInstaller](https://pyinstaller.org/en/stable/)**: Packages the application for cross-platform compatibility.
- **Using [Tkinter](https://wiki.python.org/moin/TkInter)**: Supplies the graphical user interface.
- **Using [Tksheet](https://github.com/ragardner/tksheet)**: An amazing tkinter table widget.
- **Using [PyInstaller](https://pyinstaller.org/en/stable/)**: Packages the application.

## Data Confidentiality

Expand Down
1 change: 0 additions & 1 deletion yagat/menus/impl/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,3 @@ def open_network(self):
self.context.status_text = 'Opening ' + filename
self.context.network = pp.network.load(filename)
self.context.status_text = 'Network ' + self.context.network.name + ' loaded'
print(self.context.network.get_sub_networks(all_attributes=True))
2 changes: 0 additions & 2 deletions yagat/menus/impl/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ def __init__(self, parent, context: AppContext, *args, **kwargs):
self.add_command(label='Load Flow', command=self.run_load_flow)

def run_load_flow(self):
print(lf.get_provider_parameters())
print(lf.Parameters())
reporter = pr.Reporter()
self.context.status_text = 'Starting Load Flow'
results = lf.run_ac(self.context.network, parameters=self.context.lf_parameters, reporter=reporter)
Expand Down

0 comments on commit d9c9c15

Please sign in to comment.