Directory testsuite/flattening/libraries/msl22/modelicaAdditions/

Total Files:
13
Deleted Files:
0
Lines of Code:
61098

[root]/testsuite/flattening/libraries/msl22/modelicaAdditions

Lines of Code

testsuite/flattening/libraries/msl22/modelicaAdditions/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 193 (100.0%) 15386 (100.0%) 79.7
perost 37 (19.2%) 4812 (31.3%) 130.0
sjoelund.se 39 (20.2%) 3582 (23.3%) 91.8
hudson 21 (10.9%) 3146 (20.4%) 149.8
adrpo 21 (10.9%) 1957 (12.7%) 93.1
mahge930 20 (10.4%) 925 (6.0%) 46.2
vitalij 49 (25.4%) 854 (5.6%) 17.4
adeas31 6 (3.1%) 110 (0.7%) 18.3

Most Recent Commits

adeas31 2015-03-25 19:00 Rev.: 25258

- Expected output.

110 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+9 -12), Engine2.mos (+9 -12), FourBar1.mos (+9 -12), FourBar2.mos (+9 -12), TwoLoop.mos (+13 -16), robot.mos (+61 -64)
mahge930 2015-03-13 20:38 Rev.: 25096

+ Handle nested array types when creating array equations.
+ Correct subscript ordering when expanding crefs.
+ Fix List.combinationMap to properly order combinations and combination lists. Also accumulate the results.
+ Added List.combination.

784 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+104 -104), Engine2.mos (+120 -120), FourBar1.mos (+80 -80), FourBar2.mos (+88 -88), TwoLoop.mos (+208 -208), robot.mos (+184 -184)
mahge930 2015-02-18 14:38 Rev.: 24621

Re-enable diagonal() simplification with minor changes. Back-end can't handle unsimplified ones in some cases.

108 lines of code changed in 4 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: FourBar1.mos (+36 -4), FourBar2.mos (+36 -4), TwoLoop.mos (+27 -3), robot.mos (+9 -1)
mahge930 2015-02-17 19:00 Rev.: 24616

+ Fix #2726.
Handle diagonal() in code generation instead of simplifying it.

12 lines of code changed in 4 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: FourBar1.mos (+4 -36), FourBar2.mos (+4 -36), TwoLoop.mos (+3 -27), robot.mos (+1 -9)
mahge930 2015-02-16 20:19 Rev.: 24602

+ Removed some unnecessary asub creations.
+ consider subscripts when looking for cref dependencies.

18 lines of code changed in 3 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+6 -6), Engine2.mos (+6 -6), robot.mos (+6 -6)
vitalij 2014-11-19 01:59 Rev.: 23440

-improved simplify
-update test

102 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+6 -6), Engine2.mos (+18 -18), FourBar1.mos (+6 -6), FourBar2.mos (+18 -18), TwoLoop.mos (+18 -18), robot.mos (+36 -36)
mahge930 2014-11-10 11:51 Rev.: 23292

+ Put correct types when vectorizing qualified assignments.
- this used to send wrong types all the way to code generation.

3 lines of code changed in 3 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: FourBar1.mos (+1 -1), FourBar2.mos (+1 -1), robot.mos (+1 -1)
adrpo 2014-09-30 16:29 Rev.: 22515

Fix bug: #2854 (do scope versioning also in the top scope, but not for builtin classes and builtin types)
- note that flattening/modelica/declarations/Constant12.mo is actually correct now,
see m:#1397, well, except for the fact that it should tell that A.y does not have a binding

248 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+23 -5), Engine2.mos (+23 -5), FourBar1.mos (+33 -6), FourBar2.mos (+33 -6), TwoLoop.mos (+73 -10), robot.mos (+63 -9)
adrpo 2014-09-30 06:33 Rev.: 22496

Merged branches/FFrontEnd into trunk/

Main changes:
- changed the environment to support both non-destructive and destructive updates
- Env.Cache -> FCore.Cache, Env.Env -> FCore.Graph
- FCore.Graph is not a list of Frames anymore is a stucture where the previous list is saved in component "scope"
- all Frames in the new FCore.Graph are FCore.Ref pointing to FCore.Node having different FCore.Data depending on what they are
- all FCore.Nodes have children (FCore.CAvlTree) which maps names to FCore.Ref (which is Array<FCore.Node>, size 1)
- FGraph.openScope pushes an already existing FCore.Ref (or a new one) on the scope list
- for all components having modifications the last class in the type path is renamed to include the
prefix, see FGraph.createVersionScope (this is done because we need unique names for redeclared functions,
records, etc and we need a unique type scope for that)
Example: A.B.C c -> A.B.C$c c

Bug fixes:
- calling function via component (multibody MSL 3.2.1 patch not needed anymore, will remove it in a next commit)
- #2837 array equations wrongly handled in RemoveSimpleEquations (used in ThermoPower and PowerSystems libraries, etc)
#2784, #2727, #2739 (missing modifiers combined with redeclare and unique function generation for redeclared functions)
#2835 - handle overconstrained connectors extending basic types (used in PowerSystems library)
- do not loose modifications on derived classes handled by InstExtends
- some error messages about missing components in Fluid library are gone
- for components of size 0 do not check if they are assigned before use in functions (residue in equalityConstraint)

217 lines of code changed in 1 file:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: robot.mos (+217 -32)
perost 2014-09-08 16:19 Rev.: 22170

Fix for #2806:
- Remove input/output from variables which are not at top-level or inside a
top-level connector.

2739 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+270 -270), Engine2.mos (+285 -285), FourBar1.mos (+308 -308), FourBar2.mos (+317 -317), TwoLoop.mos (+654 -654), robot.mos (+905 -905)
vitalij 2014-08-19 11:24 Rev.: 21907

added some simplify rules

2 lines of code changed in 2 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+1 -1), Engine2.mos (+1 -1)
sjoelund.se 2014-08-18 11:11 Rev.: 21896

Added some tail recursion for the connection trie graph (moves some variables around in equations, and some equations too)

565 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+43 -43), Engine2.mos (+50 -50), FourBar1.mos (+67 -67), FourBar2.mos (+67 -67), TwoLoop.mos (+130 -130), robot.mos (+208 -208)
vitalij 2014-08-06 10:38 Rev.: 21775

added rule x/(r*y) => (1/r)*x/y

6 lines of code changed in 1 file:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: robot.mos (+6 -6)
vitalij 2014-06-18 23:36 Rev.: 21187

- imporved rule x/c1 = c2*x

84 lines of code changed in 4 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+1 -1), FourBar1.mos (+28 -28), FourBar2.mos (+27 -27), TwoLoop.mos (+28 -28)
sjoelund.se 2014-06-03 12:34 Rev.: 20931

Fix some of the sorting of components based on dependencies in the bindings
- Would silently fail in some cases in the past
- Some models now give no warnings in compile-time and run-time
- AIMS_Start gives a different result for one variable
- UnevaluateableFixedAttribute.mos gives different results for RML and bootstrapped omc versions

317 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+186 -186), Engine2.mos (+33 -33), FourBar1.mos (+12 -12), FourBar2.mos (+12 -12), TwoLoop.mos (+26 -26), robot.mos (+48 -48)
perost 2014-05-26 15:38 Rev.: 20832

- Improved DAEDumpTpl and switched to it as default.
- Untupled min and max in DAE.VariableAttributes.

484 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+59 -59), Engine2.mos (+74 -74), FourBar1.mos (+54 -54), FourBar2.mos (+69 -69), TwoLoop.mos (+137 -137), robot.mos (+91 -91)
vitalij 2014-05-14 18:28 Rev.: 20606

- added rule
a - (-b)*c = a + b*c

51 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+3 -3), Engine2.mos (+9 -9), FourBar1.mos (+3 -3), FourBar2.mos (+9 -9), TwoLoop.mos (+9 -9), robot.mos (+18 -18)
vitalij 2014-05-14 17:28 Rev.: 20604

- added rule
- x*x = x^2

motivation: simplification for derivations as for expression evaluation

104 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+11 -11), Engine2.mos (+17 -17), FourBar1.mos (+10 -10), FourBar2.mos (+16 -16), TwoLoop.mos (+16 -16), robot.mos (+34 -34)
hudson 2014-04-16 11:06 Rev.: 20164

[Janitor mode] Fix whitespace

568 lines of code changed in 7 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1Total.mo (+87 -87), Engine2Total.mo (+88 -88), FourBar1Total.mo (+58 -58), FourBar2Total.mo (+58 -58), PendulumTotal.mo (+54 -54), TwoLoopTotal.mo (+85 -85), robotTotal.mo (+138 -138)
sjoelund.se 2014-04-09 13:53 Rev.: 20063

Adding new DAE.Element: INITIAL_NORETCALL (for initial equation sections)

6 lines of code changed in 5 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+1 -1), Engine2.mos (+1 -3), FourBar1.mos (+1 -1), FourBar2.mos (+1 -3), TwoLoop.mos (+2 -4)
adrpo 2014-03-25 22:04 Rev.: 19757

- update tests

51 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+3 -3), Engine2.mos (+9 -9), FourBar1.mos (+3 -3), FourBar2.mos (+9 -9), TwoLoop.mos (+9 -9), robot.mos (+18 -18)
vitalij 2014-03-25 17:46 Rev.: 19749

- added rules for signum
- added rule for e/exp(e1) => e * exp(-e1)

51 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+3 -3), Engine2.mos (+9 -9), FourBar1.mos (+3 -3), FourBar2.mos (+9 -9), TwoLoop.mos (+9 -9), robot.mos (+18 -18)
vitalij 2014-03-24 22:51 Rev.: 19725

added rule for (e * e1) * e => e1*e^2

88 lines of code changed in 4 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: FourBar1.mos (+12 -12), FourBar2.mos (+12 -12), TwoLoop.mos (+9 -9), robot.mos (+55 -55)
perost 2014-03-04 21:38 Rev.: 19422

Fix for #2607:
- Take associativity into account when printing expressions.

92 lines of code changed in 5 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+13 -13), Engine2.mos (+15 -15), FourBar1.mos (+16 -16), FourBar2.mos (+17 -17), TwoLoop.mos (+31 -31)
perost 2014-02-18 14:24 Rev.: 19160

Fix for #2587:
- Added simplification rules -{e1, e2, ...} => {-e1, -e2, ...} and -[e1, e2, ...] => [-e1, e2, ...].
- Improved Static.elabMatrixCatTwoExp so it handles more cases.

320 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+35 -35), Engine2.mos (+41 -41), FourBar1.mos (+34 -34), FourBar2.mos (+37 -37), TwoLoop.mos (+75 -75), robot.mos (+98 -98)
vitalij 2014-02-16 18:48 Rev.: 19130

- new simplify rule for a + (-b)/x = a - b/x

10 lines of code changed in 3 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+2 -2), Engine2.mos (+2 -2), robot.mos (+6 -6)
vitalij 2014-02-14 00:04 Rev.: 19111

- simplify rule x/r = x *(1/r) with test of numerical issues
can someone have a look of
./simulation/libraries/3rdParty/ThermoSysPro/ThermoSysPro.Examples.SimpleExamples.TestJunctions4.mos

236 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+12 -12), Engine2.mos (+13 -13), FourBar1.mos (+50 -50), FourBar2.mos (+50 -50), TwoLoop.mos (+56 -56), robot.mos (+55 -55)
perost 2014-02-05 18:24 Rev.: 18987

Fix for #2062:
- Better handling of cardinality.

0 lines of code changed in 1 file:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: robot.mos (-6)
vitalij 2013-11-07 17:13 Rev.: 18049

- expand expression only if it can use for simplify

120 lines of code changed in 5 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+1 -1), FourBar1.mos (+40 -40), FourBar2.mos (+39 -39), TwoLoop.mos (+31 -31), robot.mos (+9 -9)
sjoelund.se 2013-10-31 21:52 Rev.: 17956

- Remove useless case in simplify (makes code slower)
- Removed some flattening tests since whenever a tiny simplify change is performed all thermosyspro and multibody flattening examples needed to be updated. They are simulated, and that is what is important.

29 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+3 -3), Engine2.mos (+3 -3), FourBar1.mos (+4 -4), FourBar2.mos (+4 -4), TwoLoop.mos (+8 -8), robot.mos (+7 -7)
adrpo 2013-10-08 23:25 Rev.: 17614

- some support for ExternalMedia (some more work is needed for full support)
- add function calls and external function inputs to dependency analysis in element sorting
- use Inst.updateCompeltsMods just in Inst.instElementList2

36 lines of code changed in 1 file:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: robot.mos (+36 -36)
adrpo 2013-09-22 12:07 Rev.: 17326

Fix for bug: #2346
- sort also the variable components for instantiation based on their bindings
- sort the DAE in the order it is defined in the Modelica file

1369 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+432 -432), Engine2.mos (+776 -776), FourBar1.mos (+28 -28), FourBar2.mos (+28 -28), TwoLoop.mos (+56 -56), robot.mos (+49 -49)
sjoelund.se 2013-06-04 20:23 Rev.: 16216

Move some expressions around when you do simplifications only if this improves the complexity of the expression

81 lines of code changed in 3 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: FourBar1.mos (+27 -27), FourBar2.mos (+27 -27), TwoLoop.mos (+27 -27)
adrpo 2013-05-14 01:13 Rev.: 16024

- QUITE SOME CHANGES. Do make clean!
- fix old inst to work with Media and Fluid by default with no flags.
- got rid of some files and some of the error messages
- i will still keep +d=scodeInstShortcut for a while longer until I test more.
- Modelica.Fluid.Examples.IncompressibleFluidNetwork.mos segfaults on Linux, works in Windows,
Modelica.Fluid.Examples.HeatingSystem does not work anymore (NLS problems again) I guess due to parameters moving around.
I will investigate more these issues in the next days.

36 lines of code changed in 1 file:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: robot.mos (+36 -36)
sjoelund.se 2013-05-02 21:17 Rev.: 15963

Revert r15962 (accidently replaced 8 spaces with 2 spaces; was supposed to be 1 tab to 2 spaces but text editors messed up the command)
Contact me if you have problems merging your working copy

2578 lines of code changed in 7 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1Total.mo (+410 -410), Engine2Total.mo (+415 -415), FourBar1Total.mo (+124 -124), FourBar2Total.mo (+127 -127), PendulumTotal.mo (+83 -83), TwoLoopTotal.mo (+343 -343), robotTotal.mo (+1076 -1076)
hudson 2013-05-02 20:46 Rev.: 15962

[Janitor mode] Fix tabs

2578 lines of code changed in 14 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1Total.mo (+410 -410), Engine2Total.mo (+415 -415), FourBar1Total.mo (new), FourBar2Total.mo (new), PendulumTotal.mo (+83 -83), TwoLoopTotal.mo (+343 -343), robotTotal.mo (new)
sjoelund.se 2013-04-25 16:32 Rev.: 15914

Preserve function comments and annotations for external functions

6 lines of code changed in 6 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+1 -1), Engine2.mos (+1 -1), FourBar1.mos (+1 -1), FourBar2.mos (+1 -1), TwoLoop.mos (+1 -1), robot.mos (+1 -1)
perost 2013-04-22 13:33 Rev.: 15874

Fix for #2159:
- Sort connector components before connecting them, to make sure that their
order doesn't matter.

1176 lines of code changed in 11 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: Engine1.mos (+156 -156), Engine2.mos (new), FourBar1.mos (new), FourBar2.mos (new), TwoLoop.mos (+312 -312), robot.mos (+276 -276)
perost 2013-04-16 14:30 Rev.: 15834

- Preserve the comment for the flattened class in the flattened output.
- Don't translate enumeration literals to integers when simplifying asubs.

1 lines of code changed in 2 files:

  • testsuite/flattening/libraries/msl22/modelicaAdditions: robot.mos (+1 -1)
Generated by StatSVN 0.7.0