ed73bcbc33
TUT: update keywords, fix spurious annotated dictionary item ( #2401 )
2022-03-13 22:34:57 +01:00
a2014242cf
RELEASE: Updated headers for v2112
2021-12-20 14:18:01 +00:00
e3796745ed
CONFIG: Updated headers to v2106
...
Minor clean-up
2021-06-28 09:14:42 +01:00
57304aeaf6
TUT: multiphase: replace boatAndPropeller with rigidBodyHull
2021-06-22 22:41:41 +00:00
91c1e8efe2
TUT: multiphase: clean up tutorials
2021-06-08 20:14:09 +00:00
ec81436cce
TUT: generalize (parameterize) blockMeshDict for half-cylinder geometries
...
- profit from some of the recent modifications to parser expansion
TUT: adjust some #eval statements for less clutter
2021-05-19 17:33:25 +02:00
ec609b90b8
STY: Clearing up code and updating tutrial
2021-03-17 09:07:26 +00:00
da1e6ea8d0
ENH: Improvement to overset that allows multiple motion solvers
...
to operate with overset
1) Adding zoneMotion to rigidBodyMotion
2) Introducing PID to prescribedRotation restraint
3) Making drivenLinearMotion read total displacement
4) When drivenLinearMotion is used sixDof and rigid-body solvers
write total displacement
2021-03-17 09:07:26 +00:00
d15a396a6a
TUT: add value entry for some uniformFixedValue bcs ( #2014 )
...
- generally OK to miss for easily evaluated functions, but highly
misleading with expressions (where the evaluate may be invalid
during construction).
2021-03-15 19:02:00 +01:00
79e353b84e
RELEASE: Updated version to v2012
2020-12-23 10:01:39 +01:00
44052de594
TUT: skip some tutorials when dynamicCode is not available
...
- silence failed restoration of controlDict from controlDict.orig
(idempotent?)
2020-08-06 19:34:20 +02:00
538d749220
REL: Updated headers to version v2006
2020-06-29 17:27:54 +01:00
01514e4d43
TUT: clean up multiphase tutorials
2020-04-14 16:30:44 +01:00
ae2ab06312
REL: Release preparations
2019-12-23 09:49:23 +00:00
98467036b3
STYLE: regularize quoting and exit on failed 'cd'
2019-11-13 13:19:16 +01:00
ec7e3c88e4
ENH: test for WM_PROJECT_DIR being set/unset in scripts
2019-11-06 09:18:51 +01:00
93422f1a72
TUT: use simpler syntax for motionSolverLibs entries
2019-10-01 10:58:53 +02:00
e7f380dcd5
TUT: use #eval instead of #calc where possible
2019-10-01 10:14:55 +02:00
02914539f7
TUT: consistent use of scale in blockMeshDict
2019-10-01 09:33:38 +02:00
fc461a1cc6
TUT: use writeControl "adjustable" (alias for "adjustableRunTime")
2019-09-27 15:50:06 +02:00
880d81475b
TUT: use simpler syntax for libs entries
2019-08-30 16:45:45 +02:00
771410e546
ENH: Adding tutorial for overset and multi motion solvers
2019-08-16 12:36:18 -07:00
be44dcaf1f
RELEASE: Version clean-up for release
2019-06-25 11:51:19 +01:00
9cd72b2bb8
BUG: uniformFixedValue: fix tutorials. See #1046 .
2019-04-04 09:24:42 +01:00
9231534efa
STYLE: Updating version to v1812
2018-12-19 18:07:52 +00:00
7882f952f3
TUT: Added missing files
2018-12-20 15:15:30 +00:00
c03c6bdea2
TUT: Corrections
2018-12-20 09:05:02 +00:00
66ca352f5a
ENH: Improvements to boatAndPropeller case
2018-12-17 08:20:31 -08:00
ce6cd338a8
Merge branch 'develop' of develop.openfoam.com:Development/OpenFOAM-plus into develop
2018-12-14 16:41:07 -08:00
68e6cd79d7
ENH: Setting up boatPropeller tutorial
2018-12-14 16:39:40 -08:00
9103b199b9
TUT: remove unused default decomposition coeffs settings
2018-12-13 14:04:50 +01:00
781246c26f
TUT: consistent controlDict application value ( #1120 )
2018-12-12 14:26:02 +01:00
942a7f8565
STY:
...
Reducing running time in controlDict
2018-12-03 16:06:20 -08:00
4a37e23ffa
ENH: floatingBody: excess debug switches
2018-11-22 08:58:56 +00:00
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
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
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
5f91007d4a
ENH: twoSimpleRotors: missing value field
2018-10-30 16:48:05 +00:00
5daa38d5b4
ENH:
...
Update of overRhoPimpleDyMFoam and overInterDyMFoam solvers.
Adding corresponding tutorials with best possible settings
The main effort was put on reducing pressure spikes as the
stencil change with hole cells on the background mesh.
2018-10-17 10:10:06 -07:00
da74e872f4
STYLE: overset: remove unused dictionary entry
2018-08-09 17:39:22 +01:00
e9f0ebc730
GIT: fvSolution: multiple entries from merging.
2018-07-12 13:39:02 +01:00
6e35bcda70
ENH: Updated config for release v1806
2018-06-28 12:56:00 +01:00
16a6379183
TUT: Cleaned up headers
2018-06-26 17:37:38 +01:00
b70b2d8629
TUT: fixup formatting, tabs etc
2018-06-26 16:37:35 +02:00
8717f9936e
TUT: consistency in Allclean Allrun scripts
2018-06-21 15:19:09 +02:00
f9dc9dbf5f
TUT: updates
2018-06-21 08:31:22 +01:00
7a7ecf600f
ENH: prescribedRotation: smaller end time so simulation is shorter.
2018-06-14 13:47:07 +01:00
6e6ae853b5
ENH: prescribedRotation: improvements to testcase. See #872 .
2018-06-14 13:45:49 +01:00
25472673d9
ENH: prescribedRotation: fix testcase. Fixes #872 .
2018-06-13 17:43:36 +01:00
5b9c4ceae5
ENH: rigidbodyDynamics: prescribed rotation + testcase
...
See:
src/rigidBodyDynamics/restraints/prescribedRotation
tutorials/multiphase/overInterDyMFoam/boatAndPropeller
2018-04-19 17:54:24 +01:00