Changeset 485 for branches/maintenance/2.2.1
- Timestamp:
- 02/02/07 16:38:13 (19 months ago)
- Location:
- branches/maintenance/2.2.1/Modelica
- Files:
-
- 2 modified
-
Blocks/Continuous.mo (modified) (1 diff)
-
package.mo (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/maintenance/2.2.1/Modelica/Blocks/Continuous.mo
r463 r485 286 286 " y = " + String(y) + ", outMin = " + String(outMin) + ", outMax = " + String(outMax)); 287 287 else 288 der(y) = smooth(0,if y < outMin and u < 0 or y > outMax and u > 0 then 0 else k*u);288 der(y) = if y < outMin and u < 0 or y > outMax and u > 0 then 0 else k*u; 289 289 end if; 290 290 end LimIntegrator; -
branches/maintenance/2.2.1/Modelica/package.mo
r479 r485 78 78 The changes are: 79 79 <ul> 80 <li>Removed smooth from <a href=\"Modelica://Modelica.Blocks.Continuous.LimIntegrator\">LimIntegrator</a>, since 81 the expression is non-smooth for changes in y. 82 </li> 80 83 <li>Several models in the <a href=\"Modelica://Modelica.Electrical.Digital\">Digital</a> 81 84 library have been rewritten for better performance, without modifying the behaviour.
