Skip to content

Commit

Permalink
Replace full_year_plots_only (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-knosala authored Oct 16, 2023
1 parent a3c65f9 commit 49186fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/simple_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 49186fa

Please sign in to comment.