- Jan 14, 2019
-
-
Mark OLESEN authored
- could be triggered if running in parallel, but requesting procIDs to be written with a non-parallel version of the writer.
-
- Jan 23, 2019
-
-
Andrew Heather authored
Feature run time control triggers See merge request OpenFOAM-plus!228
-
mattijs authored
-
mattijs authored
-
- 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 21, 2019
-
-
Andrew Heather authored
-
- Jan 22, 2019
-
-
Andrew Heather authored
-
- Jan 21, 2019
-
-
Andrew Heather authored
-
Andrew Heather authored
-
- 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 15, 2019
-
-
Andrew Heather authored
-
- Jan 21, 2019
-
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
- 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
-