Skip to content

Commit 7752478

Browse files
author
Jon Vegard Venås
committed
Add suggestions from review
1 parent 33d20bf commit 7752478

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

docs/src/how-to/improve-performance.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# [Improve performance](@id how_to-improve_performance)
22

3-
Due to the just-in-time (JIT) compilation of Julia, the instantiation of the `EnergyModelsGUI` window takes some time (but reopening the windo will take less time) and this also includes interactive features in the GUI (plotting a plot over `OperationalPeriod`s is a lot faster compared to the first plot).
3+
Due to the just-in-time (JIT) compilation of Julia, the instantiation of the `EnergyModelsGUI` window takes some time (but reopening the window will take less time).
4+
This also includes interactive features in the GUI (creating a the first plot is a lot lower than the subsequent plots).
45

56
That being said, it is possible to boost startup time by turning of redundant features.
67
One can for example plot sub-areas only on demand (which for large system significantly reduces setup of the `GUI`) through

docs/src/how-to/use-custom-background-map.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Use custom backgruond map](@id how_to-use_custom_backgruond_map)
22

3-
The GUI enables user defined background maps in `.geojson` format through the `GUI` constructor parameter `String::map_boundary_file`. One could for example download NUTS boundaries as GeoJSON from [datahub.io](https://datahub.io/core/geo-nuts-administrative-boundaries) and save this file at a desired location and use this file path as `map_boundary_file`.
3+
The GUI enables user defined background maps in `.geojson` format through the `GUI` constructor parameter `String::map_boundary_file`. One could for example download NUTS boundaries as GeoJSON from [datahub.io](https://datahub.io/core/geo-nuts-administrative-boundaries), save this file at a desired location and use this file path as `map_boundary_file`.
44

55
Downloading [NUTS2](https://r2.datahub.io/clt98mkvt000ql70811z8xj6l/main/raw/data/NUTS_RG_60M_2024_4326_LEVL_2.geojson), one can with a EMX-case variable `case`
66

test/example_all_structures.jl

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,13 @@ This comprehensive example includes:
3434
- Sink-source examples: both operational and investment variants, connected via hub for `Power`.
3535
3636
All subsystems are connected through the global multi-carrier hub, demonstrating integration of:
37-
- EnergyModelsBase, EnergyModelsGeography, EnergyModelsHydrogen, EnergyModelsCO2,
38-
EnergyModelsRenewableProducers, EnergyModelsHeat, EnergyModelsInvestments
37+
- EnergyModelsBase v0.9.3
38+
- EnergyModelsCO2 v0.7.6
39+
- EnergyModelsGeography v0.11.3
40+
- EnergyModelsHeat v0.1.3
41+
- EnergyModelsHydrogen v0.8.3
42+
- EnergyModelsInvestments v0.8.1
43+
- EnergyModelsRenewableProducers v0.6.7
3944
"""
4045
function generate_all_in_one_case()
4146
# -----------------------------

0 commit comments

Comments
 (0)