From 561688d27465d467c5f28bad43b9bf964148434d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Sch=C3=B6nfeldt?= Date: Mon, 16 Oct 2023 19:40:47 +0200 Subject: [PATCH] Tell about need for timeincrement in MP models As described in #979, timeincrement currently needs to be set for multi period optimisation models. --- src/oemof/solph/_energy_system.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/oemof/solph/_energy_system.py b/src/oemof/solph/_energy_system.py index 89c3d22d3..de2d2ad79 100644 --- a/src/oemof/solph/_energy_system.py +++ b/src/oemof/solph/_energy_system.py @@ -133,8 +133,7 @@ def __init__( else: msg = ( "Ensure that your timeindex and timeincrement are " - "consistent.\nIf you are not considering non-equidistant " - "timeindices, consider only specifying a timeindex." + "consistent." ) warnings.warn(msg, debugging.ExperimentalFeatureWarning)