- 30 May, 2017 3 commits
-
-
79ff9135 - rhoPimpleFoam: Improved support for compressible liquids (2017-05-17 17:05:43 +0100) <Henry Weller>
-
-
Improves stability on start-up and allows running at slightly larger time-steps.
-
- 26 May, 2017 8 commits
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
- This follows the same idea as cbegin/cend and is helpful when using C++11 auto to ensure we have unambiguous const-safe access. Previously: ==== typename someLongClass::const_iterator iter = someTable.find(key); ... later on: *iter = value; // Oops, but caught by compiler. We can save some typing with auto, but it is uncertain what we get: ==== auto iter = someTable.find(key); // iterator or const_iterator? // depends on someTable having const or non-const access. ... later on: *iter = value; // Oops, but not caught by compiler. Using cfind instead, auto will deduce const_iterator as the type: ==== auto iter = someTable.cfind(key); // definitely const_iterator ... later on: *iter = value; // Oops, but caught by compiler.
-
Mark OLESEN authored
-
Mark OLESEN authored
- when a plain word is used as a directory-local name for file. We don't have a full blown fileName, but still want to check/remove extensions etc.
-
Mark OLESEN authored
-
Mark OLESEN authored
- both classes are nearly identical and should be merged in the future.
-
Mark OLESEN authored
-
- 25 May, 2017 3 commits
- 24 May, 2017 9 commits
-
-
mattijs authored
-
Andrew Heather authored
Initial attempt to track oriented surface fields See merge request !104
-
mattijs authored
-
mattijs authored
-
Andrew Heather authored
Merge branch 'feature-oriented-fields' of develop.openfoam.com:Development/OpenFOAM-plus into feature-oriented-fields
-
Andrew Heather authored
-
Andrew Heather authored
-
Mark OLESEN authored
STYLE: adjust parameter names and template types in invertManyToMany - more explicit about the acceptable list types
-
Mark OLESEN authored
- The inGroups is a wordList. It can be flattened on output to make files more readable.
-
- 22 May, 2017 12 commits
-
-
Mark OLESEN authored
- holding a pointer instead of a reference for edgeFaceCirculator simplifies overall handling.
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Andrew Heather authored
Integration foundation See merge request !99
-
Also added support for extrapolated pressure boundary conditions.
-
-
in solidSpecie/transport/const/constAnIsoSolidTransport solidSpecie/transport/const/constIsoSolidTransport solidSpecie/transport/exponential/exponentialSolidTransport solidSpecie/transport/polynomial/polynomialSolidTransport specie/transport/logPolynomial/logPolynomialTransport specie/transport/polynomial/polynomialTransport specie/transport/sutherland/sutherlandTransport Resolves bug-report https://bugs.openfoam.org/view.php?id=2532
-
-
Andrew Heather authored
-
- 19 May, 2017 4 commits
-
-
Andrew Heather authored
-
Andrew Heather authored
Further hash table iter clean-up See merge request !113
-
Andrew Heather authored
-
Andrew Heather authored
-
- 18 May, 2017 1 commit
-
-
Andrew Heather authored
-