CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM

Error with pimpleDyMFoam

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 11, 2012, 05:52
Default Error with pimpleDyMFoam
  #1
Senior Member
 
Samuele Z
Join Date: Oct 2009
Location: Mozzate - Co - Italy
Posts: 520
Rep Power: 18
samiam1000 is on a distinguished road
Dear All,

when I try to run the pimpleDyMFoam I get this error:

Code:
lab@lab-laptop:~/Documenti/cases_OF/OF_case20_mesh_generation/0Deg$ pimpleDyMFoam 
/*---------------------------------------------------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.0                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
Build  : 2.1.0-0bc225064152
Exec   : pimpleDyMFoam
Date   : Jun 11 2012
Time   : 11:49:48
Host   : "lab-laptop"
PID    : 4105
Case   : /home/lab/Documenti/cases_OF/OF_case20_mesh_generation/0Deg
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

Selecting dynamicFvMesh dynamicMotionSolverFvMesh
Selecting motion solver: displacementSBRStress
Selecting motion diffusion: exponential
Selecting motion diffusion: inverseFaceDistance
Reading field p

Reading field U



--> FOAM FATAL IO ERROR: 
"ill defined primitiveEntry starting at keyword 'boundaryField' on line 23 and ending at line 83"

file: /home/lab/Documenti/cases_OF/OF_case20_mesh_generation/0Deg/0/U at line 83.

    From function primitiveEntry::readEntry(const dictionary&, Istream&)
    in file lnInclude/IOerror.C at line 132.

FOAM exiting

lab@lab-laptop:~/Documenti/cases_OF/OF_case20_mesh_generation/0Deg$
The error is in the U file. Here it is:
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.0                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    location    "0";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (0 0 0);

boundaryField
{
    wall-volume_internal
    {
        type            fixedValue;i
	value		uniform (0 0 0);
    }
    symmetry_1-volume_external
    {
        type            symmetryPlane;
    }
    symmetry_1-volume_internal
    {
        type            symmetryPlane;
    }
    symmetry_2-volume_external
    {
        type            symmetryPlane;
    }
    symmetry_2-volume_internal
    {
        type            symmetryPlane;
    }
    wall_ext
    {
        type            fixedValue;
	value		uniform (0 0 0);
    }
    honeycomb
    {
        type            fixedValue;
	value		uniform (-1 0 0);
    }
    intake
    {
        type            zeroGradient;
    }
    bottom
    {
        type            fixedValue;
	value		uniform (0 0 0);
    }
    up
    {
        type            fixedValue;
	value		uniform (0 0 0);
    }
    wall_up_int
    {
        type            fixedValue;
	value		uniform (0 0 0);
    }
    door
    {
        type            fixedValue;
	value		uniform (0 0 0);
    }
}


// ************************************************************************* //
Any idea?

Thanks a lot,

Samuele
samiam1000 is offline   Reply With Quote

Old   June 11, 2012, 06:13
Default
  #2
Member
 
Eysteinn Helgason
Join Date: Sep 2009
Location: Gothenburg, Sweden
Posts: 53
Rep Power: 16
eysteinn is on a distinguished road
Quote:
Originally Posted by samiam1000 View Post
Dear All,

when I try to run the pimpleDyMFoam I get this error:

Code:
lab@lab-laptop:~/Documenti/cases_OF/OF_case20_mesh_generation/0Deg$ pimpleDyMFoam 
/*---------------------------------------------------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.0                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
Build  : 2.1.0-0bc225064152
Exec   : pimpleDyMFoam
Date   : Jun 11 2012
Time   : 11:49:48
Host   : "lab-laptop"
PID    : 4105
Case   : /home/lab/Documenti/cases_OF/OF_case20_mesh_generation/0Deg
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

Selecting dynamicFvMesh dynamicMotionSolverFvMesh
Selecting motion solver: displacementSBRStress
Selecting motion diffusion: exponential
Selecting motion diffusion: inverseFaceDistance
Reading field p

Reading field U



--> FOAM FATAL IO ERROR: 
"ill defined primitiveEntry starting at keyword 'boundaryField' on line 23 and ending at line 83"

file: /home/lab/Documenti/cases_OF/OF_case20_mesh_generation/0Deg/0/U at line 83.

    From function primitiveEntry::readEntry(const dictionary&, Istream&)
    in file lnInclude/IOerror.C at line 132.

FOAM exiting

lab@lab-laptop:~/Documenti/cases_OF/OF_case20_mesh_generation/0Deg$
The error is in the U file. Here it is:
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.0                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    location    "0";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (0 0 0);

boundaryField
{
    wall-volume_internal
    {
        type            fixedValue;i
    value        uniform (0 0 0);
    }
    symmetry_1-volume_external
    {
        type            symmetryPlane;
    }
    symmetry_1-volume_internal
    {
        type            symmetryPlane;
    }
    symmetry_2-volume_external
    {
        type            symmetryPlane;
    }
    symmetry_2-volume_internal
    {
        type            symmetryPlane;
    }
    wall_ext
    {
        type            fixedValue;
    value        uniform (0 0 0);
    }
    honeycomb
    {
        type            fixedValue;
    value        uniform (-1 0 0);
    }
    intake
    {
        type            zeroGradient;
    }
    bottom
    {
        type            fixedValue;
    value        uniform (0 0 0);
    }
    up
    {
        type            fixedValue;
    value        uniform (0 0 0);
    }
    wall_up_int
    {
        type            fixedValue;
    value        uniform (0 0 0);
    }
    door
    {
        type            fixedValue;
    value        uniform (0 0 0);
    }
}


// ************************************************************************* //
Any idea?

Thanks a lot,

Samuele
Hi Samuele.

Have you tried removing the trailing i in line 26?

/Eysteinn
eysteinn is offline   Reply With Quote

Old   June 11, 2012, 06:21
Default
  #3
Senior Member
 
Samuele Z
Join Date: Oct 2009
Location: Mozzate - Co - Italy
Posts: 520
Rep Power: 18
samiam1000 is on a distinguished road
Ooooops,

sorry!

Thanks a lot! That's ok, now!

Sam
samiam1000 is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Basic usage of pimpleDyMFoam jferrari OpenFOAM Pre-Processing 7 August 5, 2013 18:48
Help on segmentation fault with pimpleDyMFoam ebah6 OpenFOAM Running, Solving & CFD 2 July 5, 2013 07:27
Relative flux in pimpleDyMFoam Igor_2011 OpenFOAM 0 July 20, 2011 17:50
Running PimpleDyMFoam in parallel paul b OpenFOAM Running, Solving & CFD 8 April 20, 2011 05:21
pimpleDyMFoam stability problems cnsidero OpenFOAM Running, Solving & CFD 3 January 29, 2011 12:36


All times are GMT -4. The time now is 06:57.