Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
{}
Wiki Markup
scrollbar

Exercise outline

We want to run the FM model and set its time parameters.

...

unmigrated-inline-wiki-markup
Code Block
languagepython
#region Run model (this takes some time +- 0.5 min)

fmModel.TimeStep = TimeSpan.FromMinutes(1) # time step 1 min
fmModel.StopTime = fmModel.StartTime.AddHours(1) # calculate 1 hour

ActivityRunner.RunActivity(fmModel)

#endregion
{



}
scrollbar