splitMeshRegions -cellZones -overwrite
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : splitMeshRegions -cellZones -overwrite
Date : Oct 08 2013
Time : 15:23:24
Host : "mukut-Endeavor-MR3300"
PID : 5370
Case : /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time
Create mesh for time = 0
Creating single patch per inter-region interface.
--> FOAM FATAL ERROR:
Cell 19864 with cell centre (0.00225 -2.3312467e-05 -0.009) is multiple zones. This is not allowed.
It is in zone innerelec and in zone bottomAir
From function getZoneID(..)
in file splitMeshRegions.C at line 1208.
FOAM exiting
Cell 19864 with cell centre (0.00225 -2.3312467e-05 -0.009) is multiple zones. This is not allowed.
It is in zone innerelec and in zone bottomAir
Dear Ohbuchi san,
Thanks for your valuable help. Yes I have defined each domain as you have said in toposetdic. I have attached following files:
outline of flow domain, blockmeshdict and toposetdic.
Please have a look.
blockMeshDict:/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
vertices
(
( 0 -0.02 -0.01)
( 0.03 -0.02 -0.01)
( 0.03 0.02 -0.01)
( 0 0.02 -0.01)
( 0 -0.02 0.01)
( 0.03 -0.02 0.01)
( 0.03 0.02 0.01)
( 0 0.02 0.01)
);
blocks
(
hex (0 1 2 3 4 5 6 7) (60 800 10) simpleGrading (1 0.5 1)
);
edges
(
);
boundary
(
maxY
{
type wall;
faces
(
(3 7 6 2)
);
}
minX
{
type patch;
faces
(
(0 4 7 3)
);
}
maxX
{
type patch;
faces
(
(2 6 5 1)
);
}
minY
{
type wall;
faces
(
(1 5 4 0)
);
}
minZ
{
type wall;
faces
(
(0 3 2 1)
);
}
maxZ
{
type wall;
faces
(
(4 5 6 7)
);
}
);
mergePatchPairs
(
);
// ************************************************************************* //
topoSetDict/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object topoSetDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
actions
(
// Heater as dielectric
{
name heater;
type cellSet;
action new;
source boxToCell;
sourceInfo
{
box (0 -0.00025 -0.01 )(0.002 0.00025 0.01);
}
}
{
name heater;
type cellSet;
action add;
source boxToCell;
sourceInfo
{
box (0.002 0.00005 -0.01)(0.007 0.00025 0.01);
}
}
{
name heater;
type cellSet;
action add;
source boxToCell;
sourceInfo
{
box (0.002 -0.00025 -0.01)(0.007 -0.00005 0.01);
}
}
{
name heater;
type cellSet;
action add;
source boxToCell;
sourceInfo
{
box (0.007 -0.00025 -0.01 )(0.03 0.00025 0.01);
}
}
{
name heater;
type cellZoneSet;
action new;
source setToCellZone;
sourceInfo
{
set heater; // name of cellSet
}
}
// leftSolid as top electrode
{
name leftSolid;
type cellSet;
action new;
source boxToCell;
sourceInfo
{
box (0 0.00025 -0.01 )(0.002 0.00035 0.01);
}
}
{
name leftSolid;
type cellZoneSet;
action new;
source setToCellZone;
sourceInfo
{
set leftSolid;
}
}
// rightSolid as bottom electrode
{
name rightSolid;
type cellSet;
action new;
source boxToCell;
sourceInfo
{
box (0 -0.00035 -0.01 )(0.002 -0.00025 0.01);
}
}
{
name rightSolid;
type cellZoneSet;
action new;
source setToCellZone;
sourceInfo
{
set rightSolid;
}
}
// covered electrode as innerElec
{
name innerelec;
type cellSet;
action new;
source boxToCell;
sourceInfo
{
box (0.002 -0.00005 -0.01 )(0.007 0.00005 0.01);
}
}
{
name innerelec;
type cellZoneSet;
action new;
source setToCellZone;
sourceInfo
{
set innerelec;
}
}
// topAir
{
name topAir;
type cellSet;
action new;
source boxToCell;
sourceInfo
{
box (0 0.00035 -0.01 )(0.002 0.02 0.01);
}
}
{
name topAir;
type cellSet;
action add;
source boxToCell;
sourceInfo
{
box (0.002 0.00025 -0.01)(0.03 0.02 0.01);
}
}
{
name topAir;
type cellZoneSet;
action new;
source setToCellZone;
sourceInfo
{
set topAir;
}
}
// bottomAir is all the other cells
{
name bottomAir;
type cellZoneSet;
action clear;
}
{
name bottomAir;
type cellSet;
action add;
source cellToCell;
sourceInfo
{
set heater;
}
}
{
name bottomAir;
type cellSet;
action add;
source cellToCell;
sourceInfo
{
set leftSolid;
}
}
{
name bottomAir;
type cellSet;
action add;
source cellToCell;
sourceInfo
{
set rightSolid;
}
}
{
name bottomAir;
type cellSet;
action add;
source cellToCell;
sourceInfo
{
set topAir;
}
}
{
name bottomAir;
type cellSet;
action invert;
}
{
name bottomAir;
type cellZoneSet;
action new;
source setToCellZone;
sourceInfo
{
set bottomAir;
}
}
);
// ************************************************************************* //
Thanking you.Mukut
decomposePar -allRegions
FOAM FATAL IO ERROR: cannot find file
file: /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/innerElec/decomposeParDict at line 0.
From function regIOobject::readStream() in file db/regIOobject/regIOobjectRead.C at line 73.
FOAM exiting
I checked the directory, there is no decomposeParDict in /innerelec/ but other region folders have this file.system/innerelec/
but same error....mukut@mukut-Endeavor-MR3300:~/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater$
mpirun -np 4 chtMultiRegionFoam -parallel
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : chtMultiRegionFoam -parallel
Date : Oct 12 2013
Time : 09:50:20
Host : "mukut-Endeavor-MR3300"
PID : 4482
Case : /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater
nProcs : 4
Slaves :
3
(
"mukut-Endeavor-MR3300.4483"
"mukut-Endeavor-MR3300.4484"
"mukut-Endeavor-MR3300.4485"
)
Pstream initialized with:
floatTransfer : 0
nProcsSimpleSum : 0
commsType : nonBlocking
polling iterations : 0
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time
Create fluid mesh for region bottomAir for time = 0
Create fluid mesh for region topAir for time = 0
Create solid mesh for region heater for time = 0
Create solid mesh for region leftSolid for time = 0
Create solid mesh for region rightSolid for time = 0
Create solid mesh for region innerelec for time = 0
*** Reading fluid mesh thermophysical properties for region bottomAir
Adding to thermoFluid
Selecting thermodynamics package
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}
Adding to rhoFluid
[2] #0
Adding to UFluid
Adding to phiFluid
Foam::error::printStack(Foam::Ostream&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[2] #1 Foam::sigFpe::sigHandler(int) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[2] #2 in "/lib/x86_64-linux-gnu/libc.so.6"
[2]
#3 Foam::heRhoThermo<Foam::rhoThermo,
Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie>
>, Foam::sensibleEnthalpy> > > >::calculate() in
"/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[2]
#4
Foam::rhoThermo::addfvMeshConstructorToTable<Foam::heRhoThermo<Foam::rhoThermo,
Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie>
>, Foam::sensibleEnthalpy> > > > >::New(Foam::fvMesh
const&, Foam::word const&) in
"/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[2]
#5 Foam::autoPtr<Foam::rhoThermo>
Foam::basicThermo::New<Foam::rhoThermo>(Foam::fvMesh const&,
Foam::word const&) in
"/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[2]
#6 Foam::rhoThermo::New(Foam::fvMesh const&, Foam::word
const&) in
"/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[2] #7
[2] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionFoam"
[2] #8 __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
[2] #9
[2] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionFoam"
[mukut-Endeavor-MR3300:04484] *** Process received signal ***
[mukut-Endeavor-MR3300:04484] Signal: Floating point exception (8)
[mukut-Endeavor-MR3300:04484] Signal code: (-6)
[mukut-Endeavor-MR3300:04484] Failing at address: 0x3e800001184
[mukut-Endeavor-MR3300:04484] [ 0] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f05aec694a0]
[mukut-Endeavor-MR3300:04484] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x35) [0x7f05aec69425]
[mukut-Endeavor-MR3300:04484] [ 2] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f05aec694a0]
[mukut-Endeavor-MR3300:04484]
[ 3]
/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11heRhoThermoINS_9rhoThermoENS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEE9calculateEv+0x6cd)
[0x7f05b3ccbdad]
[mukut-Endeavor-MR3300:04484] [ 4]
/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo27addfvMeshConstructorToTableINS_11heRhoThermoIS0_NS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEEEE3NewERKNS_6fvMeshERKNS_4wordE+0x5c)
[0x7f05b3ceba6c]
[mukut-Endeavor-MR3300:04484] [ 5]
/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11basicThermo3NewINS_9rhoThermoEEENS_7autoPtrIT_EERKNS_6fvMeshERKNS_4wordE+0x11b)
[0x7f05b3cabccb]
[mukut-Endeavor-MR3300:04484] [ 6]
/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo3NewERKNS_6fvMeshERKNS_4wordE+0x9)
[0x7f05b3caa1d9]
[mukut-Endeavor-MR3300:04484] [ 7] chtMultiRegionFoam() [0x423ff8]
[mukut-Endeavor-MR3300:04484] [ 8] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed) [0x7f05aec5476d]
[mukut-Endeavor-MR3300:04484] [ 9] chtMultiRegionFoam() [0x42c5ed]
[mukut-Endeavor-MR3300:04484] *** End of error message ***
--------------------------------------------------------------------------
mpirun noticed that process rank 2 with PID 4484 on node mukut-Endeavor-MR3300 exited on signal 8 (Floating point exception).
mixture
{
specie
{
nMoles 1;
molWeight 28.9;
}
thermodynamics
{
Cp 1000;
Hf 0;
}
transport
{
mu 1.8e-05;
Pr 0.7;
}
}
mixture
{
specie
{
nMoles 1;
molWeight 50000;
}
transport
{
kappa 0.52;
}
thermodynamics
{
Hf 0;
Cp 1150;
}
equationOfState
{
rho 1430;
}
}
mixture
{
specie
{
nMoles 1;
molWeight 63.5;
}
transport
{
kappa 401;
}
thermodynamics
{
Hf 0;
Cp 385;
}
equationOfState
{
rho 8940;
}
}
blockMesh topoSet splitMeshRegions -cellZones -overwrite decomposePar -allRegions mpirun -np 4 chtMultiRegionFoam -parallel
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : chtMultiRegionFoam -parallel
Date : Oct 16 2013
Time : 19:52:27
Host : "mukut-Endeavor-MR3300"
PID : 4998
Case : /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater
nProcs : 4
Slaves :
3
(
"mukut-Endeavor-MR3300.4999"
"mukut-Endeavor-MR3300.5000"
"mukut-Endeavor-MR3300.5001"
)
Pstream initialized with:
floatTransfer : 0
nProcsSimpleSum : 0
commsType : nonBlocking
polling iterations : 0
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time
Create fluid mesh for region bottomAir for time = 0
Create fluid mesh for region topAir for time = 0
Create solid mesh for region heater for time = 0
Create solid mesh for region leftSolid for time = 0
Create solid mesh for region rightSolid for time = 0
Create solid mesh for region innerelec for time = 0
*** Reading fluid mesh thermophysical properties for region bottomAir
Adding to thermoFluid
Selecting thermodynamics package
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}
Adding to rhoFluid
Adding to UFluid
Adding to phiFluid
Adding to gFluid
Adding turbulence
Selecting turbulence model type laminar
Adding to ghFluid
Adding to ghfFluid
Selecting radiationModel none
Adding to KFluid
Adding to dpdtFluid
Adding fvOptions
No finite volume options present
*** Reading fluid mesh thermophysical properties for region topAir
Adding to thermoFluid
Selecting thermodynamics package
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}
Adding to rhoFluid
Adding to UFluid
Adding to phiFluid
Adding to gFluid
Adding turbulence
Selecting turbulence model type laminar
Adding to ghFluid
Adding to ghfFluid
Selecting radiationModel none
Adding to KFluid
Adding to dpdtFluid
Adding fvOptions
No finite volume options present
*** Reading solid mesh thermophysical properties for region heater
Adding to thermos
Selecting thermodynamics package
{
type heSolidThermo;
mixture pureMixture;
transport constIso;
thermo hConst;
equationOfState rhoConst;
specie specie;
energy sensibleEnthalpy;
}
Adding to radiations
Selecting radiationModel opaqueSolid
Selecting absorptionEmissionModel constantAbsorptionEmission
Selecting scatterModel none
Adding fvOptions
No finite volume options present
*** Reading solid mesh thermophysical properties for region leftSolid
Adding to thermos
Selecting thermodynamics package
{
type heSolidThermo;
mixture pureMixture;
transport constIso;
thermo hConst;
equationOfState rhoConst;
specie specie;
energy sensibleEnthalpy;
}
Adding to radiations
Selecting radiationModel opaqueSolid
Selecting absorptionEmissionModel constantAbsorptionEmission
Selecting scatterModel none
Adding fvOptions
No finite volume options present
*** Reading solid mesh thermophysical properties for region rightSolid
Adding to thermos
Selecting thermodynamics package
{
type heSolidThermo;
mixture pureMixture;
transport constIso;
thermo hConst;
equationOfState rhoConst;
specie specie;
energy sensibleEnthalpy;
}
Adding to radiations
Selecting radiationModel opaqueSolid
Selecting absorptionEmissionModel constantAbsorptionEmission
Selecting scatterModel none
Adding fvOptions
No finite volume options present
*** Reading solid mesh thermophysical properties for region innerelec
Adding to thermos
Selecting thermodynamics package
{
type heSolidThermo;
mixture pureMixture;
transport constIso;
thermo hConst;
equationOfState rhoConst;
specie specie;
energy sensibleEnthalpy;
}
Adding to radiations
Selecting radiationModel opaqueSolid
Selecting absorptionEmissionModel constantAbsorptionEmission
Selecting scatterModel none
Adding fvOptions
No finite volume options present
Region: bottomAir Courant Number mean: 1.9666549 max: 2
Region: topAir Courant Number mean: 19.999126 max: 20
Region: heater Diffusion Number mean: 0.00022450312 max: 0.00061033463
Region: leftSolid Diffusion Number mean: 0.072606666 max: 0.22526732
Region: rightSolid Diffusion Number mean: 0.072929511 max: 0.2229344
Region: innerelec Diffusion Number mean: 0.064452378 max: 0.22409782
deltaT = 0.0014992504
Region: bottomAir Courant Number mean: 0.029485081 max: 0.029985007
Region: topAir Courant Number mean: 0.29983698 max: 0.29985007
Region: heater Diffusion Number mean: 3.3658639e-06 max: 9.1504442e-06
Region: leftSolid Diffusion Number mean: 0.0010885557 max: 0.0033773211
Region: rightSolid Diffusion Number mean: 0.001093396 max: 0.0033423448
Region: innerelec Diffusion Number mean: 0.00096630253 max: 0.0033597874
deltaT = 0.0014992504
Time = 0.00149925
Solving for fluid region bottomAir
diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
DILUPBiCG: Solving for Ux, Initial residual = 1, Final residual = 5.0773021e-08, No Iterations 13
DILUPBiCG: Solving for Uy, Initial residual = 1, Final residual = 2.5623023e-08, No Iterations 13
DILUPBiCG: Solving for Uz, Initial residual = 1, Final residual = 3.7869318e-08, No Iterations 15
DILUPBiCG: Solving for h, Initial residual = 0.99015414, Final residual = 9.7782468e-08, No Iterations 16
Min/max T:300 300
GAMG: Solving for p_rgh, Initial residual = 0.97866504, Final residual = 0.0085348502, No Iterations 18
diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
time step continuity errors (bottomAir): sum local = 2.8862353e-05, global = -8.9516267e-08, cumulative = -8.9516267e-08
GAMG: Solving for p_rgh, Initial residual = 0.75632361, Final residual = 1.4420983e-07, No Iterations 1000
diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
time step continuity errors (bottomAir): sum local = 7.7449257e-10, global = -1.0305277e-11, cumulative = -8.9526572e-08
Solving for fluid region topAir
diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
DILUPBiCG: Solving for Ux, Initial residual = 1, Final residual = 9.403127e-08, No Iterations 17
DILUPBiCG: Solving for Uy, Initial residual = 1, Final residual = 9.244781e-08, No Iterations 20
DILUPBiCG: Solving for Uz, Initial residual = 1, Final residual = 2.3625346e-08, No Iterations 9
DILUPBiCG: Solving for h, Initial residual = 0.99999737, Final residual = 9.2779932e-08, No Iterations 19
Min/max T:299.99998 300
GAMG: Solving for p_rgh, Initial residual = 0.94264535, Final residual = 0.0085984122, No Iterations 51
diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
time step continuity errors (topAir): sum local = 0.00012270725, global = 1.9333605e-05, cumulative = 1.9333605e-05
GAMG: Solving for p_rgh, Initial residual = 0.20630868, Final residual = 0.00027223865, No Iterations 100
diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
time step continuity errors (topAir): sum local = 1.3535916e-05, global = 3.4963065e-06, cumulative = 2.2829912e-05
Solving for solid region heater
DICPCG: Solving for h, Initial residual = 0.9685359, Final residual = 7.7400529e-08, No Iterations 2
DICPCG: Solving for h, Initial residual = 0.0040168109, Final residual = 1.9928523e-09, No Iterations 2
Min/max T:min(T) [0 0 0 1 0 0 0] 300 max(T) [0 0 0 1 0 0 0] 300
Solving for solid region leftSolid
DICPCG: Solving for h, Initial residual = 0.99064731, Final residual = 1.1408341e-07, No Iterations 10
DICPCG: Solving for h, Initial residual = 0.0066794438, Final residual = 5.5028158e-07, No Iterations 6
Min/max T:min(T) [0 0 0 1 0 0 0] 300 max(T) [0 0 0 1 0 0 0] 300
Solving for solid region rightSolid
DICPCG: Solving for h, Initial residual = 0.55693582, Final residual = 2.0094407e-07, No Iterations 9
DICPCG: Solving for h, Initial residual = 0.48904154, Final residual = 1.9376854e-07, No Iterations 9
Min/max T:min(T) [0 0 0 1 0 0 0] 300 max(T) [0 0 0 1 0 0 0] 300
Solving for solid region innerelec
[0] [3] [2] [1]
[3]
[3] --> FOAM FATAL IO ERROR:
[3] keyword PIMPLE is undefined in dictionary "/home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/processor3/system/innerelec/fvSolution"
[3]
[3] file: /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/processor3/system/innerelec/fvSolution
[3]
[3] From function dictionary::subDict(const word& keyword) const
[3] in file db/dictionary/dictionary.C at line 608.
[3]
FOAM parallel run exiting
[3]
[0]
[0] --> FOAM FATAL IO ERROR:
[0] keyword PIMPLE is undefined in dictionary "/home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/processor0/system/innerelec/fvSolution"
[0]
[0] file: /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/processor0/system/innerelec/fvSolution
[0]
[0] From function dictionary::subDict(const word& keyword) const
[0] in file db/dictionary/dictionary.C at line 608.
[0]
FOAM parallel run exiting
[0]
[2] [1]
[1] --> FOAM FATAL IO ERROR:
[1] keyword PIMPLE is undefined in dictionary "/home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/processor1/system/innerelec/fvSolution"
[1]
[1] file: /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/processor1/system/innerelec/fvSolution
[1]
[1] From function dictionary::subDict(const word& keyword) const
[1] in file db/dictionary/dictionary.C at line 608.
[1]
FOAM parallel run exiting
[1]
[2] --> FOAM FATAL IO ERROR:
[2] keyword PIMPLE is undefined in dictionary "/home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/processor2/system/innerelec/fvSolution"
[2]
[2] file: /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/processor2/system/innerelec/fvSolution
[2]
[2] From function dictionary::subDict(const word& keyword) const
[2] in file db/dictionary/dictionary.C at line 608.
[2]
FOAM parallel run exiting
[2]
--------------------------------------------------------------------------
MPI_ABORT was invoked on rank 0 in communicator MPI_COMM_WORLD
with errorcode 1.
NOTE: invoking MPI_ABORT causes Open MPI to kill all MPI processes.
You may or may not see output from other processes, depending on
exactly when Open MPI kills them.
--------------------------------------------------------------------------
--------------------------------------------------------------------------
mpirun has exited due to process rank 3 with PID 5001 on
node mukut-Endeavor-MR3300 exiting without calling "finalize". This may
have caused other processes in the application to be
terminated by signals sent by mpirun (as reported here).
--------------------------------------------------------------------------
[mukut-Endeavor-MR3300:04997] 3 more processes have sent help message help-mpi-api.txt / mpi-abort
[mukut-Endeavor-MR3300:04997] Set MCA parameter "orte_base_help_aggregate" to 0 to see all help / error messages
Dear Ohbuchi and Nakagawa san,

Best regards,
mukut
Congratulation!It's my pleasure to hear your success.Each region can be made as separate mesh.Please see the tutorial "chtMultiRegionSimpleFoam/heatExchanger".M.Ohbuchi
2013年10月18日金曜日 19時13分36秒 UTC+9 Mukut:
Dear Ohbuchi and Nakagawa san,
Finally the simulation has been finished and I found the time directory. So, tomorrow I will use chtMultiRegionSimpleFoam.
I need one suggestion, I want to define each region as a block in blockMeshDict file, also each regions will be defined by topoSet as usual...so that I can choose different mesh size for each region.... is the procedure ok? I mean I want to make this type of different mesh size, how can I do this?
Best regards,
mukut
On Friday, October 18, 2013 2:08:56 PM UTC+9, Mukut wrote:
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : chtMultiRegionSimpleFoam
Date : Oct 19 2013
Time : 10:52:49
Host : "mukut-Endeavor-MR3300"
PID : 4046
Case : /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time
Create fluid mesh for region bottomAir for time = 0
Create fluid mesh for region topAir for time = 0
Create solid mesh for region heater for time = 0
--> FOAM FATAL IO ERROR:
keyword startFace is undefined in dictionary ".minY"
file: .minY from line 111 to line 111.
From function dictionary::lookupEntry(const word&, bool, bool) const
in file db/dictionary/dictionary.C at line 402.
FOAM exiting
mukut@mukut-Endeavor-MR3300:~/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater$ mpirun -np 4 chtMultiRegionSimpleFoam -parallel
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : chtMultiRegionSimpleFoam -parallel
Date : Oct 19 2013
Time : 10:56:09
Host : "mukut-Endeavor-MR3300"
PID : 4086
Case : /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater
nProcs : 4
Slaves :
3
(
"mukut-Endeavor-MR3300.4087"
"mukut-Endeavor-MR3300.4088"
"mukut-Endeavor-MR3300.4089"
)
Pstream initialized with:
floatTransfer : 0
nProcsSimpleSum : 0
commsType : nonBlocking
polling iterations : 0
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time
Create fluid mesh for region bottomAir for time = 0
Create fluid mesh for region topAir for time = 0
Create solid mesh for region heater for time = 0
Create solid mesh for region leftSolid for time = 0
Create solid mesh for region rightSolid for time = 0
Create solid mesh for region innerElec for time = 0
*** Reading fluid mesh thermophysical properties for region bottomAir
Adding to thermoFluid
Selecting thermodynamics package
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}
[1] #0 [3] #0 [0] [2] #0 #0 Foam::error::printStack(Foam::Ostream&)Foam::error::printStack(Foam::Ostream&)Foam::error::printStack(Foam::Ostream&)Foam::error::printStack(Foam::Ostream&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[3] #1 Foam::sigFpe::sigHandler(int) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[0] #1 Foam::sigFpe::sigHandler(int) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[1] #1 in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[2] #1 Foam::sigFpe::sigHandler(int)Foam::sigFpe::sigHandler(int) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[3] #2 in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[0] #2 in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[2] #2 in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
[1] #2 in "/lib/x86_64-linux-gnu/libc.so.6"
[3] #3 Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > >::calculate() in "/lib/x86_64-linux-gnu/libc.so.6"
[2] #3 Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > >::calculate() in "/lib/x86_64-linux-gnu/libc.so.6"
[1] #3 Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > >::calculate() in "/lib/x86_64-linux-gnu/libc.so.6"
[0] #3 Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > >::calculate() in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[1] #4 Foam::rhoThermo::addfvMeshConstructorToTable<Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > > >::New(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[3] #4 Foam::rhoThermo::addfvMeshConstructorToTable<Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > > >::New(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[0] #4 Foam::rhoThermo::addfvMeshConstructorToTable<Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > > >::New(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[2] #4 Foam::rhoThermo::addfvMeshConstructorToTable<Foam::heRhoThermo<Foam::rhoThermo, Foam::pureMixture<Foam::constTransport<Foam::species::thermo<Foam::hConstThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > > >::New(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[3] #5 Foam::autoPtr<Foam::rhoThermo> Foam::basicThermo::New<Foam::rhoThermo>(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[1] #5 Foam::autoPtr<Foam::rhoThermo> Foam::basicThermo::New<Foam::rhoThermo>(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[0] #5 Foam::autoPtr<Foam::rhoThermo> Foam::basicThermo::New<Foam::rhoThermo>(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[2] #5 Foam::autoPtr<Foam::rhoThermo> Foam::basicThermo::New<Foam::rhoThermo>(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[3] #6 Foam::rhoThermo::New(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[1] #6 Foam::rhoThermo::New(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[0] #6 Foam::rhoThermo::New(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[2] #6 Foam::rhoThermo::New(Foam::fvMesh const&, Foam::word const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[3] #7 in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[1] #7 in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[2] #7 in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
[0] #7
[2] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
[2] #8 __libc_start_main[3] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
[3] #8 __libc_start_main[0] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
[0] #8 __libc_start_main[1] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
[1] #8 __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
[0] #9 in "/lib/x86_64-linux-gnu/libc.so.6"
[3] #9 in "/lib/x86_64-linux-gnu/libc.so.6"
[2] #9 in "/lib/x86_64-linux-gnu/libc.so.6"
[1] #9
[2] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
[mukut-Endeavor-MR3300:04088] *** Process received signal ***
[mukut-Endeavor-MR3300:04088] Signal: Floating point exception (8)
[mukut-Endeavor-MR3300:04088] Signal code: (-6)
[mukut-Endeavor-MR3300:04088] Failing at address: 0x3e800000ff8
[mukut-Endeavor-MR3300:04088] [ 0] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f82fe46e4a0]
[mukut-Endeavor-MR3300:04088] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x35) [0x7f82fe46e425]
[mukut-Endeavor-MR3300:04088] [ 2] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f82fe46e4a0]
[mukut-Endeavor-MR3300:04088] [ 3] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11heRhoThermoINS_9rhoThermoENS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEE9calculateEv+0x6cd) [0x7f8301bd3dad]
[mukut-Endeavor-MR3300:04088] [ 4] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo27addfvMeshConstructorToTableINS_11heRhoThermoIS0_NS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEEEE3NewERKNS_6fvMeshERKNS_4wordE+0x5c) [0x7f8301bf3a6c]
[mukut-Endeavor-MR3300:04088] [ 5] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11basicThermo3NewINS_9rhoThermoEEENS_7autoPtrIT_EERKNS_6fvMeshERKNS_4wordE+0x11b) [0x7f8301bb3ccb]
[mukut-Endeavor-MR3300:04088] [ 6] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo3NewERKNS_6fvMeshERKNS_4wordE+0x9) [0x7f8301bb21d9]
[mukut-Endeavor-MR3300:04088] [ 7] chtMultiRegionSimpleFoam() [0x421c20]
[mukut-Endeavor-MR3300:04088] [ 8] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed) [0x7f82fe45976d]
[mukut-Endeavor-MR3300:04088] [ 9] chtMultiRegionSimpleFoam() [0x4290ed]
[mukut-Endeavor-MR3300:04088] *** End of error message ***
[0] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
[mukut-Endeavor-MR3300:04086] *** Process received signal ***
[mukut-Endeavor-MR3300:04086] Signal: Floating point exception (8)
[mukut-Endeavor-MR3300:04086] Signal code: (-6)
[mukut-Endeavor-MR3300:04086] Failing at address: 0x3e800000ff6
[mukut-Endeavor-MR3300:04086] [ 0] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f7d6da274a0]
[mukut-Endeavor-MR3300:04086] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x35) [0x7f7d6da27425]
[mukut-Endeavor-MR3300:04086] [ 2] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f7d6da274a0]
[mukut-Endeavor-MR3300:04086] [ 3] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11heRhoThermoINS_9rhoThermoENS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEE9calculateEv+0x6cd) [0x7f7d7118cdad]
[mukut-Endeavor-MR3300:04086] [ 4] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo27addfvMeshConstructorToTableINS_11heRhoThermoIS0_NS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEEEE3NewERKNS_6fvMeshERKNS_4wordE+0x5c) [0x7f7d711aca6c]
[mukut-Endeavor-MR3300:04086] [ 5] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11basicThermo3NewINS_9rhoThermoEEENS_7autoPtrIT_EERKNS_6fvMeshERKNS_4wordE+0x11b) [0x7f7d7116cccb]
[mukut-Endeavor-MR3300:04086] [ 6] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo3NewERKNS_6fvMeshERKNS_4wordE+0x9) [0x7f7d7116b1d9]
[mukut-Endeavor-MR3300:04086] [ 7] chtMultiRegionSimpleFoam() [0x421c20]
[mukut-Endeavor-MR3300:04086] [ 8] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed) [0x7f7d6da1276d]
[mukut-Endeavor-MR3300:04086] [ 9] chtMultiRegionSimpleFoam() [0x4290ed]
[mukut-Endeavor-MR3300:04086] *** End of error message ***
[3] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
[mukut-Endeavor-MR3300:04089] *** Process received signal ***
[mukut-Endeavor-MR3300:04089] Signal: Floating point exception (8)
[mukut-Endeavor-MR3300:04089] Signal code: (-6)
[mukut-Endeavor-MR3300:04089] Failing at address: 0x3e800000ff9
[mukut-Endeavor-MR3300:04089] [ 0] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f86973604a0]
[mukut-Endeavor-MR3300:04089] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x35) [0x7f8697360425]
[mukut-Endeavor-MR3300:04089] [ 2] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f86973604a0]
[mukut-Endeavor-MR3300:04089] [ 3] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11heRhoThermoINS_9rhoThermoENS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEE9calculateEv+0x6cd) [0x7f869aac5dad]
[mukut-Endeavor-MR3300:04089] [ 4] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo27addfvMeshConstructorToTableINS_11heRhoThermoIS0_NS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEEEE3NewERKNS_6fvMeshERKNS_4wordE+0x5c) [0x7f869aae5a6c]
[mukut-Endeavor-MR3300:04089] [ 5] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11basicThermo3NewINS_9rhoThermoEEENS_7autoPtrIT_EERKNS_6fvMeshERKNS_4wordE+0x11b) [0x7f869aaa5ccb]
[mukut-Endeavor-MR3300:04089] [ 6] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo3NewERKNS_6fvMeshERKNS_4wordE+0x9) [0x7f869aaa41d9]
[mukut-Endeavor-MR3300:04089] [ 7] chtMultiRegionSimpleFoam() [0x421c20]
[mukut-Endeavor-MR3300:04089] [ 8] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed) [0x7f869734b76d]
[mukut-Endeavor-MR3300:04089] [ 9] chtMultiRegionSimpleFoam() [0x4290ed]
[mukut-Endeavor-MR3300:04089] *** End of error message ***
[1] in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
[mukut-Endeavor-MR3300:04087] *** Process received signal ***
[mukut-Endeavor-MR3300:04087] Signal: Floating point exception (8)
[mukut-Endeavor-MR3300:04087] Signal code: (-6)
[mukut-Endeavor-MR3300:04087] Failing at address: 0x3e800000ff7
[mukut-Endeavor-MR3300:04087] [ 0] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f08ff40a4a0]
[mukut-Endeavor-MR3300:04087] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x35) [0x7f08ff40a425]
[mukut-Endeavor-MR3300:04087] [ 2] /lib/x86_64-linux-gnu/libc.so.6(+0x364a0) [0x7f08ff40a4a0]
[mukut-Endeavor-MR3300:04087] [ 3] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11heRhoThermoINS_9rhoThermoENS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEE9calculateEv+0x6cd) [0x7f0902b6fdad]
[mukut-Endeavor-MR3300:04087] [ 4] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo27addfvMeshConstructorToTableINS_11heRhoThermoIS0_NS_11pureMixtureINS_14constTransportINS_7species6thermoINS_12hConstThermoINS_10perfectGasINS_6specieEEEEENS_16sensibleEnthalpyEEEEEEEEEE3NewERKNS_6fvMeshERKNS_4wordE+0x5c) [0x7f0902b8fa6c]
[mukut-Endeavor-MR3300:04087] [ 5] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam11basicThermo3NewINS_9rhoThermoEEENS_7autoPtrIT_EERKNS_6fvMeshERKNS_4wordE+0x11b) [0x7f0902b4fccb]
[mukut-Endeavor-MR3300:04087] [ 6] /opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so(_ZN4Foam9rhoThermo3NewERKNS_6fvMeshERKNS_4wordE+0x9) [0x7f0902b4e1d9]
[mukut-Endeavor-MR3300:04087] [ 7] chtMultiRegionSimpleFoam() [0x421c20]
[mukut-Endeavor-MR3300:04087] [ 8] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed) [0x7f08ff3f576d]
[mukut-Endeavor-MR3300:04087] [ 9] chtMultiRegionSimpleFoam() [0x4290ed]
[mukut-Endeavor-MR3300:04087] *** End of error message ***
--------------------------------------------------------------------------
mpirun noticed that process rank 0 with PID 4086 on node mukut-Endeavor-MR3300 exited on signal 8 (Floating point exception).
--------------------------------------------------------------------------
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
class polyBoundaryMesh;
location "constant/polyMesh";
object boundary;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
9
(
minX
{
type patch;
nFaces 100;
startFace 16000;
}
maxX
{
type patch;
nFaces 100;
startFace 16100;
}
minZ
{
type patch;
nFaces 580;
startFace 16200;
}
maxZ
{
type patch;
nFaces 580;
startFace 16780;
}
heater_to_leftSolid
{
type mappedWall;
nFaces 40;
startFace 17360;
sampleMode nearestPatchFace;
sampleRegion leftSolid;
samplePatch leftSolid_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
heater_to_innerelec
{
type mappedWall;
nFaces 240;
startFace 17400;
sampleMode nearestPatchFace;
sampleRegion innerelec;
samplePatch innerelec_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
heater_to_rightSolid
{
type mappedWall;
nFaces 40;
startFace 17640;
sampleMode nearestPatchFace;
sampleRegion rightSolid;
samplePatch rightSolid_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
heater_to_topAir
{
type mappedWall;
nFaces 560;
startFace 17680;
sampleMode nearestPatchFace;
sampleRegion topAir;
samplePatch topAir_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
heater_to_bottomAir
{
type mappedWall;
nFaces 560;
startFace 18240;
sampleMode nearestPatchFace;
sampleRegion bottomAir;
samplePatch bottomAir_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
)
// ************************************************************************* //
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class polyBoundaryMesh;
location "constant/polyMesh";
object boundary;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
10
(
minX
{
type patch;
nFaces 100;
startFace 16000;
}
maxX
{
type patch;
nFaces 100;
startFace 16100;
}
minZ
{
type patch;
nFaces 580;
startFace 16200;
}
maxZ
{
type patch;
nFaces 580;
startFace 16780;
}
heater_to_leftSolid
{
type mappedWall;
nFaces 40;
startFace 17360;
sampleMode nearestPatchFace;
sampleRegion leftSolid;
samplePatch leftSolid_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
heater_to_innerElec
{
type mappedWall;
nFaces 240;
startFace 17400;
sampleMode nearestPatchFace;
sampleRegion innerElec;
samplePatch innerElec_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
heater_to_rightSolid
{
type mappedWall;
nFaces 40;
startFace 17640;
sampleMode nearestPatchFace;
sampleRegion rightSolid;
samplePatch rightSolid_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
heater_to_topAir
{
type mappedWall;
nFaces 560;
startFace 17680;
sampleMode nearestPatchFace;
sampleRegion topAir;
samplePatch topAir_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
heater_to_bottomAir
{
type mappedWall;
nFaces 560;
startFace 18240;
sampleMode nearestPatchFace;
sampleRegion bottomAir;
samplePatch bottomAir_to_heater;
offsetMode uniform;
offset ( 0 0 0 );
}
minY
{
type patch;
}
)
// ************************************************************************* //
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object changeDictionaryDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dictionaryReplacement
{
boundary
{
minY
{
type patch;
}
minZ
{
type patch;
}
maxZ
{
type patch;
}
}
T
{
internalField uniform 300;
boundaryField
{
".*"
{
type zeroGradient;
value uniform 300;
}
"heater_to_.*"
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
neighbourFieldName T;
kappa solidThermo;
kappaName none;
value uniform 300;
}
minY
{
type fixedValue;
value uniform 500;
}
}
}
}
// ************************************************************************* //
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : chtMultiRegionSimpleFoam
Date : Oct 19 2013
Time : 17:28:47
Host : "mukut-Endeavor-MR3300"
PID : 10837
Case : /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time
Create fluid mesh for region bottomAir for time = 0
Create fluid mesh for region topAir for time = 0
Create solid mesh for region heater for time = 0
Create solid mesh for region leftSolid for time = 0
Create solid mesh for region rightSolid for time = 0
Create solid mesh for region innerelec for time = 0
*** Reading fluid mesh thermophysical properties for region bottomAir
Adding to thermoFluid
Selecting thermodynamics package
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}
Adding to rhoFluid
Adding to UFluid
Adding to phiFluid
Adding to gFluid
Adding to turbulence
Selecting turbulence model type laminar
Adding to ghFluid
Adding to ghfFluid
Selecting radiationModel none
Adding fvOptions
No finite volume options present
*** Reading fluid mesh thermophysical properties for region topAir
Adding to thermoFluid
Selecting thermodynamics package
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}
Adding to rhoFluid
Adding to UFluid
Adding to phiFluid
Adding to gFluid
Adding to turbulence
Selecting turbulence model type laminar
Adding to ghFluid
Adding to ghfFluid
Selecting radiationModel none
faceSource topAir_minX:
total faces = 4610
total area = 0.0003926898
faceSource topAir_maxX:
total faces = 4630
total area = 0.0003947585
Time = 1
Solving for fluid region bottomAir
DILUPBiCG: Solving for Ux, Initial residual = 1, Final residual = 0.0003437786, No Iterations 1
DILUPBiCG: Solving for Uy, Initial residual = 1, Final residual = 0.0001685591, No Iterations 1
DILUPBiCG: Solving for Uz, Initial residual = 0.6769308, Final residual = 0.0003296941, No Iterations 1
DILUPBiCG: Solving for h, Initial residual = 0.7032969, Final residual = 0.009508086, No Iterations 1
Min/max T:300 300
GAMG: Solving for p_rgh, Initial residual = 0.9845118, Final residual = 0.009485646, No Iterations 21
time step continuity errors : sum local = 0.008117152, global = -5.408644e-17, cumulative = -5.408644e-17
Min/max rho:1.158623 1.158623
Solving for fluid region topAir
DILUPBiCG: Solving for Ux, Initial residual = 1, Final residual = 0.0003068075, No Iterations 1
DILUPBiCG: Solving for Uy, Initial residual = 1, Final residual = 0.0002554454, No Iterations 1
DILUPBiCG: Solving for Uz, Initial residual = 0.8006577, Final residual = 0.0004901631, No Iterations 1
DILUPBiCG: Solving for h, Initial residual = 0.9994282, Final residual = 0.003423423, No Iterations 1
Min/max T:300 300
GAMG: Solving for p_rgh, Initial residual = 0.6488513, Final residual = 0.00631892, No Iterations 46
time step continuity errors : sum local = 0.003455513, global = 0.000696638, cumulative = 0.000696638
Min/max rho:1.158623 1.158623
Solving for solid region heater
--> FOAM FATAL ERROR:
Attempt to cast type zeroGradient to type compressible::turbulentTemperatureCoupledBaffleMixed
From function refCast<To>(From&)
in file /home/opencfd/OpenFOAM/OpenFOAM-2.2.1/src/OpenFOAM/lnInclude/typeInfo.H at line 114.
FOAM aborting
#0 Foam::error::printStack(Foam::Ostream&) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
#1 Foam::error::abort() in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
#2 Foam::compressible::turbulentTemperatureCoupledBaffleMixedFvPatchScalarField::updateCoeffs() in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libcompressibleTurbulenceModel.so"
#3 Foam::mixedFvPatchField<double>::evaluate(Foam::UPstream::commsTypes) in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfiniteVolume.so"
#4 Foam::mixedEnergyFvPatchScalarField::updateCoeffs() in "/opt/openfoam221/platforms/linux64GccDPOpt/lib/libfluidThermophysicalModels.so"
#5 Foam::fvMatrix<double>::fvMatrix(Foam::GeometricField<double, Foam::fvPatchField, Foam::volMesh> const&, Foam::dimensionSet const&) in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
#6
in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
#7
in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
#8 __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
#9
in "/opt/openfoam221/platforms/linux64GccDPOpt/bin/chtMultiRegionSimpleFoam"
Aborted (core dumped)
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : chtMultiRegionSimpleFoam
Date : Oct 19 2013
Time : 17:28:47
Host : "mukut-Endeavor-MR3300"
PID : 10837
Case : /home/mukut/OpenFOAM/mukut-2.2.1/run/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time
Create fluid mesh for region bottomAir for time = 0
Create fluid mesh for region topAir for time = 0
Create solid mesh for region heater for time = 0
Create solid mesh for region leftSolid for time = 0
Create solid mesh for region rightSolid for time = 0
Create solid mesh for region innerelec for time = 0
*** Reading fluid mesh thermophysical properties for region bottomAir
Adding to thermoFluid
Selecting thermodynamics package
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}
Adding to rhoFluidAdding to turbulence
Adding to UFluid
Adding to phiFluid
Adding to gFluid
Selecting turbulence model type laminar
Adding to ghFluid
Adding to ghfFluid
Selecting radiationModel noneAdding fvOptions
No finite volume options present
*** Reading fluid mesh thermophysical properties for region topAir
Adding to thermoFluid
Selecting thermodynamics package
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}
Adding to rhoFluidAdding to turbulence
Adding to UFluid
Adding to phiFluid
Adding to gFluid
Selecting turbulence model type laminar
Adding to ghFluid
Adding to ghfFluid
Selecting radiationModel none
- show quoted text -
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
runApplication blockMesh
runApplication topoSet
runApplication splitMeshRegions -cellZones -overwrite
# remove fluid fields from solid regions (important for post-processing)
for i in heater leftSolid rightSolid innerelec
do
rm -f 0*/$i/{mut,alphat,epsilon,k,U,p_rgh}
done
for i in bottomAir topAir heater leftSolid rightSolid innerelec
do
changeDictionary -region $i > log.changeDictionary.$i 2>&1
done
#-- Run on single processor
runApplication `getApplication`
## Decompose
#runApplication decomposePar -allRegions
#
## Run
#runParallel `getApplication` 4
#
## Reconstruct
#runApplication reconstructPar -allRegions
echo
echo "creating files for paraview post-processing"
echo
paraFoam -touchAll
# ----------------------------------------------------------------- end-of-file
Solving for solid region heater
--> FOAM FATAL ERROR:
Attempt to cast type zeroGradient to type compressible::turbulentTemperatureCoupledBaffleMixed
--> FOAM FATAL IO ERROR:keyword startFace is undefined in dictionary ".minY"
file: .minY from line 111 to line 111.
From function dictionary::lookupEntry(const word&, bool, bool) const
in file db/dictionary/dictionary.C at line 402.
FOAM exiting
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object changeDictionaryDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dictionaryReplacement
{
boundary
{
minY
{
type patch;
}
minZ
{
type patch;
}
maxZ
{
type patch;
}
}
T
{
internalField uniform 300;
boundaryField
{
".*"
{
type zeroGradient;
value uniform 300;
}
"heater_to_.*"
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
neighbourFieldName T;
kappa solidThermo;
kappaName none;
value uniform 300;
}
minY
{
type fixedValue;
value uniform 500;
}
}
}
}
// ************************************************************************* //
turbulentTemperatureCoupledBaffleMixed;
neighbourFieldName T;
kappa solidThermo;
kappaName none;
value uniform 300;
}
}
}
}
// ************************************************************************* //