Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

413 feature improve connection of charging points #421

Open
wants to merge 53 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 44 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
db6af07
home charging points residential load
joda9 Aug 6, 2024
01ba22a
add test_connect_to_lv_based_on_geolocation
joda9 Aug 6, 2024
c3ff9f9
update connect_to_lv_based_on_geolocation function
joda9 Aug 8, 2024
ae9f79a
add docstring and update comments assure_minimum_potential_charging_p…
khelfen Aug 12, 2024
de013e8
update docstring and comments get_weights_df function
khelfen Aug 12, 2024
d68e4d4
small bug fix in topology connect_to_lv
khelfen Aug 12, 2024
fe662bd
Revert "update connect_to_lv_based_on_geolocation function"
joda9 Aug 14, 2024
5bf5696
Revert "add test_connect_to_lv_based_on_geolocation"
joda9 Aug 14, 2024
6fdaf74
Revert "home charging points residential load"
joda9 Aug 14, 2024
6c33380
update connect_to_lv_based_on_geolocation function
joda9 Aug 15, 2024
d678279
Add warning maximum components per bus
joda9 Aug 15, 2024
944ab2c
mv_buses only if allowed
joda9 Aug 15, 2024
9251439
Merge pull request #416 from openego/413-feature-improve-connection-o…
khelfen Aug 16, 2024
32dce1d
move 'calculate_distance_to_buses_df' to geo.py
joda9 Aug 19, 2024
333a37b
Adjusting docstring to new method
joda9 Aug 19, 2024
9013d10
changes to new method in 'connect_to_lv_based_on_geolocation'
joda9 Aug 19, 2024
59d8758
Merge branch '413-feature-improve-connection-of-charging-points' of g…
joda9 Aug 19, 2024
0822f25
Adjusting docstring to new method
joda9 Aug 19, 2024
ad48999
changes to new method in 'connect_to_lv_based_on_geolocation'
joda9 Aug 19, 2024
46cc865
add tests for 'connect_to_lv_based_on_geolocation'
joda9 Aug 19, 2024
f530637
adding tests
joda9 Aug 20, 2024
8dbf59f
fixing tests
joda9 Aug 20, 2024
00d3d58
improve readability of 'connect_to_lv_based_on_geolocation'
joda9 Aug 21, 2024
962c9e3
fixing pandas warning
joda9 Aug 21, 2024
5e72bcc
using .loc instead of .copy
joda9 Aug 21, 2024
5ab74f4
Refactor calculate_distance_to_buses_df arguments for consistency
joda9 Aug 23, 2024
9fca33a
fixing failing tests
joda9 Aug 26, 2024
15cf243
Merge branch 'dev' into 413--feature--improve-connection-of-charging-…
joda9 Aug 26, 2024
412cb9f
fixing failing tests
joda9 Aug 26, 2024
f502ca9
fixing failing tests
joda9 Aug 26, 2024
4673206
fixing failing tests
joda9 Aug 26, 2024
744535a
fixing failing links
joda9 Aug 27, 2024
5ae6934
adjusting test parametrization
joda9 Sep 4, 2024
5c11cd0
adjusting readability
joda9 Sep 4, 2024
29d2fe5
Improve connection of charging points to the grid
joda9 Sep 4, 2024
b54a29e
adding comments
joda9 Sep 6, 2024
64aa833
adjusting docstring
joda9 Sep 6, 2024
962f495
Fix typo
birgits Sep 13, 2024
6a72db4
Use new function to avoid doubling of code
birgits Sep 13, 2024
d490810
Add test for find_nearest_bus
birgits Sep 13, 2024
44708e1
Minor doc changes
birgits Sep 13, 2024
aba78ef
Add to docstring
birgits Sep 13, 2024
11597b3
Add comments to code
birgits Sep 13, 2024
dca6b45
Change indent
birgits Sep 13, 2024
f30740f
Remove mistakenly added comment
birgits Sep 13, 2024
e669953
Add comment
birgits Sep 13, 2024
a8360f4
Fix incorrect geodesic function call by correcting latitude and longi…
joda9 Sep 17, 2024
0b4989f
fixing issues in connect to bus logic
joda9 Sep 18, 2024
b2d6cff
remove unnecessary lines
joda9 Sep 26, 2024
0c8b175
Fix connect_to_lv_bus return type and error handling
joda9 Sep 27, 2024
1fe6ed1
Update docstring
joda9 Oct 1, 2024
00b8d42
Refactor component data handling in Topology class
joda9 Oct 1, 2024
be272ca
Revert "Refactor component data handling in Topology class"
joda9 Oct 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion edisgo/edisgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ def analyze(

Conducts a static, non-linear power flow analysis using
`PyPSA <https://pypsa.readthedocs.io/en/latest/user-guide/power-flow.html#\
full-non-linear-power-flow>`_
non-linear-power-flow>`_
and writes results (active, reactive and apparent power as well as
current on lines and voltages at buses) to :class:`~.network.results.Results`
(e.g. :attr:`~.network.results.Results.v_res` for voltages).
Expand Down
8 changes: 6 additions & 2 deletions edisgo/io/ding0_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,12 @@ def sort_hvmv_transformer_buses(transformers_df):
grid.import_from_csv_folder(path)

# write dataframes to edisgo_obj
edisgo_obj.topology.buses_df = grid.buses[edisgo_obj.topology.buses_df.columns]
edisgo_obj.topology.lines_df = grid.lines[edisgo_obj.topology.lines_df.columns]
edisgo_obj.topology.buses_df = grid.buses.loc[
:, edisgo_obj.topology.buses_df.columns
]
edisgo_obj.topology.lines_df = grid.lines.loc[
:, edisgo_obj.topology.lines_df.columns
]
if legacy_ding0_grids:
logger.debug("Use ding0 legacy grid import.")
# rename column peak_load to p_set
Expand Down
Loading
Loading