- Feb 01, 2018
-
-
sergio authored
It creates a swirling velocity across a baffle using jumpCyclic for vectors
-
- Jan 25, 2018
-
-
Andrew Heather authored
-
Andrew Heather authored
-
Mark OLESEN authored
-
- Jan 24, 2018
-
-
Mark OLESEN authored
- runTimeModifiable change to the dictionary not being propagated to the underlying functionObjects
-
Mark OLESEN authored
- forward command-line arguments for paraview, where they may also be evaluated (cshrc, POSIX shell) Eg, . etc/bashrc ParaView_VERSION=5.4.1-mpipy source etc/cshrc ParaView_VERSION=5.4.1-mpipy
-
- Jan 23, 2018
-
-
Mark OLESEN authored
- this currently just strips off the leading parent directory name "/this/path/and/subdirs/name" relative("/this/path") -> "and/subdirs/name" relative("/this") -> "path/and/subdirs/name"
-
- Jan 24, 2018
-
-
Andrew Heather authored
ENH: Adding optional output information ordered by injectorID to LocalInteraction. See merge request OpenFOAM-plus!187
-
- Jan 23, 2018
-
-
Mark OLESEN authored
- adjust return values of HashSet operators.
-
Mark OLESEN authored
-
Mark OLESEN authored
- problems when the cloud was not available on all processors. - NB: ensight measured data only allows a single cloud, but foamToEnsight writes all clouds.
-
Andrew Heather authored
'delta' The scheme should now be specified using, e.g. div(phi,U) Gauss DEShybrid linear // scheme 1 linearUpwind grad(U) // scheme 2 hmax // LES delta name, e.g. 'delta', 'hmax' 0.65 // DES coefficient, typically = 0.65 30 // Reference velocity scale 2 // Reference length scale 0 // Minimum sigma limit (0-1) 1 // Maximum sigma limit (0-1) 1.0e-03; // Limiter of B function, typically 1e-03
-
- Jan 22, 2018
-
-
mattijs authored
-
mattijs authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
Feature memory streams See merge request OpenFOAM-plus!191
-
Mark OLESEN authored
- simplify structure. - protect against nullptr when resetting memory streams - make UIListStream swappable - add uiliststream as an example of using a plain std::istream
- Jan 19, 2018
-
-
Mark OLESEN authored
-
Andrew Heather authored
-
- Jan 18, 2018
-
-
Andrew Heather authored
-
Mark OLESEN authored
- as per readInt32(), readInt64() etc. Previously only had readScalar() in a two-parameter form.
-
Andrew Heather authored
-
Andrew Heather authored
-
- Jan 17, 2018
-
-
Andrew Heather authored
-
Mark OLESEN authored
- these were previously taken from region-local directories (eg, constant/region/triSurface), but this becomes difficult to manage when there are many files and regions.
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
- The central InfoSwitch "writeLagrangianPositions" allows writing an additional Lagrangian "positions" file, but these were not being written by reconstructPar. These are now also written in reconstructPar if the central writeLagrangianPositions InfoSwitch is enabled. NOTES - "positions" are reconstructed from the processors "coordinates" file - decomposePar will not attempt to create or redistribute any "positions" files
-
- Jan 16, 2018
-
-
Mark OLESEN authored
- define regExp::results_type using SubStrings container for handling groups. This makes a later shift to std::smatch easier, but changes the regExp API for matching with groups. Previously had list element 0 for regex group 1, now list element 0 is the entire match and list element 1 is regex group 1. Old: List<std::string> mat; if (re.match(text, mat)) Info<< "group 1: " << mat[0] << nl; New: regExp::results_type mat; if (re.match(text, mat)) Info<< "group 1: " << mat.str(1) << nl;
-
Mark OLESEN authored
- problems were introduced by the change ee252307 (issue #686). Affected reading of OBJ files. The fallback zone (used to catch unnamed groups/zones), which was previously filtered away when not needed. Now handle more explicitly. ENH: use stringOps::split and low-level read{Label,Scalar} for parsing OBJ file
-
Mark OLESEN authored
- also handle stray semi-colons in foamCleanPath. Treat like a ':' separator. They are incorrect and potentially problematic for shell evals.
-
- Jan 15, 2018
-
-
mattijs authored
-
Mark OLESEN authored
improve handling of gmp/mpfr configuration See merge request OpenFOAM-plus!190
-
Mark OLESEN authored
- can tag the version compatibility with a negative number to suppress the warnings but retain some information about which version was supported.
-
- Jan 12, 2018
-
-
sergio authored
-
Andrew Heather authored
Simplify argList methods names and add more compat options See merge request OpenFOAM-plus!188
-
- Jan 11, 2018
-
-
Andrew Heather authored
-
Andrew Heather authored
-