- Jan 22, 2019
-
-
Mark OLESEN authored
-
- Jan 23, 2019
- Jan 22, 2019
-
-
Mark OLESEN authored
- since foamDictionary doesn't use system/controlDict it will use the standard default precision. The '-precision' option allows adjusting that value.
-
Mark OLESEN authored
-
Mark OLESEN authored
- support for optional 'enabled' keyword to selectively disable a single sampled surface. ENH: add sampledSurface::withSurfaceFields() method - can be used to distinguish which samplers support surface fields. Currently this is only sampledPatch
-
- Jan 17, 2019
-
-
Mark OLESEN authored
-
- Jan 21, 2019
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- moves any nullptr to the end of the list where they can be eliminated in a second step with resize()
-
- Jan 18, 2019
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- Jan 21, 2019
-
-
Andrew Heather authored
-
- Jan 17, 2019
- Jan 14, 2019
-
-
mattijs authored
-
- Jan 17, 2019
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- Jan 16, 2019
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- when combining lists in processor order this simplifies code and reduces memory overhead. Write this: ---- labelList collected; const globalIndex sizing(input.size()); sizing.gather(input, collected); ---- OR ---- labelList collected; globalIndex::gatherOp(input, collected); ---- Instead of this: ---- labelList collected; List<labelList> scratch(Pstream::nProcs()); scratch[Pstream::myProcNo()] = input; Pstream::gatherList(scratch); if (Pstream::master()) { collected = ListListOps::combine<labelList> ( scratch, accessOp<labelList>() ); } scratch.clear(); ----
-
Mark OLESEN authored
- remove unused and deprecated emptyList() casting function. This function is disllowed by many modern compilers and is no longer used within OpenFOAM - was deprecated 2018-07.
-
Mark OLESEN authored
-
- Jan 10, 2019
-
-
Mark OLESEN authored
- use forwarding tmp factory methods, auto types
-
Mark OLESEN authored
- use forwarding tmp factory methods, auto types
-
Mark OLESEN authored
- use forwarding tmp factory methods, auto types
-
Mark OLESEN authored
- use forwarding tmp factory methods, auto types
-
Mark OLESEN authored
- use forwarding tmp factory methods, auto types
-
Mark OLESEN authored
- use forwarding tmp factory methods
-
Mark OLESEN authored
- use local 'prefix' variable for easier override and more consistency
-
- Jan 15, 2019
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
- can still test as a bool or use to 'peek' at the content.
-
Mark OLESEN authored
- make adjustment of the DebugSwitches optional. Enable (the old behaviour) with -debug.
-
Mark OLESEN authored
- only backup/modify controlDict if it contains a DebugSwitches entry - add -no-debug option to suppress modification entirely
-
- Jan 14, 2019
-
-
Mark OLESEN authored
- write values of processor boundaries only, for diagnostic purposes. - parallel only, and non-legacy format only
-