[root]/testsuite/flattening/libraries/msl31
fluid
(0 files, 0 lines)
media
(0 files, 0 lines)
multibody
(0 files, 0 lines)
checkingModels
(0 files, 0 lines)
elementary
(0 files, 0 lines)
loops
(0 files, 0 lines)
rotational3deffects
(0 files, 0 lines)
systems
(0 files, 0 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 262 (100.0%) | 165922 (100.0%) | 633.2 |
alash325 | 48 (18.3%) | 142578 (85.9%) | 2970.3 |
sjoelund.se | 70 (26.7%) | 10038 (6.0%) | 143.4 |
adrpo | 53 (20.2%) | 8254 (5.0%) | 155.7 |
perost | 47 (17.9%) | 4097 (2.5%) | 87.1 |
adeas31 | 9 (3.4%) | 357 (0.2%) | 39.6 |
mahge930 | 8 (3.1%) | 226 (0.1%) | 28.2 |
lochel | 11 (4.2%) | 190 (0.1%) | 17.2 |
vitalij | 11 (4.2%) | 110 (0.1%) | 10.0 |
jfrenkel | 5 (1.9%) | 72 (0.0%) | 14.4 |
- Expected output.
238 lines of code changed in 6 files:
- Fix the checkModel output.
- Fix failing tests.
119 lines of code changed in 3 files:
- Improved deduction of implicit iteration ranges in for-loops.
- Added ALG_ASSERT, ALG_TERMINATE and ALG_REINIT to SCode.Statement,
to mimic how SCode.EEquation is structured.
- Various code cleanup.
1 lines of code changed in 1 file:
+ Removed some unnecessary asub creations.
+ consider subscripts when looking for cref dependencies.
68 lines of code changed in 3 files:
imporved negate for binary
8 lines of code changed in 1 file:
ExpressionSimplify:
- improved log and exp rules
- exp(e*log(x)) -> exp(...*log(x)*...)
- log(1/x) -> -log(x)
log(sqrt(x)) -> 1/2*log(x)
1 lines of code changed in 1 file:
+ Put correct types when vectorizing qualified assignments.
- this used to send wrong types all the way to code generation.
1 lines of code changed in 1 file:
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)
201 lines of code changed in 3 files:
#2786
- Fix code generation for multiple iterators (threaded)
- Ceval constant function calls in the front-end
1 lines of code changed in 1 file:
Fix for #2806:
- Remove input/output from variables which are not at top-level or inside a
top-level connector.
2494 lines of code changed in 9 files:
Fix MatchCase8 and expected output
4 lines of code changed in 1 file:
Started using elabExpInExpression instead of elabExp in many places (so functions returning multiple outputs work better)
Note: This interferes slightly with the MetaModelica type system (things RML did not handle; so no changes needed). The changes cause MetaModelica models using equations with tuples to fail (but that is okay; we do not use MetaModelica in models)
4 lines of code changed in 1 file:
Do not test the broken 3.1 M_OLine test
0 lines of code changed in 1 file:
added simplify rule
2 lines of code changed in 1 file:
added some simplify rules
6 lines of code changed in 3 files:
Added some tail recursion for the connection trie graph (moves some variables around in equations, and some equations too)
806 lines of code changed in 6 files:
Tail-recursive instArray2 for DIM_INTEGER (at the cost of moving some equations around)
1376 lines of code changed in 4 files:
Allow DIM_EXP on both sides of a matrix multiplication
28 lines of code changed in 1 file:
#2770 Handle vectorization of function calls with unknown array dimensions better
1 lines of code changed in 1 file:
+ Fix #2688. Removed replacing of loop iterator dependent crefs with ASUB expressions.
6 lines of code changed in 1 file:
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
2437 lines of code changed in 4 files:
- Improved DAEDumpTpl and switched to it as default.
- Untupled min and max in DAE.VariableAttributes.
848 lines of code changed in 6 files:
Change Error_rml to do the same thing Error_omc does (it works as long as you call the functions through dynload)
7 lines of code changed in 1 file:
- Fix LAPACK test by not testing dgegv, since it gives different results with
different LAPACK versions and is anyways deprecated.
34 lines of code changed in 1 file:
- update tests
6 lines of code changed in 1 file:
- added rules for signum
- added rule for e/exp(e1) => e * exp(-e1)
6 lines of code changed in 1 file:
- 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
87 lines of code changed in 4 files:
- move warnings for parameters from front end to back end
- get rid of false warnings
99 lines of code changed in 6 files:
Fix #2566 in the FrontEnd
- report parameter T p(start = value, fixed = true) and use the start value.
2413 lines of code changed in 6 files:
- 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.
4 lines of code changed in 1 file:
- Changed DAEDump to always print out modifications after the variable name
instead of after the type name.
5 lines of code changed in 1 file:
Fix for #2062:
- Better handling of cardinality.
4 lines of code changed in 1 file:
- Changed lib/omlibrary/Modelica... to Modelica... for testsuite messages (to work better with build symlinked to /usr)
- Added reading of env.var CC at start to be able to change CC in pre-compiled omc version
178 lines of code changed in 3 files:
Fix for #2503:
- Propagate visibility prefix to components of structured components.
197 lines of code changed in 4 files:
- 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.
0 lines of code changed in 3 files:
- expected results after revert of r17842
1 lines of code changed in 1 file:
Recommit r17828. Updated expected outputs.
1 lines of code changed in 1 file:
- 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
255 lines of code changed in 6 files:
- fix bug #2403 (quite many changes, do make clean)
- properly count tuple equation size in the BackEnd
BackendDAE.ALGORITHM gets a new component called expand (DAE.Expand)
which tells that this algorithm was translated from an equation as
in this case we SHOULD NOT expand array crefs to the full size
- added test for bug #2403
testsuite/simulation/modelica/algorithms_functions/
ModelicaTest.Fluid.Dissipation.Verifications.HeatTransfer.Channel.kc_evenGapLaminar.mos
- fix counting of tuples in CheckModel.mo
More unrelated fixes:
- add recursion limit depth in Global.mo and display it in the warnings and errors about recursion limit
- fix typing of record bindings for R a[3](eta = {eta[1], eta[2], eta[3]})
- if function path is longer than 50 chars minimize it by keeping the first
ident.lastIdent.uniqueID (see CevalScript.generateFunctionFileName)
- List.applyAndFold1 -> remove restriction of extra argument to be the same type of the list element.
- add buildModel to ModelicaBuiltin.mo
2 lines of code changed in 1 file:
- 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
54 lines of code changed in 4 files:
(33 more)