diff --git a/ReleaseNotes-dev b/ReleaseNotes-dev index 416d297f77..815b97d862 100644 --- a/ReleaseNotes-dev +++ b/ReleaseNotes-dev @@ -104,6 +104,8 @@ taking film into account + Parallel aware *** *New* ptscotch decomposition method +*** *Updated* decomposePar maps polyPatches instead of recreating them so + polyPatches holding data can map the data. *** *Updated* particle tracking algorithm + uses non-blocking parallel transfers + does 'minimum-tet' decomposition of face to work with warped faces (snappyHexMesh!) @@ -150,7 +152,12 @@ OpenFOAM. + *New* wall functions: + kappatJayatillekeWallFunction: incompressible RAS thermal wall function - + + directMappedFixedValue: + + takes interpolationScheme so can interpolate instead of always getting + cell value + + takes optional fieldName to sample + + directMapped patch added 'normal' method to calculate sample points + to e.g. sample fields just above wall (e.g. for streaklines) * Utilities There have been some utilities added and updated in this release. *** *New* utilities @@ -172,8 +179,10 @@ *** Updated utilities + =setFields=: optionally use faceSets to set patch values (see e.g. hotRoom tutorial). + =blockMesh=: specify patches via dictionary instead of type only. This - makes rereading the boundary superfluous. see + makes rereading the boundary file superfluous. see e.g. pitzDailyDirectMapped tutorial. + + =setSet=: allows time range (e.g. 0:100) in combination with -batch argument + to execute the commands for multiple times. * Post-processing + =foamToEnsight=: parallel continuous data. new =-nodeValues= option to generate and output nodal field data. @@ -181,6 +190,10 @@ mesh. Great for postprocessing. + =steadyParticleTracks=: Generates VTK tracks from the output of the cloud =ParticleTracks= post-processing sub-model + + Sampling: + + =patchInternalField=: new sampledSurface - like 'patch' but samples + internal field instead of boundary field. + + =ensight=: new output format for all sampledSurfaces. + Function objects: + =residualControl=: new function object to allow users to terminate steady state calculations when the defined residual levels are achieved @@ -190,6 +203,14 @@ specified time has been reached, e.g. to automagically change fvSchemes and fvSolution during a calculation + =streamLine=: generate streamlines; ouputs both trajectory and field data + + =surfaceInterpolateFields=: constructs face interpolate of registered + volFields for any future functionObjects that need surfaceFields. + + =readFields=: reads field if not yet registered. Makes functionObjects + useable through standalone execFlowFunctionObjects. + + =faceSource=: can now calculate on a sampledSurface (e.g. flow through a + triSurfaceMesh). + + =nearWallFields=: constructs field with on selected patches interpolated + internal field for further postprocessing. * New tutorials There is a large number of new tutorials for existing and new solvers in the diff --git a/applications/solvers/combustion/PDRFoam/Make/files b/applications/solvers/combustion/PDRFoam/Make/files index d1b1d5a8f8..1e5d200ccb 100644 --- a/applications/solvers/combustion/PDRFoam/Make/files +++ b/applications/solvers/combustion/PDRFoam/Make/files @@ -27,6 +27,7 @@ PDRModels/XiGModels/basicXiSubG/basicXiSubG.C laminarFlameSpeed/SCOPE/SCOPELaminarFlameSpeed.C +/* PDRFoamAutoRefine.C */ PDRFoam.C EXE = $(FOAM_APPBIN)/PDRFoam diff --git a/applications/solvers/combustion/PDRFoam/PDRFoamAutoRefine.C b/applications/solvers/combustion/PDRFoam/PDRFoamAutoRefine.C index 2946fa52a2..3152feec9b 100644 --- a/applications/solvers/combustion/PDRFoam/PDRFoamAutoRefine.C +++ b/applications/solvers/combustion/PDRFoam/PDRFoamAutoRefine.C @@ -25,8 +25,8 @@ Application PDRFoam Description - Compressible premixed/partially-premixed combustion solver with turbulence - modelling. + Solver for compressible premixed/partially-premixed combustion with + turbulence modelling. Combusting RANS code using the b-Xi two-equation model. Xi may be obtained by either the solution of the Xi transport @@ -35,7 +35,7 @@ Description to be appropriate by comparison with the results from the spectral model. - Strain effects are encorporated directly into the Xi equation + Strain effects are incorporated directly into the Xi equation but not in the algebraic approximation. Further work need to be done on this issue, particularly regarding the enhanced removal rate caused by flame compression. Analysis using results of the spectral @@ -78,9 +78,9 @@ int main(int argc, char *argv[]) #include "readCombustionProperties.H" #include "readGravitationalAcceleration.H" #include "createFields.H" - #include "readPISOControls.H" #include "initContinuityErrs.H" #include "readTimeControls.H" + #include "CourantNo.H" #include "setInitialDeltaT.H" scalar StCoNum = 0.0; @@ -94,7 +94,6 @@ int main(int argc, char *argv[]) #include "readTimeControls.H" #include "readPISOControls.H" #include "CourantNo.H" - #include "setDeltaT.H" runTime++; diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/Make/options b/applications/solvers/heatTransfer/chtMultiRegionFoam/Make/options index 71580ca21d..636fc5d8bb 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/Make/options +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/Make/options @@ -5,6 +5,7 @@ EXE_INC = \ -I$(LIB_SRC)/meshTools/lnInclude \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/basicSolidThermo/lnInclude \ -I$(LIB_SRC)/turbulenceModels/compressible/turbulenceModel/lnInclude diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options index a255d65f6c..599e1e7502 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/Make/options @@ -7,6 +7,7 @@ EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/basicSolidThermo/lnInclude \ -I$(LIB_SRC)/turbulenceModels \ -I$(LIB_SRC)/turbulenceModels/compressible/turbulenceModel/lnInclude \ diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/solid/setRegionSolidFields.H b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/solid/setRegionSolidFields.H index 1e78cc297a..179480249d 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/solid/setRegionSolidFields.H +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/solid/setRegionSolidFields.H @@ -4,7 +4,7 @@ tmp trho = thermo.rho(); const volScalarField& rho = trho(); - tmp tcp = thermo.cp(); + tmp tcp = thermo.Cp(); const volScalarField& cp = tcp(); tmp tK = thermo.K(); diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/setRegionSolidFields.H b/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/setRegionSolidFields.H index 1e78cc297a..a843ed8bd7 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/setRegionSolidFields.H +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/setRegionSolidFields.H @@ -4,11 +4,12 @@ tmp trho = thermo.rho(); const volScalarField& rho = trho(); - tmp tcp = thermo.cp(); + tmp tcp = thermo.Cp(); const volScalarField& cp = tcp(); tmp tK = thermo.K(); //tmp tK = thermo.directionalK(); const volScalarField& K = tK(); + //const volSymmTensorField& K = tK(); volScalarField& T = thermo.T(); diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solidRegionDiffNo.C b/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solidRegionDiffNo.C index c0a5277e88..322628b9ec 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solidRegionDiffNo.C +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solidRegionDiffNo.C @@ -55,4 +55,35 @@ Foam::scalar Foam::solidRegionDiffNo } +Foam::scalar Foam::solidRegionDiffNo +( + const fvMesh& mesh, + const Time& runTime, + const volScalarField& Cprho, + const volSymmTensorField& Kdirectional +) +{ + scalar DiNum = 0.0; + scalar meanDiNum = 0.0; + + volScalarField K = mag(Kdirectional); + + //- Take care: can have fluid domains with 0 cells so do not test for + // zero internal faces. + surfaceScalarField KrhoCpbyDelta = + mesh.surfaceInterpolation::deltaCoeffs() + * fvc::interpolate(K) + / fvc::interpolate(Cprho); + + DiNum = gMax(KrhoCpbyDelta.internalField())*runTime.deltaT().value(); + + meanDiNum = (average(KrhoCpbyDelta)).value()*runTime.deltaT().value(); + + Info<< "Region: " << mesh.name() << " Diffusion Number mean: " << meanDiNum + << " max: " << DiNum << endl; + + return DiNum; +} + + // ************************************************************************* // diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solidRegionDiffNo.H b/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solidRegionDiffNo.H index 333ef7a3eb..afb21252ac 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solidRegionDiffNo.H +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solidRegionDiffNo.H @@ -41,6 +41,15 @@ namespace Foam const volScalarField& Cprho, const volScalarField& K ); + + scalar solidRegionDiffNo + ( + const fvMesh& mesh, + const Time& runTime, + const volScalarField& Cprho, + const volSymmTensorField& K + ); + } #endif diff --git a/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solveSolid.H b/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solveSolid.H index 05b26d1626..d8aa03283b 100644 --- a/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solveSolid.H +++ b/applications/solvers/heatTransfer/chtMultiRegionFoam/solid/solveSolid.H @@ -18,6 +18,8 @@ if (finalIter) Info<< "Min/max T:" << min(T) << ' ' << max(T) << endl; } +thermo.correct(); + if (finalIter) { mesh.data::remove("finalIteration"); diff --git a/applications/solvers/lagrangian/coalChemistryFoam/Make/options b/applications/solvers/lagrangian/coalChemistryFoam/Make/options index c6daa2b570..329dffc84d 100644 --- a/applications/solvers/lagrangian/coalChemistryFoam/Make/options +++ b/applications/solvers/lagrangian/coalChemistryFoam/Make/options @@ -10,8 +10,8 @@ EXE_INC = \ -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquids/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquidMixture/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solids/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solidMixture/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolids/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolidMixture/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/thermophysicalFunctions/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/reactionThermo/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/SLGThermo/lnInclude \ @@ -33,8 +33,8 @@ EXE_LIBS = \ -lbasicThermophysicalModels \ -lliquids \ -lliquidMixture \ - -lsolids \ - -lsolidMixture \ + -lpointSolids \ + -lpointSolidMixture \ -lthermophysicalFunctions \ -lreactionThermophysicalModels \ -lSLGThermo \ diff --git a/applications/solvers/lagrangian/porousExplicitSourceReactingParcelFoam/Make/options b/applications/solvers/lagrangian/porousExplicitSourceReactingParcelFoam/Make/options index 6e117fc63b..7596b87bbd 100644 --- a/applications/solvers/lagrangian/porousExplicitSourceReactingParcelFoam/Make/options +++ b/applications/solvers/lagrangian/porousExplicitSourceReactingParcelFoam/Make/options @@ -10,8 +10,8 @@ EXE_INC = \ -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquids/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquidMixture/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solids/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solidMixture/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolids/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolidMixture/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/thermophysicalFunctions/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/reactionThermo/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/SLGThermo/lnInclude \ @@ -32,8 +32,8 @@ EXE_LIBS = \ -lbasicThermophysicalModels \ -lliquids \ -lliquidMixture \ - -lsolids \ - -lsolidMixture \ + -lpointSolids \ + -lpointSolidMixture \ -lthermophysicalFunctions \ -lreactionThermophysicalModels \ -lSLGThermo \ diff --git a/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options b/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options index 230a08dfad..34867be0b4 100644 --- a/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options +++ b/applications/solvers/lagrangian/reactingParcelFilmFoam/Make/options @@ -5,8 +5,8 @@ EXE_INC = \ -I$(LIB_SRC)/thermophysicalModels/pdfs/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solids/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solidMixture/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolids/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolidMixture/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquids/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquidMixture/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/thermophysicalFunctions/lnInclude \ @@ -26,8 +26,8 @@ EXE_LIBS = \ -lcompressibleLESModels \ -lspecie \ -lbasicThermophysicalModels \ - -lsolids \ - -lsolidMixture \ + -lpointSolids \ + -lpointSolidMixture \ -lthermophysicalFunctions \ -lreactionThermophysicalModels \ -lSLGThermo \ diff --git a/applications/solvers/lagrangian/reactingParcelFoam/Make/options b/applications/solvers/lagrangian/reactingParcelFoam/Make/options index 3954a34ea3..2dbb2590f7 100644 --- a/applications/solvers/lagrangian/reactingParcelFoam/Make/options +++ b/applications/solvers/lagrangian/reactingParcelFoam/Make/options @@ -9,8 +9,8 @@ EXE_INC = \ -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquids/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquidMixture/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solids/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solidMixture/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolids/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolidMixture/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/thermophysicalFunctions/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/reactionThermo/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/SLGThermo/lnInclude \ @@ -31,8 +31,8 @@ EXE_LIBS = \ -lbasicThermophysicalModels \ -lliquids \ -lliquidMixture \ - -lsolids \ - -lsolidMixture \ + -lpointSolids \ + -lpointSolidMixture \ -lthermophysicalFunctions \ -lreactionThermophysicalModels \ -lSLGThermo \ diff --git a/applications/solvers/lagrangian/steadyReactingParcelFoam/Make/options b/applications/solvers/lagrangian/steadyReactingParcelFoam/Make/options index 6e117fc63b..7596b87bbd 100644 --- a/applications/solvers/lagrangian/steadyReactingParcelFoam/Make/options +++ b/applications/solvers/lagrangian/steadyReactingParcelFoam/Make/options @@ -10,8 +10,8 @@ EXE_INC = \ -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquids/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/liquidMixture/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solids/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/solidMixture/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolids/lnInclude \ + -I$(LIB_SRC)/thermophysicalModels/pointSolidMixture/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/thermophysicalFunctions/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/reactionThermo/lnInclude \ -I$(LIB_SRC)/thermophysicalModels/SLGThermo/lnInclude \ @@ -32,8 +32,8 @@ EXE_LIBS = \ -lbasicThermophysicalModels \ -lliquids \ -lliquidMixture \ - -lsolids \ - -lsolidMixture \ + -lpointSolids \ + -lpointSolidMixture \ -lthermophysicalFunctions \ -lreactionThermophysicalModels \ -lSLGThermo \ diff --git a/applications/test/CompactIOList/Make/files b/applications/test/CompactIOList/Make/files index 7e2cf985bf..c5513ed5c1 100644 --- a/applications/test/CompactIOList/Make/files +++ b/applications/test/CompactIOList/Make/files @@ -1,4 +1,3 @@ +Test-CompactIOList.C -testCompactIOList.C - -EXE = $(FOAM_APPBIN)/CompactIOList +EXE = $(FOAM_USER_APPBIN)/Test-CompactIOList diff --git a/applications/test/CompactIOList/testCompactIOList.C b/applications/test/CompactIOList/Test-CompactIOList.C similarity index 100% rename from applications/test/CompactIOList/testCompactIOList.C rename to applications/test/CompactIOList/Test-CompactIOList.C diff --git a/applications/test/CompactListList/Make/files b/applications/test/CompactListList/Make/files index 12178dd469..7b7e043c6e 100644 --- a/applications/test/CompactListList/Make/files +++ b/applications/test/CompactListList/Make/files @@ -1,3 +1,3 @@ -CompactListListTest.C +Test-CompactListList.C -EXE = $(FOAM_USER_APPBIN)/CompactListListTest +EXE = $(FOAM_USER_APPBIN)/Test-CompactListList diff --git a/applications/test/CompactListList/CompactListListTest.C b/applications/test/CompactListList/Test-CompactListList.C similarity index 100% rename from applications/test/CompactListList/CompactListListTest.C rename to applications/test/CompactListList/Test-CompactListList.C diff --git a/applications/test/DLList/Make/files b/applications/test/DLList/Make/files index c2641f6e2f..01ae37f02e 100644 --- a/applications/test/DLList/Make/files +++ b/applications/test/DLList/Make/files @@ -1,3 +1,3 @@ -DLListTest.C +Test-DLList.C -EXE = $(FOAM_USER_APPBIN)/DLListTest +EXE = $(FOAM_USER_APPBIN)/Test-DLList diff --git a/applications/test/DLList/DLListTest.C b/applications/test/DLList/Test-DLList.C similarity index 100% rename from applications/test/DLList/DLListTest.C rename to applications/test/DLList/Test-DLList.C diff --git a/applications/test/Dictionary/Make/files b/applications/test/Dictionary/Make/files index ab30b8bb5d..7545aeb55f 100644 --- a/applications/test/Dictionary/Make/files +++ b/applications/test/Dictionary/Make/files @@ -1,3 +1,3 @@ -DictionaryTest.C +Test-Dictionary.C -EXE = $(FOAM_USER_APPBIN)/DictionaryTest +EXE = $(FOAM_USER_APPBIN)/Test-Dictionary diff --git a/applications/test/Dictionary/DictionaryTest.C b/applications/test/Dictionary/Test-Dictionary.C similarity index 100% rename from applications/test/Dictionary/DictionaryTest.C rename to applications/test/Dictionary/Test-Dictionary.C diff --git a/applications/test/DynamicField/Make/files b/applications/test/DynamicField/Make/files index bcf6af7ece..da93962659 100644 --- a/applications/test/DynamicField/Make/files +++ b/applications/test/DynamicField/Make/files @@ -1,3 +1,3 @@ -DynamicFieldTest.C +Test-DynamicField.C -EXE = $(FOAM_USER_APPBIN)/DynamicFieldTest +EXE = $(FOAM_USER_APPBIN)/Test-DynamicField diff --git a/applications/test/DynamicField/DynamicFieldTest.C b/applications/test/DynamicField/Test-DynamicField.C similarity index 100% rename from applications/test/DynamicField/DynamicFieldTest.C rename to applications/test/DynamicField/Test-DynamicField.C diff --git a/applications/test/DynamicList/Make/files b/applications/test/DynamicList/Make/files index 561605b6a7..b496842582 100644 --- a/applications/test/DynamicList/Make/files +++ b/applications/test/DynamicList/Make/files @@ -1,4 +1,3 @@ +Test-DynamicList.C -DynamicListTest.C - -EXE = $(FOAM_USER_APPBIN)/DynamicListTest +EXE = $(FOAM_USER_APPBIN)/Test-DynamicList diff --git a/applications/test/DynamicList/DynamicListTest.C b/applications/test/DynamicList/Test-DynamicList.C similarity index 100% rename from applications/test/DynamicList/DynamicListTest.C rename to applications/test/DynamicList/Test-DynamicList.C diff --git a/applications/test/Field/Make/files b/applications/test/Field/Make/files index 56e8f0ffa7..f8f0bb64df 100644 --- a/applications/test/Field/Make/files +++ b/applications/test/Field/Make/files @@ -1,3 +1,3 @@ -FieldTest.C +Test-Field.C -SEXE = $(FOAM_USER_APPBIN)/FieldTest +EXE = $(FOAM_USER_APPBIN)/Test-Field diff --git a/applications/test/Field/FieldTest.C b/applications/test/Field/Test-Field.C similarity index 82% rename from applications/test/Field/FieldTest.C rename to applications/test/Field/Test-Field.C index 42c01a053e..2e037f6a34 100644 --- a/applications/test/Field/FieldTest.C +++ b/applications/test/Field/Test-Field.C @@ -1,4 +1,4 @@ -#include "testField.H" +#include "Test-Field.H" int main() { diff --git a/applications/test/Field/testField.H b/applications/test/Field/Test-Field.H similarity index 99% rename from applications/test/Field/testField.H rename to applications/test/Field/Test-Field.H index 530b662525..bd6929f838 100644 --- a/applications/test/Field/testField.H +++ b/applications/test/Field/Test-Field.H @@ -56,4 +56,3 @@ inline Vector operator+(const Vector& v1, const Vector& v2) { return Vector(v1.X+v2.X, v1.Y+v2.Y); } - diff --git a/applications/test/FixedList/Make/files b/applications/test/FixedList/Make/files index 0728e72bc1..dcfee8af13 100644 --- a/applications/test/FixedList/Make/files +++ b/applications/test/FixedList/Make/files @@ -1,3 +1,3 @@ -FixedListTest.C +Test-FixedList.C -EXE = $(FOAM_USER_APPBIN)/FixedListTest +EXE = $(FOAM_USER_APPBIN)/Test-FixedList diff --git a/applications/test/FixedList/FixedListTest.C b/applications/test/FixedList/Test-FixedList.C similarity index 100% rename from applications/test/FixedList/FixedListTest.C rename to applications/test/FixedList/Test-FixedList.C diff --git a/applications/test/HashPtrTable/Make/files b/applications/test/HashPtrTable/Make/files index b4b57ffc76..239bab4cd7 100644 --- a/applications/test/HashPtrTable/Make/files +++ b/applications/test/HashPtrTable/Make/files @@ -1,3 +1,3 @@ -hashPtrTableTest.C +Test-hashPtrTable.C -EXE = $(FOAM_USER_APPBIN)/hashPtrTableTest +EXE = $(FOAM_USER_APPBIN)/Test-hashPtrTable diff --git a/applications/test/HashPtrTable/hashPtrTableTest.C b/applications/test/HashPtrTable/Test-hashPtrTable.C similarity index 100% rename from applications/test/HashPtrTable/hashPtrTableTest.C rename to applications/test/HashPtrTable/Test-hashPtrTable.C diff --git a/applications/test/HashSet/Make/files b/applications/test/HashSet/Make/files index 4c846a2c33..4b90d400c6 100644 --- a/applications/test/HashSet/Make/files +++ b/applications/test/HashSet/Make/files @@ -1,3 +1,3 @@ -hashSetTest.C +Test-hashSet.C -EXE = $(FOAM_USER_APPBIN)/hashSetTest +EXE = $(FOAM_USER_APPBIN)/Test-hashSet diff --git a/applications/test/HashSet/hashSetTest.C b/applications/test/HashSet/Test-hashSet.C similarity index 100% rename from applications/test/HashSet/hashSetTest.C rename to applications/test/HashSet/Test-hashSet.C diff --git a/applications/test/HashTable/Make/files b/applications/test/HashTable/Make/files index 13884d64f4..53d1e07699 100644 --- a/applications/test/HashTable/Make/files +++ b/applications/test/HashTable/Make/files @@ -1,3 +1,3 @@ -hashTableTest.C +Test-hashTable.C -EXE = $(FOAM_USER_APPBIN)/hashTableTest +EXE = $(FOAM_USER_APPBIN)/Test-hashTable diff --git a/applications/test/HashTable/hashTableTest.C b/applications/test/HashTable/Test-hashTable.C similarity index 100% rename from applications/test/HashTable/hashTableTest.C rename to applications/test/HashTable/Test-hashTable.C diff --git a/applications/test/Hashing/Make/files b/applications/test/Hashing/Make/files index a5f1087728..fd270ac217 100644 --- a/applications/test/Hashing/Make/files +++ b/applications/test/Hashing/Make/files @@ -1,3 +1,3 @@ -testHashing.C +Test-Hashing.C -EXE = $(FOAM_USER_APPBIN)/testHashing +EXE = $(FOAM_USER_APPBIN)/Test-Hashing diff --git a/applications/test/Hashing/testHashing.C b/applications/test/Hashing/Test-Hashing.C similarity index 100% rename from applications/test/Hashing/testHashing.C rename to applications/test/Hashing/Test-Hashing.C diff --git a/applications/test/HashingSpeed/Make/files b/applications/test/HashingSpeed/Make/files index 2d0e54d6e3..599e2ad9bf 100644 --- a/applications/test/HashingSpeed/Make/files +++ b/applications/test/HashingSpeed/Make/files @@ -1,3 +1,3 @@ -testHashingSpeed.C +Test-HashingSpeed.C -EXE = $(FOAM_USER_APPBIN)/testHashingSpeed +EXE = $(FOAM_USER_APPBIN)/Test-HashingSpeed diff --git a/applications/test/HashingSpeed/testHashingSpeed.C b/applications/test/HashingSpeed/Test-HashingSpeed.C similarity index 100% rename from applications/test/HashingSpeed/testHashingSpeed.C rename to applications/test/HashingSpeed/Test-HashingSpeed.C diff --git a/applications/test/ISLList/Make/files b/applications/test/ISLList/Make/files index 9b5b00ccc1..ceb5fc148f 100644 --- a/applications/test/ISLList/Make/files +++ b/applications/test/ISLList/Make/files @@ -1,3 +1,3 @@ -ISLListTest.C +Test-ISLList.C -EXE = $(FOAM_USER_APPBIN)/ISLListTest +EXE = $(FOAM_USER_APPBIN)/Test-ISLList diff --git a/applications/test/ISLList/ISLListTest.C b/applications/test/ISLList/Test-ISLList.C similarity index 100% rename from applications/test/ISLList/ISLListTest.C rename to applications/test/ISLList/Test-ISLList.C diff --git a/applications/test/IStringStream/Make/files b/applications/test/IStringStream/Make/files index e88d4acec8..2f212b0042 100644 --- a/applications/test/IStringStream/Make/files +++ b/applications/test/IStringStream/Make/files @@ -1,3 +1,3 @@ -IStringStreamTest.C +Test-IStringStream.C -EXE = $(FOAM_USER_APPBIN)/IStringStreamTest +EXE = $(FOAM_USER_APPBIN)/Test-IStringStream diff --git a/applications/test/IStringStream/IStringStreamTest.C b/applications/test/IStringStream/Test-IStringStream.C similarity index 100% rename from applications/test/IStringStream/IStringStreamTest.C rename to applications/test/IStringStream/Test-IStringStream.C diff --git a/applications/test/IndirectList/Make/files b/applications/test/IndirectList/Make/files index ac59789e88..397e90c6d0 100644 --- a/applications/test/IndirectList/Make/files +++ b/applications/test/IndirectList/Make/files @@ -1,4 +1,3 @@ +Test-IndirectList.C -IndirectListTest.C - -EXE = $(FOAM_USER_APPBIN)/IndirectListTest +EXE = $(FOAM_USER_APPBIN)/Test-IndirectList diff --git a/applications/test/IndirectList/IndirectListTest.C b/applications/test/IndirectList/Test-IndirectList.C similarity index 100% rename from applications/test/IndirectList/IndirectListTest.C rename to applications/test/IndirectList/Test-IndirectList.C diff --git a/applications/test/LduMatrix/Make/files b/applications/test/LduMatrix/Make/files deleted file mode 100644 index 99fa29929c..0000000000 --- a/applications/test/LduMatrix/Make/files +++ /dev/null @@ -1,3 +0,0 @@ -LduMatrixTest3.C - -EXE = $(FOAM_USER_APPBIN)/LduMatrixTest diff --git a/applications/test/List/ListLoop.C b/applications/test/List/ListLoop.C deleted file mode 100644 index 8695836db1..0000000000 --- a/applications/test/List/ListLoop.C +++ /dev/null @@ -1,18 +0,0 @@ -#include "List.H" -#include "scalar.H" - -using namespace Foam; - -void func -( - List& l1, - const List& l2, - const List