From 49186fa1afac20abd232886789cd7386a7e67b76 Mon Sep 17 00:00:00 2001 From: Kevin Knosala <58529976+k-knosala@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:34:30 +0200 Subject: [PATCH] Replace full_year_plots_only (#231) --- examples/simple_examples.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/simple_examples.py b/examples/simple_examples.py index c326b3b11..ab00b15f8 100644 --- a/examples/simple_examples.py +++ b/examples/simple_examples.py @@ -30,7 +30,7 @@ def first_example( # Set the simulation parameters for the simulation if my_simulation_parameters is None: - my_simulation_parameters = SimulationParameters.full_year_plots_only( + my_simulation_parameters = SimulationParameters.full_year_with_only_plots( year=2021, seconds_per_timestep=60 ) my_sim.set_simulation_parameters(my_simulation_parameters) @@ -96,7 +96,7 @@ def second_example( # Set the simulation parameters for the simulation if my_simulation_parameters is None: - my_simulation_parameters = SimulationParameters.full_year_plots_only( + my_simulation_parameters = SimulationParameters.full_year_with_only_plots( year=2021, seconds_per_timestep=60 ) # use a full year for testing my_sim.set_simulation_parameters(my_simulation_parameters)