Henry Weller
ff7a216a58
AllwmakeParseArguments: Filter-out '-q' option to avoid recusion
2016-07-07 16:22:08 +01:00
Henry Weller
5571dbf107
reactingTwoPhaseEulerFoam/pUf/UEqns: Changed naming convention for the dmdt's
...
for consistency with HeatAndMassTransferPhaseSystem.C
Resolves bug-report http://bugs.openfoam.org/view.php?id=2141
2016-07-07 14:36:10 +01:00
Henry Weller
553abf615b
wmakeLnIncludeAll: Now a bash script
...
Uses the 'wait -n' builtin to avoid the use of non-POSIX 'sleep' commands
2016-07-07 12:09:49 +01:00
Henry Weller
26a3e56c4f
Reacting solvers: Added check for the existence of the inert specie
2016-07-06 17:45:34 +01:00
Henry Weller
36adf9702c
chemkinToFoam: Added support for converting elements and species composition
...
Based of patch contributed by Francesco Contino, Tommaso Lucchini,
Gianluca D’Errico, Hervé Jeanmart, Nicolas Bourgeois and Stéphane
Backaert.
2016-07-06 16:24:56 +01:00
Henry Weller
20f9d82737
fvOptions::limitVelocity: New fvOption to limit the maximum velocity magnitude
...
e.g. to avoid excessive unphysical velocities generated during slamming events in
incompressible VoF simulations
Usage
Example usage:
limitU
{
type limitVelocity;
active yes;
limitVelocityCoeffs
{
selectionMode all;
max 100;
}
}
2016-07-06 10:17:21 +01:00
Henry Weller
8e3c88ed25
fvOptions::tabulatedAccelerationSource: Minor update to doc
2016-07-06 10:16:57 +01:00
Henry Weller
5ca69a2501
Updated header
2016-07-06 10:16:37 +01:00
Henry Weller
8929e959ff
fvOptions::limitTemperature: Simplify controls and make documentation consistent with the code
2016-07-06 10:15:47 +01:00
Henry Weller
922785d9cf
wmakePrintBuild -check: exit 0 if not a git repository
2016-07-05 21:50:34 +01:00
Henry Weller
f989f58d85
reactingEulerFoam dragModels: New models Beetstra, Tenneti
...
Contributed by Alberto Passalacqua, Iowa State University
Foam::dragModels::Beetstra
Drag model of Beetstra et al. for monodisperse gas-particle flows obtained
with direct numerical simulations with the Lattice-Boltzmann method and
accounting for the effect of particle ensembles.
Reference:
\verbatim
Beetstra, R., van der Hoef, M. A., & Kuipers, J. a. M. (2007).
Drag force of intermediate Reynolds number flow past mono- and
bidisperse arrays of spheres.
AIChE Journal, 53(2), 489–501.
\endverbatim
Foam::dragModels::Tenneti
Drag model of Tenneti et al. for monodisperse gas-particle flows obtained
with particle-resolved direct numerical simulations and accounting for the
effect of particle ensembles.
Reference:
\verbatim
Tenneti, S., Garg, R., & Subramaniam, S. (2011).
Drag law for monodisperse gas–solid systems using particle-resolved
direct numerical simulation of flow past fixed assemblies of spheres.
International Journal of Multiphase Flow, 37(9), 1072–1092.
\verbatim
2016-07-05 16:10:07 +01:00
Henry Weller
8496102126
Updated headers
2016-07-05 16:09:56 +01:00
Henry Weller
6d1007d2d8
reactingEulerFoam/interfacialCompositionModels: Minor reformatting
2016-07-05 16:09:39 +01:00
Henry Weller
05d89e486f
checkMesh, moveDynamicMesh: option -checkAMI writes the reconstructed AMI weights
...
Patch contributed by Mattijs Janssens
2016-07-05 15:35:16 +01:00
Henry Weller
98d5ee3b33
wmakeCollect: Name the object makefiles based on the object path
...
Ensures the order of compilation relates to the location of the source files
2016-07-05 14:53:26 +01:00
Henry Weller
e20c1ac61f
wmakeCollect: Support simultaneous builds of different target architectures or compilers
2016-07-05 10:24:08 +01:00
Henry Weller
0bc8286845
wmake: execute wmakeLnIncludeAll once with options 'queue' and 'update'
2016-07-05 07:54:45 +01:00
Henry Weller
276eb1a31b
AllwmakeParseArguments: Moved all parallel processing options into wmake
...
and added support for queue scheduling option '-q', '-queue'
Now the 'Allwmake' scripts execute 'wmake -all' to handle parallel
processing in a general way, avoiding code duplication.
2016-07-04 22:30:20 +01:00
Henry Weller
1af45f72ca
Allwmake: Simplified by removing 'doc' option
...
It is better to run doc/Allwmake or doc/Doxygen/Allwmake and provide the
required options.
2016-07-04 22:28:19 +01:00
Henry Weller
822d6adba7
steadyParticleTracksTemplates: Corrected correspondence between function declaration and definition
2016-07-04 10:44:08 +01:00
Henry Weller
23877413f3
wmakeLnIncludeAll: Corrected type
2016-07-04 10:27:43 +01:00
Henry Weller
911e424515
wmakeLnIncludeAll: Use 'wait -n' rather than and arbitrary 'sleep' when limiting the number of jobs
2016-07-04 09:39:28 +01:00
Henry Weller
8e900af6e3
functionObjects: Updated documentation
...
Patch contributed by Bruno Santos
Resolves bug-report http://bugs.openfoam.org/view.php?id=2138
2016-07-03 23:16:29 +01:00
Henry Weller
d88db62106
wmake: use the new parallel wmakeLnIncludeAll option if WM_NCOMPPROCS is set
2016-07-03 23:11:16 +01:00
Henry Weller
f23b2581e9
wmakeCollect: Experimental scheduler for wmake to speed-up parallel compilations
...
wmakeCollect collects the compilation commands for the all of the object
files to be compiled into a single makefile which is passed to make to
schedule the compilations in parallel efficiently.
Before wmakeCollect can be called the lnInclude directories must be
up-to-date and after wmakeCollect the linkage stage of the compilation
must executed using wmake.
This entire process is now handled by wmake using the new '-queue' or
'-q' option to compile sections of the OpenFOAM source tree or the
entire tree efficiently. The number of cores the compilation executes
on may be specified either using the WM_NCOMPPROCS variable or the '-j'
option.
To efficiently compile OpenFOAM after a 'git pull' the '-update' option
is provided which updates lnInclude directories, dep files and removes
deprecated files and directories. This option may be used with '-q':
wmake -q -update
2016-07-03 22:55:16 +01:00
Henry Weller
7433ce8f7f
wmakeLnIncludeAll: Added -j option for parallel operation
2016-07-03 22:22:00 +01:00
Henry Weller
f29bc66073
wmake/rules/General: Add support for WM_SCHEDULER to the compilation of lex, yacc and moc files
2016-07-03 22:21:02 +01:00
Henry Weller
0eed3ae176
timeVaryingMappedFixedValue: update for SP
2016-07-01 17:42:35 +01:00
Henry Weller
52cbf66c4a
etc/config.sh/CGAL: unset CGAL_ARCH_PATH if it is no longer needed
2016-07-01 17:01:26 +01:00
Henry Weller
e9a1716474
Correct handling of the CGAL version variable for makeCGAL in ThirdParty
2016-07-01 16:22:28 +01:00
Henry Weller
52233c3848
Simplified the handling of the CGAL installation
2016-07-01 14:53:28 +01:00
Henry Weller
97a889dbd8
src/OpenFOAM/primitives/ints: Further tweaks
...
Resolved additional bug-report http://bugs.openfoam.org/view.php?id=2137
2016-07-01 14:52:54 +01:00
Henry Weller
138879b25e
vtkUnstructuredReader: corrected prism point ordering
...
Patch contributed by Mattijs Janssens
Resolves bug-report http://bugs.openfoam.org/view.php?id=1885
2016-07-01 14:45:18 +01:00
Henry Weller
adc816a85d
timeVaryingMappedFixedValue: Reinstated support for AverageField
2016-07-01 10:26:20 +01:00
Henry Weller
e78e346781
Updated header
2016-07-01 10:25:38 +01:00
Henry Weller
c488c02082
src/OpenFOAM/primitives/ints: Corrected MIN and MAX for uints
...
Resolves bug-report http://bugs.openfoam.org/view.php?id=2137
2016-07-01 10:24:42 +01:00
Henry Weller
b19e0b3543
SloanRenumber: link with libboost_system.so rather than libboost_thread.so
...
Resolves bug-report http://bugs.openfoam.org/view.php?id=2135
2016-06-30 12:01:32 +01:00
Henry Weller
6d28a95b37
timeVaryingMappedFixedValueFvPatchField: Simplifed for consistency with the output of sampledPlane
...
Now a case can be sampled and written in 'foam' format and used for the
timeVaryingMappedFixedValue BC of another case.
2016-06-30 10:35:01 +01:00
Henry Weller
2e419c58f8
functionObjects::surfaceRegion: Write the surface geometry for formats in which the data is in separate files
2016-06-30 10:33:55 +01:00
Henry Weller
6a5923f966
sampledCuttingPlane: Rationalized
2016-06-30 10:33:28 +01:00
Henry Weller
7c9d416265
src/sampling/Make/files: Updated
2016-06-30 10:33:07 +01:00
Henry Weller
0c5fad2825
sampledPlane, plane: standardize the selection of the plane type
2016-06-30 10:32:31 +01:00
Henry Weller
c19b17713e
foamFileSurfaceWriter -> foamSurfaceWriter for consistency with the naming of the other writers
2016-06-30 10:31:09 +01:00
Henry Weller
9fa1756565
fvcD2dt2: Updated non-const dereferencing to use '.ref()'
...
Resolves bug-report http://bugs.openfoam.org/view.php?id=2133
2016-06-29 21:55:57 +01:00
Henry Weller
a17d0d86dc
tutorials: Updated formatting of dictionaries and specification of 'plane' and 'samplePlane'
2016-06-29 18:02:57 +01:00
Henry Weller
887aeee6be
plane, sampledPlane: Rationalize the naming convention for the defining normal and point
...
normalVector -> normal
basePoint -> point
The old names are supported for backward-compatibility.
2016-06-29 16:58:35 +01:00
Henry Weller
c263bbca65
Completed transformation of post-processing utilities into functionObjects
2016-06-28 19:26:23 +01:00
Henry Weller
93e84072cc
functionObjects::fieldExpression: Standardized warning message
2016-06-28 13:52:10 +01:00
Henry Weller
9abbe4d31d
utilities particleTracks, steadyParticleTracks: Updated and corrected
2016-06-27 20:44:11 +01:00
Henry Weller
565c96f3d1
rigidBodyMeshMotion: Check for attempted assignment of patches to a merged body
2016-06-27 16:31:51 +01:00