- Jun 01, 2017
-
-
sergio authored
Modification on rhoPimpleFoam pEq's for handling rho thermo and incompressible EoS. Adding rho limiters if p is limited. This is important when LTS stepping or large Co number is used. Updating rhoBuoyantPimpleFoam to handle closed domain for rho thermo and incompressible Eos. Consolidating chtMultiRegionSimpleFoam and chtMultiRegionFoam pEqs to use the same formulation as rhoBuoyantPimpleFoam and rhoBuoyantSimpleFoam
-
- May 30, 2017
-
-
Andrew Heather authored
-
- May 17, 2017
-
-
79ff91350 - rhoPimpleFoam: Improved support for compressible liquids (2017-05-17 17:05:43 +0100) <Henry Weller>
-
- May 12, 2017
-
-
-
Improves stability on start-up and allows running at slightly larger time-steps.
-
- May 26, 2017
-
-
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
-
- May 25, 2017
- May 24, 2017
-
-
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.
-
- May 22, 2017
-
-
Mark OLESEN authored
- holding a pointer instead of a reference for edgeFaceCirculator simplifies overall handling.
-
Andrew Heather authored
Integration foundation See merge request !99
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- May 19, 2017
-
-
Andrew Heather authored
Further hash table iter clean-up See merge request !113
-
Andrew Heather authored
-
- May 18, 2017
-
-
mattijs authored
-
Mark OLESEN authored
Hash table method enhancements See merge request !112
-
Andrew Heather authored
-
Andrew Heather authored
-
Mark OLESEN authored
COMP: avoid undefined-var-template warning in runTimePostProcessing
-
Andrew Heather authored
-
mattijs authored
-
- May 17, 2017
-
-
Mark OLESEN authored
-
- May 19, 2017
-
-
Mark OLESEN authored
-