Differential Variables

Main.DifferentialVariables History

Show minor edits - Show changes to output

June 16, 2015, at 06:44 PM by 45.56.3.184 -
Deleted lines 0-1:
!! Differential Variables
Changed line 13 from:
(:table border=1 width=50% align=left bgcolor=#EEEEEE cellspacing=0:)
to:
(:table border=1 width=100% align=left bgcolor=#EEEEEE cellspacing=0:)
April 23, 2009, at 04:54 PM by 158.35.225.231 -
Changed lines 29-30 from:
     ! x is the first order lag of parameter u with time constant tau
to:
     ! x is the first order lag of parameter u
     ! with time constant tau
October 09, 2008, at 01:22 PM by 158.35.225.231 -
Changed line 3 from:
Differential states are variables that have the differential operator ($) applied in at least one equation.  These differential states are declared in the variables section without the differential operator.  For dynamic problems, the differential variables are converted to algebraic variables through orthogonal collocation on finite elements.  This form allows dynamic problems to be solved by nonlinear programming (NLP) solvers.
to:
Differential states are variables that have the differential operator ($) applied in at least one equation.  These differential states are declared in the variables section without the differential operator.  For dynamic problems, the differential variables are converted to algebraic variables through orthogonal collocation on finite elements.  This discretized form allows dynamic problems to be solved by nonlinear programming (NLP) solvers.
October 09, 2008, at 12:58 PM by 158.35.225.231 -
Changed line 3 from:
Differential states are variables that have the differential operator ($) applied in at least one equation.  These differential states are declared in the variables section as any other variable.
to:
Differential states are variables that have the differential operator ($) applied in at least one equation.  These differential states are declared in the variables section without the differential operator.  For dynamic problems, the differential variables are converted to algebraic variables through orthogonal collocation on finite elements.  This form allows dynamic problems to be solved by nonlinear programming (NLP) solvers.
September 25, 2008, at 06:42 PM by 158.35.225.230 -
Changed lines 1-6 from:



!!! Consistent Initial Conditions

Forward stepping algorithms such as DASSL, DASPK, or CVODE generally require ordinary differential equations (ODEs) or index-1 differential algebraic equations (DAEs) and consistent initial conditions.  This is not a restriction with simultaneous methods as used by %blue%A%red%P%black%Monitor.  Also, ODEs or DAEs of any index can be solved.
to:
!! Differential Variables

Differential states are variables that have the differential operator ($) applied in at least one equation.  These differential states are declared in the variables section as any other variable.

!!! DAE Index Restrictions

Differential and algebraic equation (DAE) index is the number of times equations must be differentiated to restore them to an ODE form.  Higher (>=2) index DAE problems are overcome with techniques used in this software.  ODEs or DAEs of any index can be solved.

!!! Consistent Initial Conditions for Dynamic Problems

Sequential ODE and DAE solution approaches require consistent initial conditions.  This is not a restriction with %blue%A%red%P%black%Monitor because of the simultaneous approach.  The initial conditions do not have to be consistent to achieve a feabile solution.  The time-shifting approach guarantees that the initial conditions are consistent after one cycle. 

!!! Example

(:table border=1 width=50% align=left bgcolor=#EEEEEE cellspacing=0:)
(:cellnr:)
 ! Example model with a differential equation
 Model example
  Parameters
    u = 1  ! input
    tau = 5 ! time constant
  End Parameters
 
  Variables
    x = 1  ! initial condition
  End Variables

  Equations
    ! x is the first order lag of parameter u with time constant tau
    tau * $x = -x + u
  End Equations
 End Model
(:tableend:)


September 25, 2008, at 06:32 PM by 158.35.225.230 -
Added lines 1-7:



!!! Consistent Initial Conditions

Forward stepping algorithms such as DASSL, DASPK, or CVODE generally require ordinary differential equations (ODEs) or index-1 differential algebraic equations (DAEs) and consistent initial conditions.  This is not a restriction with simultaneous methods as used by %blue%A%red%P%black%Monitor.  Also, ODEs or DAEs of any index can be solved.