From df4eb85a19078e32709d66f9b868222bdebc925c Mon Sep 17 00:00:00 2001 From: Fabian Date: Fri, 18 Nov 2022 09:08:07 +0100 Subject: [PATCH] fix typos --- doc/data.csv | 4 ++-- doc/installation.rst | 2 +- doc/release_notes.rst | 2 +- doc/spatial_resolution.rst | 2 +- scripts/add_existing_baseyear.py | 6 +++--- scripts/build_industry_sector_ratios.py | 4 ++-- scripts/build_retro_cost.py | 16 ++++++++-------- scripts/helper.py | 2 +- scripts/plot_summary.py | 4 ++-- scripts/prepare_sector_network.py | 6 +++--- 10 files changed, 24 insertions(+), 24 deletions(-) diff --git a/doc/data.csv b/doc/data.csv index 2c6ac8c8..49fbc536 100644 --- a/doc/data.csv +++ b/doc/data.csv @@ -23,7 +23,7 @@ Floor area missing in hotmaps building stock data,floor_area_missing.csv,unknown Comparative level investment,comparative_level_investment.csv,Eurostat,https://ec.europa.eu/eurostat/statistics-explained/index.php?title=Comparative_price_levels_for_investment Electricity taxes,electricity_taxes_eu.csv,Eurostat,https://appsso.eurostat.ec.europa.eu/nui/show.do?dataset=nrg_pc_204&lang=en Building topologies and corresponding standard values,tabula-calculator-calcsetbuilding.csv,unknown,https://episcope.eu/fileadmin/tabula/public/calc/tabula-calculator.xlsx -Retrofitting thermal envelope costs for Germany,retro_cost_germany.csv,unkown,https://www.iwu.de/forschung/handlungslogiken/kosten-energierelevanter-bau-und-anlagenteile-bei-modernisierung/ +Retrofitting thermal envelope costs for Germany,retro_cost_germany.csv,unknown,https://www.iwu.de/forschung/handlungslogiken/kosten-energierelevanter-bau-und-anlagenteile-bei-modernisierung/ District heating most countries,jrc-idees-2015/,CC BY 4.0,https://ec.europa.eu/jrc/en/potencia/jrc-idees,, -District heating missing countries,district_heat_share.csv,unkown,https://www.euroheat.org/knowledge-hub/country-profiles,, +District heating missing countries,district_heat_share.csv,unknown,https://www.euroheat.org/knowledge-hub/country-profiles,, diff --git a/doc/installation.rst b/doc/installation.rst index 6637cdfd..f5cb7c7a 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -54,7 +54,7 @@ The requirements are the same as `PyPSA-Eur xarray version >= 0.15.1, you will need the latest master branch of atlite version 0.0.2. -You can create an enviroment using the environment.yaml file in pypsa-eur/envs: +You can create an environment using the environment.yaml file in pypsa-eur/envs: .. code:: bash diff --git a/doc/release_notes.rst b/doc/release_notes.rst index 51c533f4..51e9b43d 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -28,7 +28,7 @@ incorporates retrofitting options to hydrogen. * New rule ``cluster_gas_network`` that clusters the gas transmission network data to the model resolution. Cross-regional pipeline capacities are aggregated - (while pressure and diameter compability is ignored), intra-regional pipelines + (while pressure and diameter compatibility is ignored), intra-regional pipelines are dropped. Lengths are recalculated based on the regions' centroids. * With the option ``sector: gas_network:``, the existing gas network is diff --git a/doc/spatial_resolution.rst b/doc/spatial_resolution.rst index d410065a..ff11cc39 100644 --- a/doc/spatial_resolution.rst +++ b/doc/spatial_resolution.rst @@ -15,7 +15,7 @@ The total number of nodes for Europe is set in the ``config.yaml`` file under ``clusters``. The number of nodes can vary between 37, the number of independent countries / synchronous areas, and several hundred. With 200-300 nodes the model needs 100-150 GB RAM to solve -with a commerical solver like Gurobi. +with a commercial solver like Gurobi. Not all of the sectors are at the full nodal resolution, and some diff --git a/scripts/add_existing_baseyear.py b/scripts/add_existing_baseyear.py index 0c60288a..e5b7e1d1 100644 --- a/scripts/add_existing_baseyear.py +++ b/scripts/add_existing_baseyear.py @@ -165,11 +165,11 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas df_agg.loc[biomass_i, 'DateOut'] = df_agg.loc[biomass_i, 'DateOut'].fillna(dateout) - # drop assets which are already phased out / decomissioned + # drop assets which are already phased out / decommissioned phased_out = df_agg[df_agg["DateOut"] Euro/MWh capital_cost = retro_data.loc[(ct, sec), ("cost")] * floor_area_node / \ @@ -2565,7 +2565,7 @@ def set_temporal_aggregation(n, opts, solver_name): if m is not None: n = average_every_nhours(n, m.group(0)) break - # representive snapshots + # representative snapshots m = re.match(r"(^\d+)sn$", o, re.IGNORECASE) if m is not None: sn = int(m[1])