- Aug 16, 2016
-
-
Henry Weller authored
-
Henry Weller authored
Patch contributed by Bruno Santos Resolves bug-report http://bugs.openfoam.org/view.php?id=2192
-
Henry Weller authored
Patch contributed by Bruno Santos Resolves bug-report http://bugs.openfoam.org/view.php?id=2193
-
- Aug 14, 2016
-
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2189
-
- Aug 12, 2016
-
-
Henry Weller authored
functionObject: change default behavior of 'end()' to do nothing rather than calling execute and write Time: call functionObject 'execute()' and 'end()' for last time-step Now the operation of functionObject 'end()' call is consistent between running and post-processing
-
Henry Weller authored
Revert "functionObject: change default behavior of 'end()' to do nothing rather than calling execute and write" This reverts commit 32e2e1bc.
-
Henry Weller authored
functionObject: change default behavior of 'end()' to do nothing rather than calling execute and write
-
Henry Weller authored
LduMatrix/SolverPerformance: Changed nIterations from label to labelType corresponding to the type solved Now the number of iterations to solve each component in a segregated solution are stored and returned in the SolverPerformance class. Resolves bug-report http://bugs.openfoam.org/view.php?id=2189
-
Henry Weller authored
-
Henry Weller authored
OpenFOAM/containers/LinkedLists: Replaced partially specialized template classes with C++11 template aliases This feature of C++11 avoids complex code duplication simplifies code maintenance
-
Henry Weller authored
surfaceRegion will be the name of a class to provide support for surface region selection.
-
Henry Weller authored
SLList: now a C++11 template alias rather than a wrapper-class.
-
Henry Weller authored
-
- Aug 11, 2016
-
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
Now the specie reaction rates may be averaged over the entire domain or a specified cellZone.
-
Henry Weller authored
Renamed the original volRegion -> volFieldValue to clarify the purpose of this class to process vol fields on a volRegion.
-
- Aug 10, 2016
-
-
Henry Weller authored
functionObjects::specieReactionRates: New functionObject to write the domain averaged reaction rates for each specie for each reaction
-
Henry Weller authored
functionObjects: Further simplification and rationalization using the fvMeshFunctionObject base-class
-
- Aug 09, 2016
-
-
Henry Weller authored
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2186
-
Henry Weller authored
-
- Aug 08, 2016
-
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2181
-
- Aug 07, 2016
-
-
Henry Weller authored
Now the functionality to write single graph files or log files (vs time) may be used in the creation of any form of functionObject, not just those relating to a mesh region.
-
- Aug 05, 2016
-
-
Henry Weller authored
e.g. HashTable<label, string> table1 { {"kjhk", 10}, {"kjhk2", 12} }; HashTable<label, label, Hash<label>> table2 { {3, 10}, {5, 12}, {7, 16} };
-
Henry Weller authored
-
Henry Weller authored
Requires gcc version 4.7 or higher
-
Henry Weller authored
The change from C++0x to C++11 allows all of C++11 functionality to be used in OpenFOAM, in particular constructor delegation which avoids code duplication or constructor helper functions. However, this also means a change to the minimum gcc version supported which is now 4.7 rather than 4.5. Note that gcc-4.7 does not support the entire C++11 standard but does support all of the functionality currently needed for further OpenFOAM development. The minimum gcc-version which supports the entire C++11 standard is 4.8 which is now the recommended minimum gcc version.
-
Henry Weller authored
FixedList: Add constructors from iterators and C++11 initializer_list using C++11 constructor delegation
-
Henry Weller authored
Test-List: Add demonstration of C++11 initializer list in conjunction with uniform initialization of vector List<vector> list5 { {5, 3, 1}, {10, 2, 2}, {8, 1, 0} };
-
Henry Weller authored
-
- Aug 04, 2016
-
-
Henry Weller authored
Improves stability for complex flows
-
Henry Weller authored
-
Henry Weller authored
The diameter of the drops formed are obtained from the local capillary length multiplied by the \c dCoeff coefficient which defaults to 3.3. Reference: Lefebvre, A. (1988). Atomization and sprays (Vol. 1040, No. 2756). CRC press.
-
Henry Weller authored
omegaWallFunction: Improved low-Reynolds number behavior and consistency with the epsilonWallFunction Changed default mode of operation to use standard y+ based switching rather than the previous ad hoc blending and added consistent handling of the near-wall generation term. This boundary condition provides a wall constraint on turbulnce specific dissipation, omega for both low and high Reynolds number turbulence models. The near-wall omega may be either blended between the viscous region and logarithmic region values using: \f[ \omega = sqrt(\omega_{vis}^2 + \omega_{log}^2) \f] where \vartable \omega_{vis} | omega in viscous region \omega_{log} | omega in logarithmic region \endvartable see eq.(15) of: \verbatim Menter, F., Esch, T. "Elements of Industrial Heat Transfer Prediction" 16th Brazilian Congress of Mechanical Engineering (COBEM), Nov. 2001 \endverbatim or switched between these values based on the laminar-to-turbulent y+ value derived from kappa and E. Recent tests have shown that the standard switching method provides more accurate results for 10 < y+ < 30 when used with high Reynolds number wall-functions and both methods provide accurate results when used with continuous wall-functions. Based on this the standard switching method is used by default.
-