Changeset 631 for branches/maintenance/2.2.2
- Timestamp:
- 09/16/07 09:55:10 (11 months ago)
- Location:
- branches/maintenance/2.2.2/Modelica
- Files:
-
- 2 modified
-
Blocks/Tables.mo (modified) (2 diffs)
-
package.mo (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/maintenance/2.2.2/Modelica/Blocks/Tables.mo
r550 r631 488 488 ----------------------------------------------------- 489 489 #1 490 double tab1(5,2) # comment line 491 0 0 492 1 1 493 2 4 494 3 9 495 4 16 496 double tab2(5,2) # another comment line 497 0 0 498 2 2 499 4 8 500 6 18 501 8 32 490 double table2D_1(3,4) # comment line 491 0.0 1.0 2.0 3.0 # u[2] grid points 492 1.0 1.0 3.0 5.0 493 2.0 2.0 4.0 6.0 494 495 double table2D_2(4,4) # comment line 496 0.0 1.0 2.0 3.0 # u[2] grid points 497 1.0 1.0 3.0 5.0 498 2.0 2.0 4.0 6.0 499 3.0 3.0 5.0 7.0 502 500 ----------------------------------------------------- 503 501 </pre> … … 508 506 rows of the file, the elements of the matrix have to be given. 509 507 Several matrices may be defined one after another. 510 </p> 511 </HTML> 508 The matrix elements are interpreted in exactly the same way 509 as if the matrix is given as a parameter. For example, the first 510 column \"table2D_1[2:,1]\" contains the u[1] grid points, 511 and the first row \"table2D_1[1,2:]\" contains the u[2] grid points. 512 </p> 513 514 </html> 512 515 "), Icon( 513 516 Line(points=[-60, 40; -60, -40; 60, -40; 60, 40; 30, 40; 30, -40; -30, -
branches/maintenance/2.2.2/Modelica/package.mo
r630 r631 13 13 autolayout=1), 14 14 version="2.2.2", 15 versionBuild="6 26",16 versionDate="2007-0 8-31",15 versionBuild="631", 16 versionDate="2007-09-16", 17 17 conversion( 18 18 from(version="1.6", … … 578 578 579 579 package ReleaseNotes "Release notes" 580 class Version_2_2_2_BugFixes "Version 2.2.2 with bug fixes" 581 582 annotation (Documentation(info="<html> 583 <p> 584 In this section bug fixes are summarized that have been incorporated 585 since the release of version 2.2.2. 586 587 <p><br> 588 The following <b style=\"color:red\">critical errors</b> have been fixed (i.e. errors 589 that can lead to wrong simulation results): 590 </p> 591 592 <table border=\"1\" cellspacing=0 cellpadding=2 style=\"border-collapse:collapse;\"> 593 <tr><td colspan=\"2\"><b>Package-Name.</b></td></tr> 594 <tr><td valign=\"top\"> Model-Name </td> 595 <td valign=\"top\"> Description text</td> 596 </tr> 597 </table> 598 599 600 <p><br> 601 The following <b style=\"color:red\">uncritical errors</b> have been fixed (i.e. errors 602 that do <b style=\"color:red\">not</b> lead to wrong simulation results, but, e.g., 603 units are wrong or errors in documentation): 604 </p> 605 606 <table border=\"1\" cellspacing=0 cellpadding=2 style=\"border-collapse:collapse;\"> 607 <tr><td colspan=\"2\"><b>Blocks.Tables.</b></td></tr> 608 <tr><td valign=\"top\"> CombiTable2D</td> 609 <td valign=\"top\"> Documentation improved.</td> 610 </tr> 611 </table> 612 613 </html>")); 614 end Version_2_2_2_BugFixes; 580 615 581 616 annotation (Documentation(info="<html>
