├── Allwmake ├── LICENSE ├── README.txt ├── applications ├── Allwmake ├── solvers │ ├── dbnsFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── beginTimeStep.H │ │ ├── boundLocalTimeStep.H │ │ ├── calculateScalarTransport.H │ │ ├── compressibleCourantNo.H │ │ ├── createFields.H │ │ ├── dbnsFoam.C │ │ ├── initialise.H │ │ ├── outerLoop.H │ │ ├── residualsUpdate.H │ │ ├── setCoAndDeltaT.H │ │ ├── setUpSolIncrements.H │ │ └── updateFields.H │ ├── dbnsFullyImplicitHBFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── boundLocalTimeStep.H │ │ ├── calculateScalarTransport.H │ │ ├── compressibleCourantNo.H │ │ ├── createFields.H │ │ ├── createMeshes.H │ │ ├── dbnsFullyImplicitHBFoam.C │ │ ├── initialise.H │ │ ├── outerLoop.H │ │ ├── residualsUpdate.H │ │ ├── setCoAndDeltaT.H │ │ ├── setUpResiduals.H │ │ ├── setUpSolIncrements.H │ │ ├── updateFields.H │ │ └── updateMeshes.H │ └── reconstructHBFoam │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── createFields.H │ │ ├── createMeshes.H │ │ └── reconstructHBFoam.C └── utilities │ ├── Allwmake │ └── parallel │ ├── decomposeParHB │ ├── Make │ │ ├── files │ │ └── options │ ├── decomposeParHB.C │ ├── dimFieldDecomposer.C │ ├── dimFieldDecomposer.H │ ├── dimFieldDecomposerDecomposeFields.C │ ├── domainDecomposition.C │ ├── domainDecomposition.H │ ├── domainDecompositionDistribute.C │ ├── domainDecompositionMesh.C │ ├── domainDecompositionTemplates.C │ ├── pointFieldDecomposer.C │ ├── pointFieldDecomposer.H │ ├── pointFieldDecomposerDecomposeFields.C │ ├── readFields.C │ └── readFields.H │ └── reconstructParHB │ ├── Make │ ├── files │ └── options │ ├── checkFaceAddressingComp.H │ └── reconstructParHB.C ├── originalOFFiles └── constraintFvPatchFields │ ├── calculatedProcessor │ ├── calculatedProcessorFvPatchField.C │ ├── calculatedProcessorFvPatchField.H │ ├── calculatedProcessorFvPatchFields.C │ ├── calculatedProcessorFvPatchFields.H │ └── calculatedProcessorFvPatchFieldsFwd.H │ ├── cyclic │ ├── cyclicFvPatchField.C │ ├── cyclicFvPatchField.H │ ├── cyclicFvPatchFields.C │ ├── cyclicFvPatchFields.H │ └── cyclicFvPatchFieldsFwd.H │ ├── cyclicACMI │ ├── cyclicACMIFvPatchField.C │ ├── cyclicACMIFvPatchField.H │ ├── cyclicACMIFvPatchFields.C │ ├── cyclicACMIFvPatchFields.H │ └── cyclicACMIFvPatchFieldsFwd.H │ ├── cyclicAMI │ ├── cyclicAMIFvPatchField.C │ ├── cyclicAMIFvPatchField.H │ ├── cyclicAMIFvPatchFields.C │ ├── cyclicAMIFvPatchFields.H │ └── cyclicAMIFvPatchFieldsFwd.H │ ├── cyclicSlip │ ├── cyclicSlipFvPatchField.C │ ├── cyclicSlipFvPatchField.H │ ├── cyclicSlipFvPatchFields.C │ ├── cyclicSlipFvPatchFields.H │ └── cyclicSlipFvPatchFieldsFwd.H │ ├── empty │ ├── emptyFvPatchField.C │ ├── emptyFvPatchField.H │ ├── emptyFvPatchFields.C │ ├── emptyFvPatchFields.H │ └── emptyFvPatchFieldsFwd.H │ ├── jumpCyclic │ ├── jumpCyclicFvPatchField.C │ ├── jumpCyclicFvPatchField.H │ ├── jumpCyclicFvPatchFields.C │ ├── jumpCyclicFvPatchFields.H │ └── jumpCyclicFvPatchFieldsFwd.H │ ├── jumpCyclicAMI │ ├── jumpCyclicAMIFvPatchField.C │ ├── jumpCyclicAMIFvPatchField.H │ ├── jumpCyclicAMIFvPatchFields.C │ ├── jumpCyclicAMIFvPatchFields.H │ └── jumpCyclicAMIFvPatchFieldsFwd.H │ ├── nonuniformTransformCyclic │ ├── nonuniformTransformCyclicFvPatchField.C │ ├── nonuniformTransformCyclicFvPatchField.H │ ├── nonuniformTransformCyclicFvPatchFields.C │ ├── nonuniformTransformCyclicFvPatchFields.H │ └── nonuniformTransformCyclicFvPatchFieldsFwd.H │ ├── processor │ ├── processorFvPatchField.C │ ├── processorFvPatchField.H │ ├── processorFvPatchFields.C │ ├── processorFvPatchFields.H │ └── processorFvPatchFieldsFwd.H │ ├── processorCyclic │ ├── processorCyclicFvPatchField.C │ ├── processorCyclicFvPatchField.H │ ├── processorCyclicFvPatchFields.C │ ├── processorCyclicFvPatchFields.H │ └── processorCyclicFvPatchFieldsFwd.H │ ├── symmetry │ ├── symmetryFvPatchField.C │ ├── symmetryFvPatchField.H │ ├── symmetryFvPatchFields.C │ ├── symmetryFvPatchFields.H │ └── symmetryFvPatchFieldsFwd.H │ ├── symmetryPlane │ ├── symmetryPlaneFvPatchField.C │ ├── symmetryPlaneFvPatchField.H │ ├── symmetryPlaneFvPatchFields.C │ ├── symmetryPlaneFvPatchFields.H │ ├── symmetryPlaneFvPatchFieldsFwd.H │ └── symmetryPlaneFvPatchScalarField.C │ └── wedge │ ├── wedgeFvPatchField.C │ ├── wedgeFvPatchField.H │ ├── wedgeFvPatchFields.C │ ├── wedgeFvPatchFields.H │ ├── wedgeFvPatchFieldsFwd.H │ └── wedgeFvPatchScalarField.C ├── src ├── AMIInterpolation │ ├── GAMG │ │ ├── interfaceFields │ │ │ ├── overlapAMIGAMGInterfaceField │ │ │ │ ├── overlapAMIGAMGInterfaceField.C │ │ │ │ └── overlapAMIGAMGInterfaceField.H │ │ │ └── phaseLagAMIGAMGInterfaceField │ │ │ │ ├── phaseLagAMIGAMGInterfaceField.C │ │ │ │ └── phaseLagAMIGAMGInterfaceField.H │ │ └── interfaces │ │ │ ├── overlapAMIGAMGInterface │ │ │ ├── overlapAMIGAMGInterface.C │ │ │ └── overlapAMIGAMGInterface.H │ │ │ └── phaseLagAMIGAMGInterface │ │ │ ├── phaseLagAMIGAMGInterface.C │ │ │ └── phaseLagAMIGAMGInterface.H │ └── patches │ │ ├── overlapAMI │ │ ├── overlapAMILduInterfaceField │ │ │ ├── overlapAMILduInterface.C │ │ │ ├── overlapAMILduInterface.H │ │ │ ├── overlapAMILduInterfaceField.C │ │ │ └── overlapAMILduInterfaceField.H │ │ ├── overlapAMIPointPatch │ │ │ ├── overlapAMIPointPatch.C │ │ │ └── overlapAMIPointPatch.H │ │ ├── overlapAMIPointPatchField │ │ │ ├── overlapAMIPointPatchField.C │ │ │ ├── overlapAMIPointPatchField.H │ │ │ ├── overlapAMIPointPatchFields.C │ │ │ └── overlapAMIPointPatchFields.H │ │ └── overlapAMIPolyPatch │ │ │ ├── overlapAMIPolyPatch.C │ │ │ ├── overlapAMIPolyPatch.H │ │ │ ├── overlapAMIPolyPatchI.H │ │ │ ├── overlapAMIPolyPatchInterpolateScalar.C │ │ │ └── overlapAMIPolyPatchTemplates.C │ │ └── phaseLagAMI │ │ ├── phaseLagAMILduInterfaceField │ │ ├── phaseLagAMILduInterface.C │ │ ├── phaseLagAMILduInterface.H │ │ ├── phaseLagAMILduInterfaceField.C │ │ └── phaseLagAMILduInterfaceField.H │ │ ├── phaseLagAMIPointPatch │ │ ├── phaseLagAMIPointPatch.C │ │ └── phaseLagAMIPointPatch.H │ │ ├── phaseLagAMIPointPatchField │ │ ├── phaseLagAMIPointPatchField.C │ │ ├── phaseLagAMIPointPatchField.H │ │ ├── phaseLagAMIPointPatchFields.C │ │ └── phaseLagAMIPointPatchFields.H │ │ └── phaseLagAMIPolyPatch │ │ ├── phaseLagAMIPolyPatch.C │ │ ├── phaseLagAMIPolyPatch.H │ │ ├── phaseLagAMIPolyPatchI.H │ │ ├── phaseLagAMIPolyPatchInterpolateScalar.C │ │ └── phaseLagAMIPolyPatchTemplates.C ├── HBM │ └── HBMDdtScheme │ │ ├── HBMDdtScheme.C │ │ ├── HBMDdtScheme.H │ │ └── HBMDdtSchemes.C ├── Make │ ├── files │ └── options ├── blockFvMatrix │ ├── blockFvMatrix.C │ ├── blockFvMatrix.H │ ├── blockFvMatrixUpdateMatrixInterfaces.C │ ├── blockFvOperators.C │ ├── blockFvOperators.H │ ├── blockFvOperatorsTemplates.C │ ├── blockFvScalarScalarMatrix.C │ ├── blockFvScalarScalarMatrix.H │ ├── blockFvTensorVectorMatrix.C │ └── blockFvTensorVectorMatrix.H ├── cellFaceFunctions.H ├── cfdTools │ ├── HB │ │ ├── HBZone.C │ │ ├── HBZone.H │ │ ├── HBZoneI.H │ │ ├── HBZoneList.C │ │ ├── HBZoneList.H │ │ ├── HBZoneListTemplates.C │ │ ├── HBZoneTemplates.C │ │ ├── IOHBZoneList.C │ │ └── IOHBZoneList.H │ ├── MRFCoupled │ │ ├── IOMRFCoupledZoneList.C │ │ ├── IOMRFCoupledZoneList.H │ │ ├── MRFCoupledZone.C │ │ ├── MRFCoupledZone.H │ │ ├── MRFCoupledZoneI.H │ │ ├── MRFCoupledZoneList.C │ │ ├── MRFCoupledZoneList.H │ │ ├── MRFCoupledZoneListTemplates.C │ │ └── MRFCoupledZoneTemplates.C │ ├── MRFTranslating │ │ ├── IOMRFTranslatingZoneList.C │ │ ├── IOMRFTranslatingZoneList.H │ │ ├── MRFTranslatingZone.C │ │ ├── MRFTranslatingZone.H │ │ ├── MRFTranslatingZoneI.H │ │ ├── MRFTranslatingZoneList.C │ │ ├── MRFTranslatingZoneList.H │ │ ├── MRFTranslatingZoneListTemplates.C │ │ └── MRFTranslatingZoneTemplates.C │ └── pseudotimeControl │ │ ├── pseudotimeControl.C │ │ ├── pseudotimeControl.H │ │ └── pseudotimeControlI.H ├── convectiveFluxSchemes │ ├── ausmPlusUp │ │ ├── ausmPlusUpFluxScheme.C │ │ └── ausmPlusUpFluxScheme.H │ ├── convectiveFluxScheme │ │ ├── convectiveFluxScheme.C │ │ ├── convectiveFluxScheme.H │ │ └── newConvectiveFluxScheme.C │ ├── hllc │ │ ├── hllcFluxScheme.C │ │ └── hllcFluxScheme.H │ └── roe │ │ ├── roeFluxScheme.C │ │ └── roeFluxScheme.H ├── coupledMatrix │ ├── coupledMatrix.C │ ├── coupledMatrix.H │ ├── coupledMatrixPreconditioner.C │ ├── coupledMatrixSmoother.C │ ├── coupledMatrixSolver.C │ ├── preconditioners │ │ ├── Jacobi │ │ │ ├── Jacobi.C │ │ │ └── Jacobi.H │ │ └── lusgs │ │ │ ├── lusgs.C │ │ │ └── lusgs.H │ ├── smoothers │ │ └── Jacobi │ │ │ ├── JacobiSmoother.C │ │ │ └── JacobiSmoother.H │ └── solvers │ │ ├── gmres │ │ ├── gmres.C │ │ └── gmres.H │ │ ├── residualsIO │ │ └── residualsIO.H │ │ └── smoothSolverCoupled │ │ ├── smoothSolverCoupled.C │ │ └── smoothSolverCoupled.H ├── dualTimeDdtScheme │ ├── dualTimeDdtScheme.C │ ├── dualTimeDdtScheme.H │ └── dualTimeDdtSchemes.C ├── fields │ ├── fvPatchFields │ │ └── constraint │ │ │ ├── overlapAMI │ │ │ ├── overlapAMIFvPatchField.C │ │ │ ├── overlapAMIFvPatchField.H │ │ │ ├── overlapAMIFvPatchFields.C │ │ │ ├── overlapAMIFvPatchFields.H │ │ │ └── overlapAMIFvPatchFieldsFwd.H │ │ │ ├── phaseLagAMI │ │ │ ├── phaseLagAMIFvPatchField.C │ │ │ ├── phaseLagAMIFvPatchField.H │ │ │ ├── phaseLagAMIFvPatchFields.C │ │ │ ├── phaseLagAMIFvPatchFields.H │ │ │ └── phaseLagAMIFvPatchFieldsFwd.H │ │ │ └── phaseLagCyclic │ │ │ ├── phaseLagCyclicFvPatchField.C │ │ │ ├── phaseLagCyclicFvPatchField.H │ │ │ ├── phaseLagCyclicFvPatchFields.C │ │ │ ├── phaseLagCyclicFvPatchFields.H │ │ │ └── phaseLagCyclicFvPatchFieldsFwd.H │ ├── fvsPatchFields │ │ └── constraint │ │ │ ├── overlapAMI │ │ │ ├── overlapAMIFvsPatchField.C │ │ │ ├── overlapAMIFvsPatchField.H │ │ │ ├── overlapAMIFvsPatchFields.C │ │ │ ├── overlapAMIFvsPatchFields.H │ │ │ └── overlapAMIFvsPatchFieldsFwd.H │ │ │ ├── phaseLagAMI │ │ │ ├── phaseLagAMIFvsPatchField.C │ │ │ ├── phaseLagAMIFvsPatchField.H │ │ │ ├── phaseLagAMIFvsPatchFields.C │ │ │ ├── phaseLagAMIFvsPatchFields.H │ │ │ └── phaseLagAMIFvsPatchFieldsFwd.H │ │ │ └── phaseLagCyclic │ │ │ ├── phaseLagCyclicFvsPatchField.C │ │ │ ├── phaseLagCyclicFvsPatchField.H │ │ │ ├── phaseLagCyclicFvsPatchFields.C │ │ │ ├── phaseLagCyclicFvsPatchFields.H │ │ │ └── phaseLagCyclicFvsPatchFieldsFwd.H │ └── pointPatchFields │ │ └── constraint │ │ └── phaseLagCyclic │ │ ├── phaseLagCyclicPointPatchField.C │ │ ├── phaseLagCyclicPointPatchField.H │ │ ├── phaseLagCyclicPointPatchFields.C │ │ └── phaseLagCyclicPointPatchFields.H ├── fvMesh │ └── fvPatches │ │ └── constraint │ │ ├── overlapAMI │ │ ├── overlapAMIFvPatch.C │ │ └── overlapAMIFvPatch.H │ │ ├── phaseLagAMI │ │ ├── phaseLagAMIFvPatch.C │ │ └── phaseLagAMIFvPatch.H │ │ └── phaseLagCyclic │ │ ├── phaseLagCyclicFvPatch.C │ │ └── phaseLagCyclicFvPatch.H ├── meshes │ ├── pointMesh │ │ └── pointPatches │ │ │ └── constraint │ │ │ └── phaseLagCyclic │ │ │ ├── phaseLagCyclicPointPatch.C │ │ │ └── phaseLagCyclicPointPatch.H │ └── polyMesh │ │ └── polyPatches │ │ └── constraint │ │ └── phaseLagCyclic │ │ ├── phaseLagCyclicPolyPatch.C │ │ └── phaseLagCyclicPolyPatch.H └── viscousFluxScheme │ ├── viscousFluxScheme.C │ └── viscousFluxScheme.H └── tutorials ├── OneraM6Wing ├── 0 │ ├── T │ ├── U │ └── p ├── Allrun ├── constant │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones │ │ ├── faceZones │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── pointZones │ │ └── points │ ├── thermophysicalProperties │ └── turbulenceProperties └── system │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── VKI-LS89 ├── 0 │ ├── T │ ├── U │ ├── alphat │ ├── k │ ├── nut │ ├── omega │ └── p ├── Allrun ├── constant │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones │ │ ├── faceZones │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── pointZones │ │ └── points │ ├── thermophysicalProperties │ └── turbulenceProperties └── system │ ├── controlDict │ ├── decomposeParDict │ ├── foamDataToFluentDict │ ├── fvSchemes │ └── fvSolution ├── circularArcBump ├── supersonic │ ├── 0 │ │ ├── T │ │ ├── U │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution └── transonic │ ├── 0 │ ├── T │ ├── U │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── thermophysicalProperties │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── forwardStep ├── 0 │ ├── T │ ├── U │ ├── p │ └── polyMesh │ │ └── cellMap ├── Allrun ├── constant │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones │ │ ├── faceZones │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── pointZones │ │ ├── points │ │ └── sets │ │ │ ├── c0 │ │ │ └── refinedCells │ ├── thermophysicalProperties │ └── turbulenceProperties └── system │ ├── controlDict │ ├── fvSchemes │ └── fvSolution └── shockTube ├── 0.og ├── T ├── U └── p ├── Allclean ├── Allrun ├── constant ├── thermophysicalProperties └── turbulenceProperties └── system ├── blockMeshDict ├── controlDict ├── fvSchemes ├── fvSolution └── setFieldsDict /Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/Allwmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/README.txt -------------------------------------------------------------------------------- /applications/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/Allwmake -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/Make/files -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/Make/options -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/beginTimeStep.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/beginTimeStep.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/boundLocalTimeStep.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/boundLocalTimeStep.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/calculateScalarTransport.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/calculateScalarTransport.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/compressibleCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/compressibleCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/createFields.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/dbnsFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/dbnsFoam.C -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/initialise.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/initialise.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/outerLoop.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/outerLoop.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/residualsUpdate.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/residualsUpdate.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/setCoAndDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/setCoAndDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/setUpSolIncrements.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/setUpSolIncrements.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFoam/updateFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFoam/updateFields.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/Make/files -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/Make/options -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/boundLocalTimeStep.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/boundLocalTimeStep.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/calculateScalarTransport.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/calculateScalarTransport.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/compressibleCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/compressibleCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/createFields.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/createMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/createMeshes.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/dbnsFullyImplicitHBFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/dbnsFullyImplicitHBFoam.C -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/initialise.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/initialise.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/outerLoop.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/outerLoop.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/residualsUpdate.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/residualsUpdate.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/setCoAndDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/setCoAndDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/setUpResiduals.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/setUpResiduals.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/setUpSolIncrements.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/setUpSolIncrements.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/updateFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/updateFields.H -------------------------------------------------------------------------------- /applications/solvers/dbnsFullyImplicitHBFoam/updateMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/dbnsFullyImplicitHBFoam/updateMeshes.H -------------------------------------------------------------------------------- /applications/solvers/reconstructHBFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/reconstructHBFoam/Make/files -------------------------------------------------------------------------------- /applications/solvers/reconstructHBFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/reconstructHBFoam/Make/options -------------------------------------------------------------------------------- /applications/solvers/reconstructHBFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/reconstructHBFoam/createFields.H -------------------------------------------------------------------------------- /applications/solvers/reconstructHBFoam/createMeshes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/reconstructHBFoam/createMeshes.H -------------------------------------------------------------------------------- /applications/solvers/reconstructHBFoam/reconstructHBFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/solvers/reconstructHBFoam/reconstructHBFoam.C -------------------------------------------------------------------------------- /applications/utilities/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/Allwmake -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/Make/files -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/Make/options -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/decomposeParHB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/decomposeParHB.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/dimFieldDecomposer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/dimFieldDecomposer.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/dimFieldDecomposer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/dimFieldDecomposer.H -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/dimFieldDecomposerDecomposeFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/dimFieldDecomposerDecomposeFields.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/domainDecomposition.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/domainDecomposition.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/domainDecomposition.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/domainDecomposition.H -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/domainDecompositionDistribute.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/domainDecompositionDistribute.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/domainDecompositionMesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/domainDecompositionMesh.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/domainDecompositionTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/domainDecompositionTemplates.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/pointFieldDecomposer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/pointFieldDecomposer.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/pointFieldDecomposer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/pointFieldDecomposer.H -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/pointFieldDecomposerDecomposeFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/pointFieldDecomposerDecomposeFields.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/readFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/readFields.C -------------------------------------------------------------------------------- /applications/utilities/parallel/decomposeParHB/readFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/decomposeParHB/readFields.H -------------------------------------------------------------------------------- /applications/utilities/parallel/reconstructParHB/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/reconstructParHB/Make/files -------------------------------------------------------------------------------- /applications/utilities/parallel/reconstructParHB/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/reconstructParHB/Make/options -------------------------------------------------------------------------------- /applications/utilities/parallel/reconstructParHB/checkFaceAddressingComp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/reconstructParHB/checkFaceAddressingComp.H -------------------------------------------------------------------------------- /applications/utilities/parallel/reconstructParHB/reconstructParHB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/applications/utilities/parallel/reconstructParHB/reconstructParHB.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/calculatedProcessor/calculatedProcessorFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclic/cyclicFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicACMI/cyclicACMIFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicAMI/cyclicAMIFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/cyclicSlip/cyclicSlipFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/empty/emptyFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclic/jumpCyclicFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/jumpCyclicAMI/jumpCyclicAMIFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/nonuniformTransformCyclic/nonuniformTransformCyclicFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processor/processorFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processor/processorFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processor/processorFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processor/processorFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processor/processorFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processor/processorFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processor/processorFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processor/processorFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processor/processorFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processor/processorFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/processorCyclic/processorCyclicFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetry/symmetryFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchScalarField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/symmetryPlane/symmetryPlaneFvPatchScalarField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchField.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchField.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchFields.C -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchFields.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchScalarField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/originalOFFiles/constraintFvPatchFields/wedge/wedgeFvPatchScalarField.C -------------------------------------------------------------------------------- /src/AMIInterpolation/GAMG/interfaceFields/overlapAMIGAMGInterfaceField/overlapAMIGAMGInterfaceField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/GAMG/interfaceFields/overlapAMIGAMGInterfaceField/overlapAMIGAMGInterfaceField.C -------------------------------------------------------------------------------- /src/AMIInterpolation/GAMG/interfaceFields/overlapAMIGAMGInterfaceField/overlapAMIGAMGInterfaceField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/GAMG/interfaceFields/overlapAMIGAMGInterfaceField/overlapAMIGAMGInterfaceField.H -------------------------------------------------------------------------------- /src/AMIInterpolation/GAMG/interfaceFields/phaseLagAMIGAMGInterfaceField/phaseLagAMIGAMGInterfaceField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/GAMG/interfaceFields/phaseLagAMIGAMGInterfaceField/phaseLagAMIGAMGInterfaceField.C -------------------------------------------------------------------------------- /src/AMIInterpolation/GAMG/interfaceFields/phaseLagAMIGAMGInterfaceField/phaseLagAMIGAMGInterfaceField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/GAMG/interfaceFields/phaseLagAMIGAMGInterfaceField/phaseLagAMIGAMGInterfaceField.H -------------------------------------------------------------------------------- /src/AMIInterpolation/GAMG/interfaces/overlapAMIGAMGInterface/overlapAMIGAMGInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/GAMG/interfaces/overlapAMIGAMGInterface/overlapAMIGAMGInterface.C -------------------------------------------------------------------------------- /src/AMIInterpolation/GAMG/interfaces/overlapAMIGAMGInterface/overlapAMIGAMGInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/GAMG/interfaces/overlapAMIGAMGInterface/overlapAMIGAMGInterface.H -------------------------------------------------------------------------------- /src/AMIInterpolation/GAMG/interfaces/phaseLagAMIGAMGInterface/phaseLagAMIGAMGInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/GAMG/interfaces/phaseLagAMIGAMGInterface/phaseLagAMIGAMGInterface.C -------------------------------------------------------------------------------- /src/AMIInterpolation/GAMG/interfaces/phaseLagAMIGAMGInterface/phaseLagAMIGAMGInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/GAMG/interfaces/phaseLagAMIGAMGInterface/phaseLagAMIGAMGInterface.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMILduInterfaceField/overlapAMILduInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMILduInterfaceField/overlapAMILduInterface.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMILduInterfaceField/overlapAMILduInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMILduInterfaceField/overlapAMILduInterface.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMILduInterfaceField/overlapAMILduInterfaceField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMILduInterfaceField/overlapAMILduInterfaceField.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMILduInterfaceField/overlapAMILduInterfaceField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMILduInterfaceField/overlapAMILduInterfaceField.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatch/overlapAMIPointPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatch/overlapAMIPointPatch.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatch/overlapAMIPointPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatch/overlapAMIPointPatch.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatchField/overlapAMIPointPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatchField/overlapAMIPointPatchField.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatchField/overlapAMIPointPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatchField/overlapAMIPointPatchField.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatchField/overlapAMIPointPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatchField/overlapAMIPointPatchFields.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatchField/overlapAMIPointPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPointPatchField/overlapAMIPointPatchFields.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatch.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatch.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatchI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatchI.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatchInterpolateScalar.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatchInterpolateScalar.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatchTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/overlapAMI/overlapAMIPolyPatch/overlapAMIPolyPatchTemplates.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMILduInterfaceField/phaseLagAMILduInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMILduInterfaceField/phaseLagAMILduInterface.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMILduInterfaceField/phaseLagAMILduInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMILduInterfaceField/phaseLagAMILduInterface.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMILduInterfaceField/phaseLagAMILduInterfaceField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMILduInterfaceField/phaseLagAMILduInterfaceField.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMILduInterfaceField/phaseLagAMILduInterfaceField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMILduInterfaceField/phaseLagAMILduInterfaceField.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatch/phaseLagAMIPointPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatch/phaseLagAMIPointPatch.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatch/phaseLagAMIPointPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatch/phaseLagAMIPointPatch.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatchField/phaseLagAMIPointPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatchField/phaseLagAMIPointPatchField.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatchField/phaseLagAMIPointPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatchField/phaseLagAMIPointPatchField.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatchField/phaseLagAMIPointPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatchField/phaseLagAMIPointPatchFields.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatchField/phaseLagAMIPointPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPointPatchField/phaseLagAMIPointPatchFields.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatch.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatch.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatchI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatchI.H -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatchInterpolateScalar.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatchInterpolateScalar.C -------------------------------------------------------------------------------- /src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatchTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/AMIInterpolation/patches/phaseLagAMI/phaseLagAMIPolyPatch/phaseLagAMIPolyPatchTemplates.C -------------------------------------------------------------------------------- /src/HBM/HBMDdtScheme/HBMDdtScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/HBM/HBMDdtScheme/HBMDdtScheme.C -------------------------------------------------------------------------------- /src/HBM/HBMDdtScheme/HBMDdtScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/HBM/HBMDdtScheme/HBMDdtScheme.H -------------------------------------------------------------------------------- /src/HBM/HBMDdtScheme/HBMDdtSchemes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/HBM/HBMDdtScheme/HBMDdtSchemes.C -------------------------------------------------------------------------------- /src/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/Make/files -------------------------------------------------------------------------------- /src/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/Make/options -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvMatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvMatrix.C -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvMatrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvMatrix.H -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvMatrixUpdateMatrixInterfaces.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvMatrixUpdateMatrixInterfaces.C -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvOperators.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvOperators.C -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvOperators.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvOperators.H -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvOperatorsTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvOperatorsTemplates.C -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvScalarScalarMatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvScalarScalarMatrix.C -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvScalarScalarMatrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvScalarScalarMatrix.H -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvTensorVectorMatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvTensorVectorMatrix.C -------------------------------------------------------------------------------- /src/blockFvMatrix/blockFvTensorVectorMatrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/blockFvMatrix/blockFvTensorVectorMatrix.H -------------------------------------------------------------------------------- /src/cellFaceFunctions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cellFaceFunctions.H -------------------------------------------------------------------------------- /src/cfdTools/HB/HBZone.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/HBZone.C -------------------------------------------------------------------------------- /src/cfdTools/HB/HBZone.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/HBZone.H -------------------------------------------------------------------------------- /src/cfdTools/HB/HBZoneI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/HBZoneI.H -------------------------------------------------------------------------------- /src/cfdTools/HB/HBZoneList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/HBZoneList.C -------------------------------------------------------------------------------- /src/cfdTools/HB/HBZoneList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/HBZoneList.H -------------------------------------------------------------------------------- /src/cfdTools/HB/HBZoneListTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/HBZoneListTemplates.C -------------------------------------------------------------------------------- /src/cfdTools/HB/HBZoneTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/HBZoneTemplates.C -------------------------------------------------------------------------------- /src/cfdTools/HB/IOHBZoneList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/IOHBZoneList.C -------------------------------------------------------------------------------- /src/cfdTools/HB/IOHBZoneList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/HB/IOHBZoneList.H -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/IOMRFCoupledZoneList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/IOMRFCoupledZoneList.C -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/IOMRFCoupledZoneList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/IOMRFCoupledZoneList.H -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/MRFCoupledZone.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/MRFCoupledZone.C -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/MRFCoupledZone.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/MRFCoupledZone.H -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/MRFCoupledZoneI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/MRFCoupledZoneI.H -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/MRFCoupledZoneList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/MRFCoupledZoneList.C -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/MRFCoupledZoneList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/MRFCoupledZoneList.H -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/MRFCoupledZoneListTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/MRFCoupledZoneListTemplates.C -------------------------------------------------------------------------------- /src/cfdTools/MRFCoupled/MRFCoupledZoneTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFCoupled/MRFCoupledZoneTemplates.C -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/IOMRFTranslatingZoneList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/IOMRFTranslatingZoneList.C -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/IOMRFTranslatingZoneList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/IOMRFTranslatingZoneList.H -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/MRFTranslatingZone.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/MRFTranslatingZone.C -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/MRFTranslatingZone.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/MRFTranslatingZone.H -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/MRFTranslatingZoneI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/MRFTranslatingZoneI.H -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/MRFTranslatingZoneList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/MRFTranslatingZoneList.C -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/MRFTranslatingZoneList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/MRFTranslatingZoneList.H -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/MRFTranslatingZoneListTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/MRFTranslatingZoneListTemplates.C -------------------------------------------------------------------------------- /src/cfdTools/MRFTranslating/MRFTranslatingZoneTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/MRFTranslating/MRFTranslatingZoneTemplates.C -------------------------------------------------------------------------------- /src/cfdTools/pseudotimeControl/pseudotimeControl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/pseudotimeControl/pseudotimeControl.C -------------------------------------------------------------------------------- /src/cfdTools/pseudotimeControl/pseudotimeControl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/pseudotimeControl/pseudotimeControl.H -------------------------------------------------------------------------------- /src/cfdTools/pseudotimeControl/pseudotimeControlI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/cfdTools/pseudotimeControl/pseudotimeControlI.H -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/ausmPlusUp/ausmPlusUpFluxScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/ausmPlusUp/ausmPlusUpFluxScheme.C -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/ausmPlusUp/ausmPlusUpFluxScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/ausmPlusUp/ausmPlusUpFluxScheme.H -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/convectiveFluxScheme/convectiveFluxScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/convectiveFluxScheme/convectiveFluxScheme.C -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/convectiveFluxScheme/convectiveFluxScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/convectiveFluxScheme/convectiveFluxScheme.H -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/convectiveFluxScheme/newConvectiveFluxScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/convectiveFluxScheme/newConvectiveFluxScheme.C -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/hllc/hllcFluxScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/hllc/hllcFluxScheme.C -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/hllc/hllcFluxScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/hllc/hllcFluxScheme.H -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/roe/roeFluxScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/roe/roeFluxScheme.C -------------------------------------------------------------------------------- /src/convectiveFluxSchemes/roe/roeFluxScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/convectiveFluxSchemes/roe/roeFluxScheme.H -------------------------------------------------------------------------------- /src/coupledMatrix/coupledMatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/coupledMatrix.C -------------------------------------------------------------------------------- /src/coupledMatrix/coupledMatrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/coupledMatrix.H -------------------------------------------------------------------------------- /src/coupledMatrix/coupledMatrixPreconditioner.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/coupledMatrixPreconditioner.C -------------------------------------------------------------------------------- /src/coupledMatrix/coupledMatrixSmoother.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/coupledMatrixSmoother.C -------------------------------------------------------------------------------- /src/coupledMatrix/coupledMatrixSolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/coupledMatrixSolver.C -------------------------------------------------------------------------------- /src/coupledMatrix/preconditioners/Jacobi/Jacobi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/preconditioners/Jacobi/Jacobi.C -------------------------------------------------------------------------------- /src/coupledMatrix/preconditioners/Jacobi/Jacobi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/preconditioners/Jacobi/Jacobi.H -------------------------------------------------------------------------------- /src/coupledMatrix/preconditioners/lusgs/lusgs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/preconditioners/lusgs/lusgs.C -------------------------------------------------------------------------------- /src/coupledMatrix/preconditioners/lusgs/lusgs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/preconditioners/lusgs/lusgs.H -------------------------------------------------------------------------------- /src/coupledMatrix/smoothers/Jacobi/JacobiSmoother.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/smoothers/Jacobi/JacobiSmoother.C -------------------------------------------------------------------------------- /src/coupledMatrix/smoothers/Jacobi/JacobiSmoother.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/smoothers/Jacobi/JacobiSmoother.H -------------------------------------------------------------------------------- /src/coupledMatrix/solvers/gmres/gmres.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/solvers/gmres/gmres.C -------------------------------------------------------------------------------- /src/coupledMatrix/solvers/gmres/gmres.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/solvers/gmres/gmres.H -------------------------------------------------------------------------------- /src/coupledMatrix/solvers/residualsIO/residualsIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/solvers/residualsIO/residualsIO.H -------------------------------------------------------------------------------- /src/coupledMatrix/solvers/smoothSolverCoupled/smoothSolverCoupled.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/solvers/smoothSolverCoupled/smoothSolverCoupled.C -------------------------------------------------------------------------------- /src/coupledMatrix/solvers/smoothSolverCoupled/smoothSolverCoupled.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/coupledMatrix/solvers/smoothSolverCoupled/smoothSolverCoupled.H -------------------------------------------------------------------------------- /src/dualTimeDdtScheme/dualTimeDdtScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/dualTimeDdtScheme/dualTimeDdtScheme.C -------------------------------------------------------------------------------- /src/dualTimeDdtScheme/dualTimeDdtScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/dualTimeDdtScheme/dualTimeDdtScheme.H -------------------------------------------------------------------------------- /src/dualTimeDdtScheme/dualTimeDdtSchemes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/dualTimeDdtScheme/dualTimeDdtSchemes.C -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchField.C -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchField.H -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchFields.C -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchFields.H -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/overlapAMI/overlapAMIFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchField.C -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchField.H -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchFields.C -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchFields.H -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagAMI/phaseLagAMIFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchField.C -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchField.H -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchFields.C -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchFields.H -------------------------------------------------------------------------------- /src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchField.C -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchField.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchFields.C -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchFields.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/overlapAMI/overlapAMIFvsPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchField.C -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchField.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchFields.C -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchFields.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagAMI/phaseLagAMIFvsPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchField.C -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchField.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchFields.C -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchFields.H -------------------------------------------------------------------------------- /src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/fvsPatchFields/constraint/phaseLagCyclic/phaseLagCyclicFvsPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fields/pointPatchFields/constraint/phaseLagCyclic/phaseLagCyclicPointPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/pointPatchFields/constraint/phaseLagCyclic/phaseLagCyclicPointPatchField.C -------------------------------------------------------------------------------- /src/fields/pointPatchFields/constraint/phaseLagCyclic/phaseLagCyclicPointPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/pointPatchFields/constraint/phaseLagCyclic/phaseLagCyclicPointPatchField.H -------------------------------------------------------------------------------- /src/fields/pointPatchFields/constraint/phaseLagCyclic/phaseLagCyclicPointPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/pointPatchFields/constraint/phaseLagCyclic/phaseLagCyclicPointPatchFields.C -------------------------------------------------------------------------------- /src/fields/pointPatchFields/constraint/phaseLagCyclic/phaseLagCyclicPointPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fields/pointPatchFields/constraint/phaseLagCyclic/phaseLagCyclicPointPatchFields.H -------------------------------------------------------------------------------- /src/fvMesh/fvPatches/constraint/overlapAMI/overlapAMIFvPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fvMesh/fvPatches/constraint/overlapAMI/overlapAMIFvPatch.C -------------------------------------------------------------------------------- /src/fvMesh/fvPatches/constraint/overlapAMI/overlapAMIFvPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fvMesh/fvPatches/constraint/overlapAMI/overlapAMIFvPatch.H -------------------------------------------------------------------------------- /src/fvMesh/fvPatches/constraint/phaseLagAMI/phaseLagAMIFvPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fvMesh/fvPatches/constraint/phaseLagAMI/phaseLagAMIFvPatch.C -------------------------------------------------------------------------------- /src/fvMesh/fvPatches/constraint/phaseLagAMI/phaseLagAMIFvPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fvMesh/fvPatches/constraint/phaseLagAMI/phaseLagAMIFvPatch.H -------------------------------------------------------------------------------- /src/fvMesh/fvPatches/constraint/phaseLagCyclic/phaseLagCyclicFvPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fvMesh/fvPatches/constraint/phaseLagCyclic/phaseLagCyclicFvPatch.C -------------------------------------------------------------------------------- /src/fvMesh/fvPatches/constraint/phaseLagCyclic/phaseLagCyclicFvPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/fvMesh/fvPatches/constraint/phaseLagCyclic/phaseLagCyclicFvPatch.H -------------------------------------------------------------------------------- /src/meshes/pointMesh/pointPatches/constraint/phaseLagCyclic/phaseLagCyclicPointPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/meshes/pointMesh/pointPatches/constraint/phaseLagCyclic/phaseLagCyclicPointPatch.C -------------------------------------------------------------------------------- /src/meshes/pointMesh/pointPatches/constraint/phaseLagCyclic/phaseLagCyclicPointPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/meshes/pointMesh/pointPatches/constraint/phaseLagCyclic/phaseLagCyclicPointPatch.H -------------------------------------------------------------------------------- /src/meshes/polyMesh/polyPatches/constraint/phaseLagCyclic/phaseLagCyclicPolyPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/meshes/polyMesh/polyPatches/constraint/phaseLagCyclic/phaseLagCyclicPolyPatch.C -------------------------------------------------------------------------------- /src/meshes/polyMesh/polyPatches/constraint/phaseLagCyclic/phaseLagCyclicPolyPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/meshes/polyMesh/polyPatches/constraint/phaseLagCyclic/phaseLagCyclicPolyPatch.H -------------------------------------------------------------------------------- /src/viscousFluxScheme/viscousFluxScheme.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/viscousFluxScheme/viscousFluxScheme.C -------------------------------------------------------------------------------- /src/viscousFluxScheme/viscousFluxScheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/src/viscousFluxScheme/viscousFluxScheme.H -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/0/T -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/0/U -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/0/p -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/Allrun -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/polyMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/polyMesh/cellZones -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/polyMesh/faceZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/polyMesh/faceZones -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/polyMesh/pointZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/polyMesh/pointZones -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/system/controlDict -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/OneraM6Wing/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/OneraM6Wing/system/fvSolution -------------------------------------------------------------------------------- /tutorials/VKI-LS89/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/0/T -------------------------------------------------------------------------------- /tutorials/VKI-LS89/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/0/U -------------------------------------------------------------------------------- /tutorials/VKI-LS89/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/0/alphat -------------------------------------------------------------------------------- /tutorials/VKI-LS89/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/0/k -------------------------------------------------------------------------------- /tutorials/VKI-LS89/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/0/nut -------------------------------------------------------------------------------- /tutorials/VKI-LS89/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/0/omega -------------------------------------------------------------------------------- /tutorials/VKI-LS89/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/0/p -------------------------------------------------------------------------------- /tutorials/VKI-LS89/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/Allrun -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/polyMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/polyMesh/cellZones -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/polyMesh/faceZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/polyMesh/faceZones -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/polyMesh/pointZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/polyMesh/pointZones -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/VKI-LS89/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/VKI-LS89/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/system/controlDict -------------------------------------------------------------------------------- /tutorials/VKI-LS89/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/VKI-LS89/system/foamDataToFluentDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/system/foamDataToFluentDict -------------------------------------------------------------------------------- /tutorials/VKI-LS89/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/VKI-LS89/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/VKI-LS89/system/fvSolution -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/0/T -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/0/U -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/0/p -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/Allclean -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/Allrun -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/system/controlDict -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/circularArcBump/supersonic/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/supersonic/system/fvSolution -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/0/T -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/0/U -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/0/p -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/Allclean -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/Allrun -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/system/controlDict -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/circularArcBump/transonic/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/circularArcBump/transonic/system/fvSolution -------------------------------------------------------------------------------- /tutorials/forwardStep/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/0/T -------------------------------------------------------------------------------- /tutorials/forwardStep/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/0/U -------------------------------------------------------------------------------- /tutorials/forwardStep/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/0/p -------------------------------------------------------------------------------- /tutorials/forwardStep/0/polyMesh/cellMap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/0/polyMesh/cellMap -------------------------------------------------------------------------------- /tutorials/forwardStep/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/Allrun -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/cellZones -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/faceZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/faceZones -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/pointZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/pointZones -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/sets/c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/sets/c0 -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/polyMesh/sets/refinedCells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/polyMesh/sets/refinedCells -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/forwardStep/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/forwardStep/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/system/controlDict -------------------------------------------------------------------------------- /tutorials/forwardStep/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/forwardStep/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/forwardStep/system/fvSolution -------------------------------------------------------------------------------- /tutorials/shockTube/0.og/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/0.og/T -------------------------------------------------------------------------------- /tutorials/shockTube/0.og/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/0.og/U -------------------------------------------------------------------------------- /tutorials/shockTube/0.og/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/0.og/p -------------------------------------------------------------------------------- /tutorials/shockTube/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/Allclean -------------------------------------------------------------------------------- /tutorials/shockTube/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/Allrun -------------------------------------------------------------------------------- /tutorials/shockTube/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/shockTube/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/shockTube/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/shockTube/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/system/controlDict -------------------------------------------------------------------------------- /tutorials/shockTube/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/shockTube/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/system/fvSolution -------------------------------------------------------------------------------- /tutorials/shockTube/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanoOliani/ICSFoam/HEAD/tutorials/shockTube/system/setFieldsDict --------------------------------------------------------------------------------