[root]/testsuite/flattening/libraries/3rdParty/SiemensPower
SiemensPower
(1 files, 44 lines)
Blocks
(3 files, 155 lines)
Boundaries
(4 files, 335 lines)
Components
(1 files, 6 lines)
Pipes
(3 files, 236 lines)
Tests
(3 files, 246 lines)
SolidComponents
(3 files, 252 lines)
Documents
(1 files, 115 lines)
Interfaces
(2 files, 65 lines)
Utilities
(1 files, 6 lines)
BaseClasses
(3 files, 312 lines)
Functions
(2 files, 37 lines)
HeatTransfer
(2 files, 66 lines)
InnerHeatTransfer
(3 files, 95 lines)
PressureLoss
(4 files, 142 lines)
Structures
(3 files, 100 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 151 (100.0%) | 42663 (100.0%) | 282.5 |
sjoelund.se | 49 (32.5%) | 19512 (45.7%) | 398.2 |
alash325 | 13 (8.6%) | 13890 (32.6%) | 1068.4 |
adrpo | 28 (18.5%) | 4704 (11.0%) | 168.0 |
perost | 20 (13.2%) | 2869 (6.7%) | 143.4 |
vitalij | 23 (15.2%) | 870 (2.0%) | 37.8 |
adeas31 | 2 (1.3%) | 523 (1.2%) | 261.5 |
mahge930 | 7 (4.6%) | 259 (0.6%) | 37.0 |
lochel | 5 (3.3%) | 30 (0.1%) | 6.0 |
wbraun | 2 (1.3%) | 4 (0.0%) | 2.0 |
jfrenkel | 2 (1.3%) | 2 (0.0%) | 1.0 |
- Expected output.
523 lines of code changed in 2 files:
- update tests after r24990
- 3 tests fail now solving NLS systems during initialization:
* testsuite/simulation/libraries/msl32/Modelica.Fluid.Examples.HeatExchanger.HeatExchangerSimulation-addDerAlias.mos
* testsuite/simulation/libraries/msl32/Modelica.Fluid.Examples.HeatingSystem.mos
* testsuite/simulation/libraries/msl32/Modelica.Fluid.Examples.PumpingSystem.mos
1373 lines of code changed in 2 files:
+ Removed some unnecessary asub creations.
+ consider subscripts when looking for cref dependencies.
40 lines of code changed in 2 files:
- update tests due to MSL 3.2.1 changes
4 lines of code changed in 2 files:
- update tests due to MSL 3.2.1 changes
2 lines of code changed in 2 files:
imporved negate for binary
6 lines of code changed in 2 files:
- expected output
1 lines of code changed in 1 file:
#2982 Sort if-expressions correctly in function context
3 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:
Bump MSL 3.2.1
4 lines of code changed in 2 files:
Make loadFile("Modelica/package.mo") also consider the uses-annotation and load those packages (just like loadModel does, but with a different MODELICAPATH)
4 lines of code changed in 2 files:
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)
2675 lines of code changed in 2 files:
#2815 Handle fold reductions of user-defined functions with polymorphic types
- Also handle folding functions of type A,B->B, if the second argument has a constant default binding
2 lines of code changed in 2 files:
Fix for #2806:
- Remove input/output from variables which are not at top-level or inside a
top-level connector.
447 lines of code changed in 2 files:
added simplify rule
2 lines of code changed in 2 files:
added some simplify rules
100 lines of code changed in 2 files:
Added some tail recursion for the connection trie graph (moves some variables around in equations, and some equations too)
78 lines of code changed in 1 file:
Tail-recursive instArray2 for DIM_INTEGER (at the cost of moving some equations around)
202 lines of code changed in 1 file:
Expected output
1 lines of code changed in 1 file:
added rule x/(r*y) => (1/r)*x/y
2 lines of code changed in 2 files:
added rules:
- a*x*b + c*x = x*(a*b + c)
- a*x + b*x*c = x*(a + b*c)
16 lines of code changed in 2 files:
- added rule for a*x*c + d*x*e => x*(a*c + d*e)
6 lines of code changed in 2 files:
- update Siemens tests due to MSL 3.2.1 changes from m:r7723
7 lines of code changed in 2 files:
- imporved rule x/c1 = c2*x
36 lines of code changed in 2 files:
Re-enable some SiemensPower tests using the new debug flag
14057 lines of code changed in 3 files:
- getting the testsuite back to 100%
* baseline hpcom BranchingDynamicPipes.mos
* remove failing tests from testsuite/openmodelica/cppruntime/libraries/msl32/Makefile
* baseline SiemensPower flattening with the error until m:#1245 is decided
78 lines of code changed in 2 files:
- update tests
18 lines of code changed in 2 files:
- added rules for signum
- added rule for e/exp(e1) => e * exp(-e1)
18 lines of code changed in 2 files:
- new simplify rule for a + (-b)/x = a - b/x
163 lines of code changed in 2 files:
- fix r19111
- get ./simulation/libraries/3rdParty/ThermoSysPro/ThermoSysPro.Examples.SimpleExamples.TestJunctions4.mos working again
26 lines of code changed in 2 files:
- 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
518 lines of code changed in 2 files:
- Updated SiemensPower.Components.Pipes.Tests.tube_test.mos
218 lines of code changed in 1 file:
- Changed DAEDump to always print out modifications after the variable name
instead of after the type name.
192 lines of code changed in 1 file:
Fix for #2062:
- Better handling of cardinality.
0 lines of code changed in 1 file:
- added for evaluation of actualStream-operator smooth(0, exp)
- actualStream-Operator should not generate events
4 lines of code changed in 2 files:
Fix for #2503:
- Propagate visibility prefix to components of structured components.
1064 lines of code changed in 2 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.
39 lines of code changed in 2 files:
- last fixes for ExternalMedia
+ fully qualify paths in ClassInf.State
+ do List.unique on records so we don't get duplicates
+ now at least 5 models in ExternalMedia can be compiled
- fix an issue with lookup where path to be looked up
contains the name of the model in the scope we're in.
this fixes instantiation of
ThermoPower.Examples.BraytonCycle.ClosedLoopSimulator,
probably more models in ThemoPower.
added test:
testsuite/flattening/modelica/others/ThermoPower.Examples.BraytonCycle.ClosedLoopSimulator.mos
3 lines of code changed in 2 files:
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
172 lines of code changed in 2 files:
Bump MSL to latest
2 lines of code changed in 2 files:
(39 more)