28aad3a03e
RELEASE: Updated headers to v2312
2023-12-20 19:42:55 +01:00
763bf4674d
RELEASE: Updated headers to v2306
2023-06-28 16:35:48 +01:00
27a7ae2d1d
ENH: use simpler lookupPatchField form
2023-02-13 20:08:48 +01:00
7e61f36c12
RELEASE: Updated headers to v2212
2022-12-21 16:16:18 +00:00
b48fd4f38a
TUT: overset: add new tutorials and update existing tutorials
2022-11-11 10:19:51 +00:00
7792501a01
RELEASE: Updated headers for v2206
2022-06-24 15:41:02 +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
b0891824fa
ENH: improve codeTemplates
...
- meshTools include/library for many (most) coded items
- add PatchFunction1 include for coded BCs to provide ready access
to Function1 and PatchFunction1
2021-06-07 09:48:21 +02:00
7ce111809e
TUT: compressible: clean up tutorials
2021-05-27 08:59:28 +00: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
2c4b639e1f
ENH: 'mag' postOperation for surfaceFieldValue ( #1622 )
...
- support postOperation for volFieldValue as well
2020-03-11 11:59:04 +01:00
cee3dab140
TUT: cleanup compressible tutorials
...
- for all tutorial cases:
- correct/uniformize dict-style
- rm redundant dict entries
- compressible.overRhoPimpleDyMFoam.twoSimpleRotors: rm redundant file: pointDisplacement
- compressible.overRhoSimpleFoam.hotCylinder
- compressible.rhoCentralDyMFoam.movingCone
- compressible.rhoCentralFoam.forwardStep: activate purgeWrite=10
- compressible.rhoCentralFoam.LadenburgJet60psi: rm redundant files: mapFieldsDict & sample
- compressible.rhoCentralFoam.shockTube: rm redundant file: sample; command: cleanSample
- compressible.rhoPimpleFoam.laminar.sineWaveDamping: rm redundant file: V; activate purgeWrite=10
- compressible.rhoPimpleFoam.LES.pitzDaily: activate purgeWrite=10
- compressible.rhoPimpleFoam.RAS.aerofoilNACA0012: activate purgeWrite=10
- compressible.rhoPimpleFoam.RAS.angledDuct: add Allclean
- compressible.rhoPimpleFoam.RAS.mixerVessel2D: add Allclean; rm makeMesh
- compressible.rhoPimpleFoam.RAS.angledDuctLTS: add Allclean
- compressible.rhoPimpleFoam.RAS.TJunctionAverage
- compressible.rhoPorousSimpleFoam.angledDuct
- compressible.rhoSimpleFoam.aerofoilNACA0012
- compressible.rhoSimpleFoam.angledDuctExplicitFixedCoeff
- compressible.rhoSimpleFoam.squareBend
- compressible.rhoSimpleFoam.gasMixing.injectorPipe
- compressible.sonicDyMFoam.movingCone: rm redundant file: cuttingPlane
- compressible.sonicFoam.laminar.shockTube
- compressible.sonicFoam.RAS.nacaAirfoil
- compressible.sonicFoam.RAS.prism
2020-01-29 12:26:36 +00:00
596e4aef3f
STYLE: remove trailing space, tabs
2020-01-22 10:00:03 +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
3625d0ecd1
TUT: remove duplicate ;; in dictionaries
2019-10-01 10:39:40 +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
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
49ba6a8e94
ENH: Updating overRhoSimpleFoam and overSimpleFoam to use
...
oversetInterpolationSuppressed dict.
2019-04-03 12:55:33 -07:00
9231534efa
STYLE: Updating version to v1812
2018-12-19 18:07:52 +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
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