/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 1.5 | | \\ / A nd | Web: http://www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object changeDictionaryDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dictionaryReplacement { U { internalField uniform (0 0 0); boundaryField { minX { type fixedValue; value uniform (0 0 0); } maxX { type fixedValue; value uniform (0 0 0); } bottomAir_to_leftSolid { type fixedValue; value uniform (0 0 0); } bottomAir_to_heater { type fixedValue; value uniform (0 0 0); } bottomAir_to_rightSolid { type fixedValue; value uniform (0 0 0); } } } T { boundaryField { minX { type zeroGradient; } bottomAir_to_leftSolid { type solidWallTemperatureCoupled; neighbourRegionName leftSolid; neighbourPatchName leftSolid_to_bottomAir; neighbourFieldName T; K K; value uniform 300; } bottomAir_to_heater { type solidWallTemperatureCoupled; neighbourRegionName heater; neighbourPatchName heater_to_bottomAir; neighbourFieldName T; K K; value uniform 300; } bottomAir_to_rightSolid { type solidWallTemperatureCoupled; neighbourRegionName rightSolid; neighbourPatchName rightSolid_to_bottomAir; neighbourFieldName T; K K; value uniform 300; } } } epsilon { // Set the value on all bc to non-zero. Not used in simulation // since zeroGradient; only used in initialisation. internalField uniform 0.01; boundaryField { minX { type zeroGradient; value uniform 0.01; } maxX { type zeroGradient; value uniform 0.01; } minY { type zeroGradient; value uniform 0.01; } maxY { type zeroGradient; value uniform 0.01; } minZ { type zeroGradient; value uniform 0.01; } maxZ { type zeroGradient; value uniform 0.01; } bottomAir_to_leftSolid { type zeroGradient; value uniform 0.01; } bottomAir_to_heater { type zeroGradient; value uniform 0.01; } bottomAir_to_rightSolid { type zeroGradient; value uniform 0.01; } } } k { internalField uniform 0.1; boundaryField { minX { type zeroGradient; value uniform 0.1; } maxX { type zeroGradient; value uniform 0.1; } minY { type zeroGradient; value uniform 0.1; } maxY { type zeroGradient; value uniform 0.1; } minZ { type zeroGradient; value uniform 0.1; } maxZ { type zeroGradient; value uniform 0.1; } bottomAir_to_leftSolid { type zeroGradient; value uniform 0.1; } bottomAir_to_heater { type zeroGradient; value uniform 0.1; } bottomAir_to_rightSolid { type zeroGradient; value uniform 0.1; } } } pd { boundaryField { minX { type fixedFluxBuoyantPressure; value 0; } maxX { type fixedFluxBuoyantPressure; value 0; } minY { type fixedFluxBuoyantPressure; value 0; } minZ { type fixedFluxBuoyantPressure; value 0; } maxZ { type fixedFluxBuoyantPressure; value 0; } bottomAir_to_leftSolid { type fixedFluxBuoyantPressure; value 0; } bottomAir_to_heater { type fixedFluxBuoyantPressure; value 0; } bottomAir_to_rightSolid { type fixedFluxBuoyantPressure; value 0; } } } p { internalField uniform 1000000; boundaryField { minX { type calculated; value uniform 1000000; } maxX { type calculated; value uniform 1000000; } minY { type calculated; value uniform 1000000; } minZ { type calculated; value uniform 1000000; } maxZ { type calculated; value uniform 1000000; } bottomAir_to_leftSolid { type calculated; value uniform 1000000; } bottomAir_to_heater { type calculated; value uniform 1000000; } bottomAir_to_rightSolid { type calculated; value uniform 1000000; } } } } // ************************************************************************* //