Hrvoje Jasak
3b4ea0cc01
Cumulative Development: Vuko Vukcevic
2018-05-15 10:51:53 +01:00
Hrvoje Jasak
a4617cca01
Refactoring of load balance: move function into topoChangerFvMesh
2018-05-11 18:32:37 +01:00
Hrvoje Jasak
7174595839
Working load balancing code
2018-05-01 15:56:31 +01:00
Hrvoje Jasak
afde586e9f
Bugfix: Update signalling for topologically changing mesh
2018-05-01 15:55:29 +01:00
Vuko Vukcevic
047bc41b27
Updates to polyMesh::changing_ flag
...
It's better to update it in polyTopoChanger::changeMesh() than in
polyMesh::updateMesh(). This way, it is consistent with directTopoChange engine
2018-04-25 10:00:27 +02:00
Hrvoje Jasak
41829c7a53
Field mapping for patch reset
2018-04-24 19:04:02 +01:00
Hrvoje Jasak
9cc1acc8a0
Load balancing - WIP
2018-04-24 11:07:07 +01:00
Hrvoje Jasak
d8d860caee
Load balancing updates
2018-04-23 10:26:52 +01:00
Vuko Vukcevic
9ee5d49575
Updates to polyhedralRefinement and dynamicPolyRefinementFvMesh
...
1. Switched from pointBasedConsistency to edgeBasedConsistency in order to allow
more than 2 refinement levels in a correct way (hopefully),
2. Note on parallelisation: getting edge cell addressing across processor
boundaries is tricky, but if we use more stringent 1:1 face refinement across
coupled boundaries, then the edge based consistency becomes a local operation
(at least I'm 99% sure it does: hard to think of all variants with arbitrary
polyhedra),
3. Added an option to skip unrefinement if both refinement/unrefinement are
triggered for a single step. This is switched off by default since performing
refinement/unrefinement in a single go should work without issues.
2018-04-17 12:24:52 +02:00
Hrvoje Jasak
6da19d932c
Load balancing development, 5
2018-04-13 22:13:13 +01:00
Hrvoje Jasak
afef1bac2f
Robustness improvement for layer addition/removal triggering
2018-04-12 14:05:28 +01:00
Vuko Vukcevic
4a4056f9f5
Improvements to polyhedral AMR
...
1. Removed redundant (and wrong) check when doing pointConsistentUnrefinement
2. Added separate entry for nRefinementBufferLayers and
nUnrefinementBufferLayers
2018-03-22 14:24:44 +01:00
Vuko Vukcevic
26d346cf71
Additional refinement selection algorithm for polyhedral AMR
...
minCellSizeRefinement selects all cells with cell size defined as cube root of
cell volume is larger than specified cell size. Therefore, it assumes that the
cells are cubes or close to cubes.
2018-03-22 09:49:51 +01:00
Vuko Vukcevic
049bc0ed95
Improvements to polyhedralRefinement
...
1. Extended protection for split points to nBufferLayers + 2 buffer layers in
order to protect cells from unrefinement when we do refinement and
unrefinement in a same go
2. Added separate entry for unrefineInterval along refineInterval to control
refinement and unrefinement separately
2018-03-20 19:19:09 +01:00
Hrvoje Jasak
40e5a3d38c
Load-balancing fvMesh, initial version
2018-03-18 12:42:11 +00:00
Vuko Vukcevic
f9f1154734
Additional refinement selection algorithms for polyhedral AMR
...
1. minCellVolumeRefinement: selects all cells with volume higher than specified
one
2. minPatchDistanceRefinement: selects all cells at the distance greater than
specified distance from a set of patches
3. compositeRefinementSelection: selects intersection of all sets obtained from
other (basic) refinement selections
2018-03-16 11:06:52 +01:00
Vuko Vukcevic
7459da3a36
Clean up of deprecated polyhedral AMR classes:
...
1. dynamicRefinePolyFvMesh class (replaced by dynamicPolyRefinementFvMesh)
2. polyRef class (replaced by polyhedralRefinement polyMesh modifier)
3. polyRefinementHistory (not required anymore)
2018-02-28 14:13:39 +01:00
Vuko Vukcevic
d934ed17f4
Minor update in polyhedralRefinement
...
Removed redundant check of split points at the boundaries. In case of dynamic
load balancing, it should perform possible unrefinement where the split point is
on the processor boundary. Although this has not been tested yet.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
5613b4b4ad
Additional output in dynamicPolyRefinementFvMesh
...
After successfully performing topo change (either refinement or unrefinement or
both), prints out global cell balance.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
0d4bd534e2
Bugfix while setting split points to unrefine
...
There was a bug when we had refinement and unrefinement in the same iteration.
Setting split points to unrefine needs to take into account existing cells to
refine by considering point neighbours, not face neighbours. This ensures that
the first split point to unrefine is far away from refinement region.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
6c693cb8d4
Update to dynamicPolyRefinementFvMesh
...
Only one topo change iteration per time step. This is handled withing
dynamicPolyRefinementFvMesh class instead of polyhedralRefinement
(is a polyMeshModifier) in order to skip the unnecessary cell/point selection
step as well.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
819568c8d1
Parallel bugfix in polyhedralRefinement
...
While ensuring point consistent refinement/unrefinement, we need to loop over
all points in order to correctly take into account point consistency across
processor boundaries.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
28478c3751
Bugfix in point based consistent unrefinement
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
924468af8a
Parallel bugfixes and consistency updates
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
3744e84981
Bugfix: parallel update of new point level
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
f06a579a81
Bugfix in polyhedralRefinement.C and additional debug output
...
Forgot to update refinementLevelIndicator_ list when unrefining cells around
split points.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
864dbd53ac
Updates to dynamic refinement
...
1. Deeper debug checks
2. Updates to setting split points
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
c0060272af
Updates to polyhedralRefinement
...
Better way of determining split points that does not rely on keeping track of
refinement history.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
9aac2fe7f6
Bugfixes
...
1. removeFaces.C: flipped else if condition
2. polyhedralRefinement.C: fixed inconsistency with refinement level indicator
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
fda0785e13
Updates to polyhedralRefinement mesh modifier
...
Different way of updating cell and point level that does not rely on
polyhedralRefinement being the only mesh modifier
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
71871935ec
Switched to boolList instead of Packed list
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
a94e79eed7
Changed sentence in Info statement
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
429be977d3
Bugfix in polyhedralRefinement
...
Points must be appended (out of nothing) instead of added in terms of master
point when using polyAddPoint and polyMeshModifier
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
d837b8ef56
Input bugfix in fieldBoundsRefinement
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
45d4642a2d
Bugfixes in polyhedralRefinement.?
...
1. TypeName macro instead of ClassName
2. Need all points (original + added) when checking internal/boundary face
orientation
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
00b7c46868
Performance improvement bugfix in polyhedralRefinement
...
While setting point conistent refinement, it is unnecessary to visit point cells
of all cells. We can visit only cells to refine.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
8393e34d65
Added compilation instructions with respective fixes for following classes:
...
1. dynamicPolyRefinementFvMesh
2. refinementSelection
3. fieldBoundsRefinement
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
9e0614a5b5
Small bugfix in polyRef.C
...
When doing pointConsistentRefinement, I've been inserting all mesh points
instead of just the ones sharing a cell which will be refined.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
40ec2b3644
Fixed compilation issues for removeFaces class
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
e6d042f28f
Second batch of updates in removeFaces class
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
ecfeb79ce2
Using setFaceInfo from meshTools in polyhedralRefinement.C
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
b767b8aba6
First batch of updates for removeFaces.?
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
b735b5829f
First part of compilation fixes for polyhedralRefinement class
...
Still need to reorganize faceRemover engine such that it works with
polyTopoChange alongside (preferably) or instead of directTopoChange
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
d138fb9162
Final updates to polyhedralRefinement.?
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
9e34a1e234
Updates to polyhedralRefinement.?
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
6e33ee25f0
Switching on/off polyhedral refinement engine
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
fe2911f9e3
Slight reorganisation of dynamicPolyRefinementFvMesh and refinementSelection
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
d215bc7a35
Class hierarchy for run-time selection of refinement criteria
...
Abstract base class: refinementSelection
Single derived class: fieldBoundsRefinement
The interface provides selection of:
1. Candidate cells to refine,
2. Candidate split points to unrefine.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
ae02d50179
First version of dynamicPolyRefinementFvMesh
...
Refactored version of dynamicRefinePolyFvMesh in terms of topoChangerFvMesh
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
15fc87e5dd
Refactoring polyhedral AMR
...
Written out interface for polyhedralRefinement class derived from
polyMeshModifier.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
d633af22a0
Point based consistency check
...
This is necessary when one would run a dynamic refinement simulation with more
than 2 refinement levels. Ordinary face checking can produce 8:1 point
inconsistency, even on hexahedral meshes. Therefore, if the refinemement level
is > 2, point based consistency is switched on.
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
b829763587
Additional output before "single" edge error
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
91a892854e
Bugfix in calculation of getFaceAnchor
...
Reverting to the old formulation modified for polyhedral cells
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
f3edd35f23
Updated dynamicMeshDict
2018-02-21 15:10:55 +01:00
Vuko Vukcevic
76fd16d5f6
Created polyRefinementHistory
...
Basically a generalisation of refinementHistory which works only for hex cells
2018-02-21 15:09:54 +01:00
Vuko Vukcevic
7cd6e2357a
Updates to cellAnchorPoints
2018-02-21 15:08:38 +01:00
Vuko Vukcevic
ecfdd2103e
Removed faceAnchorLevel validity check
2018-02-21 15:08:26 +01:00
Vuko Vukcevic
3ebae28896
Generalisation of polyRef::getAnchorLevel
...
The function now returns the correct anchor level for arbitrary polygonal faces,
i.e. there is no assumption that the face comes from possibly spit hex cell.
2018-02-21 15:08:13 +01:00
Vuko Vukcevic
7372970256
Updated comments in polyRef.H
2018-02-21 15:07:45 +01:00
Henrik Rusche
67ab0b5abd
Vanilla backport
...
- in FOAM library
updated containers
backported PackedBoolList, hashedWordList, nullObject, wordRe,
backported functions to
backported int32 support
backported tableReaders
backported Function1, TimeFunction1
backported dynamicCode (for codedBCs, ...) -- needs to be mapped out
advanced error macros (FatalIOErrorInFunction, ...) -- needs to be mapped out
backported IOobject::MUST_READ_IF_MODIFIED and added IOobject::READ_IF_PRESENT_IF_MODIFIED (only in FO)
- in postProcessing
backported IO FOs (partialWrite, removeRegisteredObject, writeDictionary, writeRegisteredObject)
backported field FOs (fieldCoordinateSystemTransform, fieldValues, nearWallFields, processorField, readFields, regionSizeDistribution, streamLine, wallBoundedStreamLine)
backported fvTools FOs (calcFvcDiv, calcFvcGrad, calcMag)
backported jobControl FOs (abortCalculation)
backported utilities FOs (ourantNo, Lambda2, Peclet, Q, codedFunctionObject, pressureTools, residuals, scalarTransport, setTimeStep, timeActivatedFileUpdate, turbulenceFields, vorticity, wallShearStress)
2018-02-16 15:07:55 +01:00
Hrvoje Jasak
38d299e856
Clean up dynamicMeshDict
2018-02-08 10:55:58 +00:00
Hrvoje Jasak
cd3f391f90
Formatting
2018-02-08 10:55:41 +00:00
Hrvoje Jasak
f987749bde
Formatting
2018-02-07 14:45:34 +00:00
Hrvoje Jasak
e83fcedb06
Merge commit '9fbf8f1bfce0b178d61be485fac02007bf9c8b77' into geometricImmersedBoundary
2017-12-30 09:37:29 +00:00
Vuko Vukcevic
9fbf8f1bfc
Bugfix in polyRef.C
...
Allowing arbitrary number of anchor points per face in order to treat cut cell
interfaces consistently.
2017-10-31 11:26:37 +01:00
Vuko Vukcevic
993b979617
Optional debug output in polyRef
2017-10-30 11:11:24 +01:00
Vuko Vukcevic
6e4acb64c0
Added notes to headers
2017-10-30 08:20:44 +01:00
Vuko Vukcevic
7f7401ff8c
Checking severe non-orthogonality when creating internal/boundary faces
2017-10-30 08:20:44 +01:00
Vuko Vukcevic
48bfe69e10
Updates to unerfinement in polyRef.C
2017-10-30 08:20:43 +01:00
Vuko Vukcevic
9da722f174
Created polyRefinementHistory
...
Basically a generalisation of refinementHistory which works only for hex cells
2017-10-30 08:20:43 +01:00
Vuko Vukcevic
a50d934d7a
Updates to creation of internal faces
2017-10-30 08:20:43 +01:00
Vuko Vukcevic
1064123ce5
Updates to unsplit faces containing split edges
2017-10-30 08:20:43 +01:00
Vuko Vukcevic
9c31584ba6
Updates to faces that get split
2017-10-30 08:20:43 +01:00
Vuko Vukcevic
d7b830e474
Generalisation of cell addition to polyhedral cells
2017-10-30 08:20:42 +01:00
Vuko Vukcevic
c599c4999a
Updates to cellAnchorPoints
2017-10-30 08:20:42 +01:00
Vuko Vukcevic
745d9e140d
Removed faceAnchorLevel validity check
2017-10-30 08:20:42 +01:00
Vuko Vukcevic
5c64455a11
Generalisation of polyRef::getAnchorLevel
...
The function now returns the correct anchor level for arbitrary polygonal faces,
i.e. there is no assumption that the face comes from possibly spit hex cell.
2017-10-30 08:20:42 +01:00
Vuko Vukcevic
cc19e8e421
Updated comments in polyRef.H
2017-10-30 08:20:42 +01:00
Vuko Vukcevic
657cfc7e2b
Minor clean-up
2017-10-30 08:20:41 +01:00
Vuko Vukcevic
3b248a82ca
Removed cell protection from dynamicRefinePolyFvMesh
2017-10-30 08:20:41 +01:00
Vuko Vukcevic
e3b2a11d58
dynamicRefinePolyMesh using polyRef instead of hexRef8
2017-10-30 08:20:41 +01:00
Vuko Vukcevic
0ad13a0817
Copied hexRef8 to polyRef
2017-10-30 08:20:40 +01:00
Vuko Vukcevic
94a6a9c746
Copied dynamicRefineFvMesh to dynamicRefinePolyFvMesh
2017-10-30 08:20:40 +01:00
Hrvoje Jasak
62d5cb9cba
Reorganization and novelties in 6DOF integrators. Viktor Pandza, Vuko Vukcevic
2017-09-21 13:52:19 +01:00
Hrvoje Jasak
c814ad6052
Bugfix: Debug reports in parallel
2017-08-02 10:48:59 +01:00
Hrvoje Jasak
bf1d5b22a4
Formatting
2017-06-06 18:04:34 +01:00
Hrvoje Jasak
41353e4dac
Reorganisation and clean-up
2017-05-25 14:44:59 +01:00
Hrvoje Jasak
739cbbfca5
Clean-up
2017-05-25 14:44:47 +01:00
Hrvoje Jasak
37ab92b905
Bugfix: zero rotation for translative velocity
2017-05-17 18:31:31 +01:00
Vuko Vukcevic
ded50536b9
Minor formatting
2017-03-06 12:25:23 +01:00
Vuko Vukcevic
f4db00045d
Updates to dynamicRefineFvMesh
...
Ported protection for non-hex cells from Vanilla
2017-03-02 09:58:12 +01:00
Pascal Beckstein
80aa1d588f
Fix: Prevent erroneous warning about failed library loading if new dynamicMesh is constructed multiple times
2016-06-29 02:34:56 +02:00
Henrik Rusche
2881ea7064
Update case files
2016-06-21 15:04:21 +02:00
Henrik Rusche
07e9416f30
Bump version in headers
2016-06-21 15:04:12 +02:00
Henrik Rusche
a224c64812
Removing trailing whitespace, tabs and DOS CR & Fixing some indentation
2016-06-21 12:03:31 +02:00
Vanja Skuric
373ac3a85c
FSI solvers and tutorials, and miscellaneous fixes by Zeljko Tukovic
2016-06-20 13:30:15 +01:00
Vanja Skuric
958063aedb
Modified backport for SolverPerformance and SolutionControl (removed data.C(H) and lduSolverPerformance is now typedef from BlockSolverPerformance)
2016-06-05 00:37:20 +02:00
Henrik Rusche
ec515b441f
Merged vanilla compatibility branch. Author: Henrik Rusche, FSB team. Merge: Henrik Rusche
...
Conflicts:
applications/solvers/incompressible/channelFoam/channelFoam.C
applications/solvers/incompressible/icoFoam/icoFoam.C
applications/solvers/incompressible/nonNewtonianIcoFoam/nonNewtonianIcoFoam.C
applications/solvers/incompressible/pimpleDyMFoam/UEqn.H
applications/solvers/incompressible/pimpleDyMFoam/pimpleDyMFoam.C
applications/solvers/incompressible/pimpleFoam/UEqn.H
applications/solvers/incompressible/pimpleFoam/pEqn.H
applications/solvers/incompressible/simpleFoam/UEqn.H
applications/solvers/incompressible/simpleFoam/pEqn.H
src/foam/fields/GeometricFields/GeometricTensorNFields/GeometricTensorNFields.H
src/turbulenceModels/compressible/RAS/LRR/LRR.C
src/turbulenceModels/compressible/RAS/LaunderSharmaKE/LaunderSharmaKE.C
src/turbulenceModels/compressible/turbulenceModel/laminar/laminar.C
src/turbulenceModels/incompressible/LES/GenEddyVisc/GenEddyVisc.C
src/turbulenceModels/incompressible/LES/Smagorinsky2/Smagorinsky2.C
src/turbulenceModels/incompressible/LES/SpalartAllmaras/SpalartAllmaras.C
src/turbulenceModels/incompressible/LES/kOmegaSSTSAS/kOmegaSSTSAS.C
src/turbulenceModels/incompressible/LES/laminar/laminar.C
src/turbulenceModels/incompressible/RAS/LamBremhorstKE/LamBremhorstKE.C
src/turbulenceModels/incompressible/RAS/LaunderSharmaKE/LaunderSharmaKE.C
src/turbulenceModels/incompressible/RAS/LienCubicKE/LienCubicKE.C
src/turbulenceModels/incompressible/RAS/NonlinearKEShih/NonlinearKEShih.C
src/turbulenceModels/incompressible/RAS/RNGkEpsilon/RNGkEpsilon.C
src/turbulenceModels/incompressible/RAS/SpalartAllmaras/SpalartAllmaras.C
src/turbulenceModels/incompressible/RAS/coupledKEpsilon/coupledKEpsilon.C
src/turbulenceModels/incompressible/RAS/kEpsilon/kEpsilon.C
src/turbulenceModels/incompressible/RAS/kOmegaSST/kOmegaSST.C
src/turbulenceModels/incompressible/RAS/laminar/laminar.C
src/turbulenceModels/incompressible/RAS/qZeta/qZeta.C
src/turbulenceModels/incompressible/RAS/realizableKE/realizableKE.C
src/turbulenceModels/incompressible/turbulenceModel/laminar/laminar.C
tutorials/basic/laplacianFoam/Case1.1_mixingPlane_sector_AB_60deg/system/fvSchemes
tutorials/compressible/dbnsFoam/forwardStep/system/fvSchemes
tutorials/compressible/dbnsFoam/shockTube/system/fvSchemes
tutorials/compressible/dbnsTurbFoam/naca0012/system/fvSchemes
tutorials/compressible/rhoPimpleFoam/angledDuct/system/fvSchemes
tutorials/immersedBoundary/backwardStepShortTurbulentSimpleIbFoam/system/fvSchemes
tutorials/immersedBoundary/pitzDailyBodyFitted/system/fvSchemes
tutorials/immersedBoundary/pitzDailyLaminarSimpleIbFoam/system/fvSchemes
tutorials/immersedBoundary/pitzDailyTurbulentSimpleIbFoam/system/fvSchemes
tutorials/immersedBoundary/porousBumpChannelBodyFitted/system/fvSchemes
tutorials/immersedBoundary/porousBumpChannelIb/system/fvSchemes
tutorials/incompressible/MRFSimpleFoam/mixerVessel2D/system/fvSchemes
tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/system/fvSchemes
tutorials/incompressible/boundaryFoam/boundaryTwoWallsFlowSolution/system/fvSchemes
tutorials/incompressible/boundaryFoam/boundaryWallFunctions/system/fvSchemes
tutorials/incompressible/channelFoam/channel395/system/fvSchemes
tutorials/incompressible/icoFoam/elbow/constant/polyMesh/boundary
tutorials/incompressible/pimpleDyMFoam/axialTurbine/system/fvSchemes
tutorials/incompressible/pimpleDyMFoam/movingCone/system/fvSchemes
tutorials/incompressible/pimpleDyMFoam/movingCone/system/fvSolution
tutorials/incompressible/pimpleDyMFoam/movingCylinders/system/fvSchemes
tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_pimpleDyMFoam/constant/polyMesh/boundary
tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_pimpleDyMFoam/system/fvSchemes
tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_simpleFoam/constant/polyMesh/boundary
tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_simpleFoam/system/fvSchemes
tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion_snappyHexMesh/constant/polyMesh/boundary
tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion_snappyHexMesh/system/fvSchemes
tutorials/incompressible/pimpleFoam/t-junction/system/fvSchemes
tutorials/incompressible/pisoFoam/les/pitzDaily/system/fvSchemes
tutorials/incompressible/pisoFoam/les/pitzDailyDirectMapped/system/fvSchemes
tutorials/incompressible/pisoFoam/ras/cavity/system/fvSchemes
tutorials/incompressible/porousSimpleFoam/angledDuctExplicit/system/fvSchemes
tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/system/fvSchemes
tutorials/incompressible/porousSimpleFoam/beaverJoseph/system/fvSchemes
tutorials/incompressible/porousSimpleFoam/porousPlug/system/fvSchemes
tutorials/incompressible/simpleFoam/mixingPlaneAxial/system/fvSchemes
tutorials/incompressible/simpleFoam/mixingPlaneDomADomB/system/fvSchemes
tutorials/incompressible/simpleFoam/motorBike/system/fvSchemes
tutorials/incompressible/simpleFoam/pitzDaily/system/fvSchemes
tutorials/incompressible/simpleFoam/pitzDaily3Blocks/system/fvSchemes
tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/fvSchemes
tutorials/incompressible/simpleSRFFoam/mixer/system/fvSchemes
Fixing compilation of DBNS
2016-05-25 10:31:13 +02:00
Henrik Rusche
3d1742c1f0
Merged cummulative developement branch (Hrvoje Jasak). Author: Hrvoje Jasak. Merge: Henrik Rusche
...
Conflicts:
src/ODE/sixDOF/finiteRotation/finiteRotation.C
src/ODE/sixDOF/sixDOFqODE/sixDOFqODE.C
src/ODE/sixDOF/sixDOFqODE/sixDOFqODE.H
src/dynamicMesh/meshMotion/solidBodyMotion/constantVelocity/constantVelocity.C
src/dynamicMesh/meshMotion/solidBodyMotion/rotatingOscillation/rotatingOscillation.H
src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C
src/finiteVolume/finiteVolume/gradSchemes/limitedGradSchemes/cellLimitedGrad/cellLimitedGrads.C
src/finiteVolume/finiteVolume/gradSchemes/limitedGradSchemes/cellMDLimitedGrad/cellMDLimitedGrads.C
src/finiteVolume/finiteVolume/gradSchemes/limitedGradSchemes/faceLimitedGrad/faceLimitedGrads.C
2016-05-24 12:30:46 +02:00
Hrvoje Jasak
aa5553e641
Clean-up
2016-05-24 10:03:23 +01:00