Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
c51a2b0f
Commit
c51a2b0f
authored
Jun 02, 2010
by
mattijs
Browse files
ENH: have MUST_READ_IF_MODIFIED on IOdictionary construction
parent
dd475e3c
Changes
192
Hide whitespace changes
Inline
Side-by-side
TODO
View file @
c51a2b0f
- allocate/free tags.
Not tested.
- check
new fvMesh
new fvMeshSubset
for consistency with createMesh.H
OK - test blockMesh with cyclics
unitTestCases/singleCyclic/
OK - test cyclics sequential running.
unitTestCases/singleCyclic/
OK - test decomposePar
tested channel395
- Check the following:
OK - FaceCellWave
unitTestCases/twoCavityCyclicForWallDistance/
doc/changes/inotify.txt
OK - non-parallel finite volume : channelFoam
unitTestCases/channel395-splitCyclic vs. channel395-dev
OK - parallel finite volume with processorCyclic: channelFoam
unitTestCases/channel395-splitCyclic vs. channel395-dev
OK - preProcessing/foamUpgradeCyclics
OK - gamg - sequential.
Tested on channel395-splitCyclic with GAMG.
OK - gamg parallel.
Tested on channel395-splitCyclic with GAMG.
- initTransfer in GAMGprocessorInterfaces using nonblocking+tags
untested.
OK - cyclic baffles.
Tested on t-junction-with-fan
OK. - jumpCyclics/fanFvPatchField. All usages of jump() now need to account
for being owner() or not.
Tested on t-junction-with-fan.
OK - regionSplit
tested on singleCyclic
OK - pointFields on cyclics. volPointInterpolation.
tested on channel395-splitCyclic
OK - fvMeshSubset
tested on singleCyclic
OK - pointEdgeWave (maybe test through inversePointDistanceDiffusivity?)
tested on twoCavityCyclicForWallDistance
OK - scotchDecomp
tested with testCalcCSR on twoCavityCyclicForWallDistance
NOT WORKING - fvMeshDistribute to split cyclic patches into ones
with different separation.
tested on singleCyclic
OK - test createPatch pointSync
note: only works if face-centre position of 0th faces is ok since uses
this for separation. Should in fact make cyclic planar using patch centre and
normal?
test on twoCavityCyclicForWallDistance with point (0 1 0) set to (0 1.001 0)
NO PROBLEM - renumberMesh
It doesn't do renumbering through cyclics.
OK - rotational cyclics.
Tested on movingCone-with-cyclics
OK - LUscalarMatrix::convert still expects interfaces to be cyclic
tested on channel395 with 'directSolveCoarsest true;'
OK - grep for size()/2
- all tutorials with cyclics:
OK - incompressible/DNS/dnsFoam/boxTurb16
OK - incompressible/channelFoam/channel395
slight differences due to divergence. combustion/XiFoam/les/pitzDaily3D
OK - no cyclics. combustion/fireFoam/les/smallPoolFire2D
discreteMethods/dsmcFoam/freeSpacePeriodic
discreteMethods/dsmcFoam/wedge15Ma5
discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon
OK - incompressible/boundaryFoam/boundaryLaunderSharma
OK - incompressible/boundaryFoam/boundaryWallFunctions
OK - incompressible/boundaryFoam/boundaryWallFunctionsProfile
OK - needs createBaffles. incompressible/pimpleFoam/t-junction-with-fan
OK - incompressible/simpleSRFFoam/mixer
OK - needs createBaffles. lagrangian/porousExplicitSourceReactingParcelFoam/filter
needs special coupledbcs. lagrangian/reactingParcelFilmFoam/multipleBoxes
OK - createBaffles
- have foamUpgradeCyclics split 'value' field
- activeBaffleVelocity
- kivaToFoam/readKivaGrid.H sorts cyclics (but in incorrect order?)
- isoSurface.C
- referredCellList.C
- work out scheduled communication?
OK - add neighbourPatch checking to 16x.
applications/solvers/DNS/dnsFoam/readTransportProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"transportProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/DNS/dnsFoam/readTurbulenceProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"turbulenceProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/basic/laplacianFoam/createFields.H
View file @
c51a2b0f
...
...
@@ -23,7 +23,7 @@
"transportProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/basic/scalarTransportFoam/createFields.H
View file @
c51a2b0f
...
...
@@ -39,7 +39,7 @@
"transportProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/combustion/PDRFoam/XiModels/XiEqModels/SCOPEXiEq/SCOPEXiEq.C
View file @
c51a2b0f
...
...
@@ -62,7 +62,7 @@ Foam::XiEqModels::SCOPEXiEq::SCOPEXiEq
"combustionProperties"
,
Su
.
mesh
().
time
().
constant
(),
Su
.
mesh
(),
IOobject
::
MUST_READ
IOobject
::
MUST_READ
_IF_MODIFIED
)
),
thermo
...
...
applications/solvers/combustion/PDRFoam/createFields.H
View file @
c51a2b0f
...
...
@@ -110,7 +110,7 @@
"PDRProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/combustion/PDRFoam/readCombustionProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"combustionProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/combustion/XiFoam/readCombustionProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"combustionProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/combustion/dieselEngineFoam/readCombustionProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@ IOdictionary combustionProperties
"combustionProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/combustion/fireFoam/createFields.H
View file @
c51a2b0f
...
...
@@ -65,7 +65,7 @@ IOdictionary combustionProperties
"combustionProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/combustion/reactingFoam/readChemistryProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@ IOdictionary chemistryProperties
"chemistryProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
,
false
)
...
...
applications/solvers/combustion/rhoReactingFoam/readChemistryProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@ IOdictionary chemistryProperties
"chemistryProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
,
false
)
...
...
applications/solvers/compressible/rhoCentralFoam/readThermophysicalProperties.H
View file @
c51a2b0f
...
...
@@ -9,7 +9,7 @@ IOdictionary thermophysicalProperties
"thermophysicalProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/compressible/rhoSonicFoam/readThermodynamicProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"thermodynamicProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/compressible/rhopSonicFoam/readThermodynamicProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"thermodynamicProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/compressible/sonicDyMFoam/readThermodynamicProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"thermodynamicProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/compressible/sonicDyMFoam/readTransportProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"transportProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/compressible/sonicLiquidFoam/readThermodynamicProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"thermodynamicProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
applications/solvers/compressible/sonicLiquidFoam/readTransportProperties.H
View file @
c51a2b0f
...
...
@@ -7,7 +7,7 @@
"transportProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
MUST_READ
_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
...
...
Prev
1
2
3
4
5
…
10
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment