Andrew Heather
79e353b84e
RELEASE: Updated version to v2012
2020-12-23 10:01:39 +01:00
Andrew Heather
538d749220
REL: Updated headers to version v2006
2020-06-29 17:27:54 +01:00
OpenFOAM bot
01ec92fd35
GIT: remove leading/trailing blank lines, trailing whitespace
2020-06-17 10:46:26 +02:00
Mark Olesen
5982a1aab4
STYLE: update tutorials
...
- use simpler decomposeParDict in tutorials, several had old
'boilerplate' decomposeParDict
- use simpler libs () format
- update surface sampling to use dictionary format
2020-06-17 10:11:33 +02:00
Kutalmis Bercin
a5c6516e23
DOC: elaborate the usage of function objects
...
ENH: update libs of etc/caseDicts/postProcess items
ENH: ensure destructor=default
ENH: ensure constness
ENH: ensure no 'copy construct' and 'no copy assignment' exist
TUT: add examples of function objects with full set
of settings into a TUT if unavailable
TUT: update pisoFoam/RAS/cavity tutorial in terms of usage
2020-06-08 15:43:47 +01:00
Andrew Heather
4032ab5e15
DOC: waveMaker - removed references to unused x0 input parameter
2020-06-08 13:59:46 +01:00
Kutalmis Bercin
01514e4d43
TUT: clean up multiphase tutorials
2020-04-14 16:30:44 +01:00
Mark Olesen
9b1c0786ce
TUT: verificationAndValidation Allrun uses bash
...
STYLE: double-quote "$@" for isTest/notTest
2020-03-30 21:14:29 +02:00
Mark Olesen
fbbf9064b9
STYLE: remove trailing space, shell quoting
...
- emit "constant " and "uniform " as separate word/space combination
2020-02-20 10:11:23 +01:00
OpenFOAM bot
596e4aef3f
STYLE: remove trailing space, tabs
2020-01-22 10:00:03 +01:00
Andrew Heather
ae2ab06312
REL: Release preparations
2019-12-23 09:49:23 +00:00
Gabriel Barajas
634e5329d8
INT: Added tutorial cases showcasing new multi-paddle wave maker extensions
2019-12-18 13:57:41 +00:00
Mark Olesen
98467036b3
STYLE: regularize quoting and exit on failed 'cd'
2019-11-13 13:19:16 +01:00
Mark Olesen
46d7db79aa
TUT: consistent calling of m4
2019-11-06 11:50:42 +01:00
Mark Olesen
e6dfb39c66
STYLE: remove unnecessary stdout, stderr /dev/null redirects
...
- no stderr redirect needed:
* 'command -v'
- no stdout/stderr redirect needed:
* 'rm -f'
STYLE: consistent spacing after redirects
2019-11-06 10:44:36 +01:00
Mark Olesen
ec7e3c88e4
ENH: test for WM_PROJECT_DIR being set/unset in scripts
2019-11-06 09:18:51 +01:00
Andrew Heather
fdf8d10ab4
Merge commit 'e9219558d7' into develop-v1906
2019-12-05 11:47:19 +00:00
OpenFOAM bot
e9219558d7
GIT: Header file updates
2019-10-31 14:48:44 +00:00
Mark Olesen
93422f1a72
TUT: use simpler syntax for motionSolverLibs entries
2019-10-01 10:58:53 +02:00
Mark Olesen
02914539f7
TUT: consistent use of scale in blockMeshDict
2019-10-01 09:33:38 +02:00
Mark Olesen
3625d0ecd1
TUT: remove duplicate ;; in dictionaries
2019-10-01 10:39:40 +02:00
Mark Olesen
fc461a1cc6
TUT: use writeControl "adjustable" (alias for "adjustableRunTime")
2019-09-27 15:50:06 +02:00
OpenFOAM bot
880d81475b
TUT: use simpler syntax for libs entries
2019-08-30 16:45:45 +02:00
Andrew Heather
be44dcaf1f
RELEASE: Version clean-up for release
2019-06-25 11:51:19 +01:00
Andrew Heather
beffb00612
TUT: Mangrive tutorial update
2019-06-13 12:08:16 +01:00
Andrew Heather
dd437aa667
INT: Clean-up and integration of wave BC updates
2019-06-11 15:29:15 +01:00
Gabriel Barajas
7d9f3c8a0d
INT: waveMaker boundary condition - added dynamic wave paddle of a solitary wave
...
Based on Goring et al., 1980
2019-06-11 14:55:51 +01:00
Mark Olesen
33edea3ea4
ENH: add directory support for foamCleanTutorials
2019-02-23 19:59:04 +01:00
OpenFOAM bot
154029ddd0
BOT: Cleaned up header files
2019-02-06 12:28:23 +00:00
Andrew Heather
9231534efa
STYLE: Updating version to v1812
2018-12-19 18:07:52 +00:00
Mark Olesen
9103b199b9
TUT: remove unused default decomposition coeffs settings
2018-12-13 14:04:50 +01:00
Andrew Heather
6bb7cd9e16
TUT: Added files missed during commit cab7820fb3
2018-11-27 11:41:34 +00:00
Andrew Heather
cab7820fb3
ENH: Refactored waveMaker BC to support piston and flap motions
2018-11-15 13:27:42 +00:00
Gabriel Barajas
6e1e854cbc
INT: Initial commit of new wave-maker BCs based on mesh motion
...
waveMakerFlap: creates waves using a flapping motion
waveMakerPiston: creates waves using a piston motion
2018-11-15 08:29:54 +00:00
Mattijs Janssens
8ceec6456a
Mapping injected faces through interpolation
2018-11-15 14:58:56 +00:00
Mark Olesen
5f556ffb4a
ENH: make sourceInfo sub-dictionary optional for topoSet ( #1060 )
...
- helps reduce clutter in the topoSetDict files.
Caveats when using this.
The older specification styles using "name" will conflict with the
set name. Eg,
{
name f0
type faceSet;
action add;
source patchToFace;
sourceInfo
{
name inlet;
}
}
would flattened to the following
{
name f0
type faceSet;
action add;
source patchToFace;
name inlet;
}
which overwrites the "name" used for the faceSet.
The solution is to use the updated syntax:
{
name f0
type faceSet;
action add;
source patchToFace;
patch inlet;
}
2018-11-07 10:33:36 +01:00
Mark Olesen
7325e3ac7d
ENH: topoSetSource::SUBTRACT enum action ( #1060 )
...
- old 'DELETE' enum was easily confused with 'REMOVE', which removes
the set, not the elements from the set.
- provide corresponding subtractSet() method
STYLE: HashSet set/unset instead of insert/erase methods in topoSetSource
- simplifies switching to/from bitSet storage
2018-10-30 15:09:44 +00:00
Mark Olesen
9a87a043d6
ENH: consistency updates for patchToFace topoSetSource ( #1060 )
...
- Support specification with "patches" and "patch" keywords
(similar to zone selection). Keyword "name" for compatibility.
2018-10-30 12:01:36 +00:00
Mark Olesen
c2e58dca64
ENH: support multiple zones for topo set sources ( #1060 )
...
- uses the keywords 'zones' and 'zone' to avoid potential conflicts
with a named topoSet action, but accepts 'name' for compatibility.
2018-10-29 12:54:30 +00:00
Mark Olesen
d530bc254a
STYLE: code cleanup searchableSurface (issue #929 )
...
- improve doxygen entries for searchable surfaces.
- support selection of searchable surfaces with shorter names.
Eg,
type box | cylinder | ...;
vs type searchableBox | searchableCylinder | ...;
2018-07-06 11:03:28 +02:00
Andrew Heather
7b8e2b1a18
Merge remote-tracking branch 'origin/master' into develop
2018-07-10 16:42:59 +01:00
mattijs
e8c1ae3c16
ENH: sloshingTank2D: correct decomposeParDict. Fixes #913 .
2018-07-04 17:18:06 +01:00
Andrew Heather
6e35bcda70
ENH: Updated config for release v1806
2018-06-28 12:56:00 +01:00
Andrew Heather
16a6379183
TUT: Cleaned up headers
2018-06-26 17:37:38 +01:00
Mark Olesen
b70b2d8629
TUT: fixup formatting, tabs etc
2018-06-26 16:37:35 +02:00
Mark Olesen
30b4eda7a4
TUT: update some old keywords found in tutorials
...
- functionObjectLibs -> libs
- redirectType -> name
- change deprecated writeCompression flags types to Switch.
- cleanup some trailing ';;' from some dictionaries
2018-06-26 14:18:52 +02:00
Mark Olesen
237f20b0ed
TUT: tab removal
2018-06-21 15:43:15 +02:00
Mark Olesen
73fbed1c2c
TUT: consistent use of scale and headers for blockMeshDict
2018-06-21 15:28:25 +02:00
Mark Olesen
8717f9936e
TUT: consistency in Allclean Allrun scripts
2018-06-21 15:19:09 +02:00
Andrew Heather
357042c801
TUT: Updates for combustionModel = none. See #867
2018-06-14 14:45:32 +01:00