Skip to content

TransientAnalysis

This is an analysis that performs a transient simulation of the specified model.

This defines an entirely new type of analysis (not derived from an existing analysis)

Usage

TransientAnalysis(...)

Source

# This is an analysis that performs a transient simulation of the specified `model`.
analysis TransientAnalysis
  extends Analysis
  model::EmptyComponent = EmptyComponent()
  parameter alg::String = "auto"
  parameter start::Time = 0
  parameter stop::Time
  parameter abstol::Real = 1e-6
  parameter reltol::Real = 1e-6
  parameter saveat::Real = 0
  parameter dtmax::Time = 0
  parameter IfLifting::Boolean = false
end
  • Examples