Changes between Initial Version and Version 1 of Ticket #2525
- Timestamp:
- 2013-12-30T16:36:16Z (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2525
- Property Component Backend → Frontend
- Property Owner changed from to
-
Ticket #2525 – Description
initial v1 1 1 The following model doesn't simulate in OM but does run in Dymola. Martin Sjölund says it's a bug. :-) Here is the code: 2 2 {{{#!mo 3 3 model Rod_ForLoop "Modeling heat conduction in a rod using a for loop" 4 4 type Temperature=Real(unit="K", min=0); … … 37 37 rho*V*C*der(T[end]) = -h*(T[end]-Tamb)-k*A/(L/n)*(T[end]-T[end-1]); 38 38 end Rod_ForLoop; 39 }}}