Directory testsuite/flattening/libraries/3rdParty/PlanarMechanics/

Total Files:
4
Deleted Files:
18
Lines of Code:
23803

[root]/testsuite/flattening/libraries/3rdParty/PlanarMechanics

Lines of Code

testsuite/flattening/libraries/3rdParty/PlanarMechanics/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 70 (100.0%) 40852 (100.0%) 583.6
alash325 34 (48.6%) 19317 (47.3%) 568.1
sjoelund.se 9 (12.9%) 7116 (17.4%) 790.6
perost 9 (12.9%) 6261 (15.3%) 695.6
adrpo 7 (10.0%) 4895 (12.0%) 699.2
hudson 2 (2.9%) 2270 (5.6%) 1135.0
vitalij 7 (10.0%) 854 (2.1%) 122.0
mahge930 1 (1.4%) 122 (0.3%) 122.0
adeas31 1 (1.4%) 17 (0.0%) 17.0

Most Recent Commits

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

- Expected output.

17 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: checkPlanarMechanicsForTesting.mos (+17 -68)
vitalij 2014-11-19 01:59 Rev.: 23440

-improved simplify
-update test

7 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+7 -7)
perost 2014-10-26 15:22 Rev.: 22958

- Rewrote List package to take advantage of bootstrapped features.
- Refactored Util, moved some functions to new Array package, some to List.
- Better handling of conditional components.
- Various optimizations to handle larger models.

9 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+9 -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)

3891 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+3891 -321)
perost 2014-09-09 10:52 Rev.: 22197

Fix for #2806:
- Remove input/output also from record components that are not top-level.

1464 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+1464 -1464)
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.

4309 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+4309 -4309)
vitalij 2014-08-19 11:24 Rev.: 21907

added some simplify rules

61 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+61 -61)
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)

115 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+115 -115)
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

500 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+500 -500)
vitalij 2014-05-14 18:28 Rev.: 20606

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

7 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+7 -7)
vitalij 2014-05-14 17:28 Rev.: 20604

- added rule
- x*x = x^2

motivation: simplification for derivations as for expression evaluation

203 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+203 -203)
hudson 2014-04-16 11:06 Rev.: 20164

[Janitor mode] Fix whitespace

4 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: PlanarMechanicsForTesting.mo (+4 -4)
adrpo 2014-03-25 22:04 Rev.: 19757

- update tests

7 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+7 -7)
vitalij 2014-03-25 17:46 Rev.: 19749

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

283 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+283 -283)
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.

285 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+285 -285)
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

289 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+289 -289)
perost 2014-02-06 17:49 Rev.: 19003

- Added disableRecordConstructorOutput debug flag.
- Handle matrices in min/max better.
- Handle arrays with more than two dimensions better in product.
- Fix array types when slicing vars with more than two dimensions.

1 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+1 -1)
perost 2014-02-06 14:49 Rev.: 18996

- Changed DAEDump to always print out modifications after the variable name
instead of after the type name.

17 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+17 -17)
vitalij 2013-11-07 17:13 Rev.: 18049

- expand expression only if it can use for simplify

4 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+4 -4)
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.

190 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+190 -190)
adrpo 2013-10-24 15:41 Rev.: 17871

- expected results after revert of r17842

122 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+122 -122)
mahge930 2013-10-23 13:33 Rev.: 17842

Recommit r17828. Updated expected outputs.

122 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+122 -122)
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

2 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+2 -2)
adrpo 2013-09-26 04:25 Rev.: 17388

- fix bug #2363
- keep smooth(0, ...) in Static.mo
- handle smooth(0, ...) in Ceval.mo (smooth(0, constant) -> constant)
- handle smooth in Codegen.tpl
- update expected output for tests
- NOTE: Modelica.Electrical.Analog.Examples.SimpleTriacCircuit gives small numeric differences, use the OpenModelica result file

17 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+17 -17)
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

854 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+854 -854)
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

1 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+1 -1)
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.

2 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+2 -2)
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

2266 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: PlanarMechanicsForTesting.mo (+2266 -2266)
hudson 2013-05-02 20:46 Rev.: 15962

[Janitor mode] Fix tabs

2266 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: PlanarMechanicsForTesting.mo (+2266 -2266)
sjoelund.se 2013-04-25 16:32 Rev.: 15914

Preserve function comments and annotations for external functions

31 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+31 -31)
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.

102 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+102 -102)
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.

6 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+6 -6)
sjoelund.se 2013-02-13 16:16 Rev.: 15164

"StateSelect =" to "stateSelect ="

92 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+92 -92)
sjoelund.se 2012-11-08 14:29 Rev.: 13830

#1931
- Do not scalarize vector equations
+ Except constants, parameters, records, complex types, external objects, and maybe some more

3921 lines of code changed in 2 files:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: checkPlanarMechanicsForTesting.mos (+17 -18), instantiatePlanarMechanicsForTesting.mos (+3904 -2928)
perost 2012-10-17 13:42 Rev.: 13432

- Removed the special case for Real casts when dumping expressions, since
Modelica does not have a Real() function.
- Some SCodeInst fixes.
- Fixed compiler warnings in corbaimpl.cpp.
- Updated testcases due to the expression dumping change.

68 lines of code changed in 1 file:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: instantiatePlanarMechanicsForTesting.mos (+68 -68)
alash325 2012-10-04 00:56 Rev.: 13166

-3rdParty directory is moved to flattening/libraries and simulation/libraries/ directories depending on the type of test files + update Makefile

19313 lines of code changed in 22 files:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: Makefile (+54), PlanarMechanicsForTesting.Examples.ControlledCraneCrab.mos (del), PlanarMechanicsForTesting.Examples.CounterSpin.mos (del), PlanarMechanicsForTesting.Examples.CraneCrab.mos (del), PlanarMechanicsForTesting.Examples.DoublePendulum.mos (del), PlanarMechanicsForTesting.Examples.FreeBody.mos (del), PlanarMechanicsForTesting.Examples.InvertedCraneCrab.mos (del), PlanarMechanicsForTesting.Examples.KinematicLoop.mos (del), PlanarMechanicsForTesting.Examples.KinematicLoop_DynamicStateSelection.mos (del), PlanarMechanicsForTesting.Examples.Pendulum.mos (del), PlanarMechanicsForTesting.Examples.PistonEngine.mos (del), PlanarMechanicsForTesting.Examples.PistonEngine_DynamicStateSelection.mos (del), PlanarMechanicsForTesting.Examples.SimpleCarWithDifferentialGear.mos (del), PlanarMechanicsForTesting.Examples.SingleTrackWithEngine.mos (del), PlanarMechanicsForTesting.Examples.TestDryFrictionWheel.mos (del), PlanarMechanicsForTesting.Examples.TestIdealWheel.mos (del), PlanarMechanicsForTesting.Examples.TestSlipBasedWheel.mos (del), PlanarMechanicsForTesting.Examples.WheelBasedCranCrab.mos (del), PlanarMechanicsForTesting.mo (+3755), checkPlanarMechanicsForTesting.mos (+158), instantiatePlanarMechanicsForTesting.mos (+15346), simulation (del)
alash325 2012-10-03 02:26 Rev.: 13147

- libraries directory are copied to testsuite/flattening directory + delete simulation files + update Makefile

0 lines of code changed in 4 files:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: Makefile (new), PlanarMechanicsForTesting.mo (new), checkPlanarMechanicsForTesting.mos (new), instantiatePlanarMechanicsForTesting.mos (new)
alash325 2012-10-01 19:42 Rev.: 13123

- Deleted wrong works

4 lines of code changed in 4 files:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: Makefile (del), PlanarMechanicsForTesting.mo (del), checkPlanarMechanicsForTesting.mos (del), instantiatePlanarMechanicsForTesting.mos (del)
alash325 2012-09-26 23:05 Rev.: 13064

- testsuite/3rdParty moved to flattening/libraries/3rdParty

0 lines of code changed in 4 files:

  • testsuite/flattening/libraries/3rdParty/PlanarMechanics: Makefile (new), PlanarMechanicsForTesting.mo (new), checkPlanarMechanicsForTesting.mos (new), instantiatePlanarMechanicsForTesting.mos (new)
Generated by StatSVN 0.7.0