Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

scrollbar

 

Now that the model has run we can access the generated output. We start by getting the waterlevel timeseries for the observation point, by using the GetFlowFlexibleMeshTimeSeries function and passing the model, name of the output and the feature (observation point) to it.

Code Block
languagepy
titleGet timeseries for observation point
waterlevelSeries = GetFlowFlexibleMeshTimeSeries(fmModel, "Water level (waterlevel)", observationPoint)

 

Now we have a list of [datetime, value] that we can plot. To create a chart we start by import the ChartFunctions library and creating an area series for our timeseries.

Code Block
languagepy
titleCreate chartarea series
from Libraries.ChartFunctions import *

areaSeries = CreateAreaSeries(waterlevelSeries)
Code Block
languagepy
titleCreate chart and open view
chart = CreateChart([areaSeries])
OpenView(chart)

 

Code Block
titleImprove chart layout
areaSeries.Color = Color.CadetBlue
areaSeries.Title = "Waterlevel at observation point"
areaSeries.LineVisible = False
areaSeries.PointerVisible = False

chart.Legend.Visible = True
chart.Legend.Alignment = LegendAlignment.Bottom

chart.LeftAxis.Automatic = False
chart.LeftAxis.Minimum = -0.05
chart.LeftAxis.Maximum = 0.66

chart.LeftAxis.Title = "Waterlevel (m)"

 

 

Code Block
languagepy
titleExport data
chart.ExportAsImage("D:\\testImage.jpg", 1000,1000)

ExportListToCsvFile("D:\\test.csv", waterlevelSeries)

 

 

scrollbar