eflips-depot 4.3.5__tar.gz → 4.3.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/PKG-INFO +1 -1
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/api/__init__.py +1 -1
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/pyproject.toml +1 -1
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/LICENSE.md +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/README.md +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/__init__.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/api/defaults/default_settings.json +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/api/private/__init__.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/api/private/depot.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/api/private/smart_charging.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/api/private/util.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/configuration.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/depot.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/evaluation.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/filters.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/input_epex_power_price.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/__init__.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/doc/__init__.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/doc/direct_details.pdf +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/evaluation.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/opt_tools/__init__.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/opt_tools/crossover.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/opt_tools/fitness_c_urfd.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/opt_tools/fitness_util.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/opt_tools/init.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/opt_tools/mutation.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/optimize_c_urfd.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/packing.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/settings.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/template_creation.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/util.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/plots.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/processes.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/rating.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/resources.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/settings_config.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/simple_vehicle.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/simulation.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/smart_charging.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/standalone.py +0 -0
- {eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/validation.py +0 -0
|
@@ -1389,7 +1389,7 @@ def init_simulation(
|
|
|
1389
1389
|
# TODO potential edit if we make vehicle type of an area a list
|
|
1390
1390
|
for p in area.processes:
|
|
1391
1391
|
if p.electric_power is not None and p.duration is None:
|
|
1392
|
-
vehicle_count
|
|
1392
|
+
vehicle_count += area.capacity
|
|
1393
1393
|
|
|
1394
1394
|
assert (
|
|
1395
1395
|
vehicle_count > 0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{eflips_depot-4.3.5 → eflips_depot-4.3.6}/eflips/depot/layout_opt/opt_tools/fitness_c_urfd.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|