Skip to content
Snippets Groups Projects

Handle different start and end times of components

Merged Martin Lange requested to merge start-times into main
6 files
+ 22
22
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -70,7 +70,7 @@ File ``src/scale.py``:
generator.outputs["Value"] >> adapter >> consumer.inputs["Input"]
comp.run(datetime(2000, 1, 2))
comp.run(t_max=datetime(2000, 1, 2))
print(fm.data.strip_data(consumer.data["Input"]))
@@ -244,7 +244,7 @@ In :meth:`.Adapter._get_data`, we can now do the interpolation whenever data is
generator.outputs["Value"] >> adapter >> consumer.inputs["Input"]
comp.run(datetime(2000, 1, 15))
comp.run(t_max=datetime(2000, 1, 15))
print(fm.data.strip_data(consumer.data["Input"]))
Loading