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

primitiveEntry Error

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By adhiraj

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 22, 2020, 09:48
Default primitiveEntry Error
  #1
New Member
 
Doğukan Karbal
Join Date: Aug 2020
Posts: 2
Rep Power: 0
ddo1337 is on a distinguished road
Hello foamers, i'm trying to solve a T junction problem (tutorial link), when i'm running paraView code tells me:
Code:
"ill defined primitiveEntry starting at keyword 'value' on line 47 and ending at line 55"

file: /home/dodo1337_emektarv2/OpenFOAM/dodo1337_emektarv2-8/run/T_junction/0/U at line 55.
I research the forum but can not find the solution, found some posts about typo problems but if i've typo problem, i can not detect. Thanks.

Here's my U code:
Code:
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform (0 0 0);

boundaryField
{

    inlet_one
    {

        type            fixedValue;
        value		 uniform (0.1 0 0)
    }

    inlet_two
    {

        type            fixedValue;
        value		 uniform (-0.2 0 0)

    }
    
    outlet
    {
    	type		zeroGradient;
    }
    
    walls
    {
    	type		fixedValue;
    	value		uniform (0 0 0)
    }

    
}

// ************************************************************************* //
ddo1337 is offline   Reply With Quote

Old   September 22, 2020, 11:37
Default
  #2
Senior Member
 
Adhiraj
Join Date: Sep 2010
Location: Karnataka, India
Posts: 187
Rep Power: 15
adhiraj is on a distinguished road
You missed some semicolons.

The entries should be like this:
Code:
inlet_one
{
    type            fixedValue;
    value	      uniform (0.1 0 0);
}
ddo1337 likes this.
adhiraj is offline   Reply With Quote

Old   September 22, 2020, 11:41
Default
  #3
New Member
 
Doğukan Karbal
Join Date: Aug 2020
Posts: 2
Rep Power: 0
ddo1337 is on a distinguished road
Quote:
Originally Posted by adhiraj View Post
You missed some semicolons.

The entries should be like this:
Code:
inlet_one
{
    type            fixedValue;
    value	      uniform (0.1 0 0);
}
How can i miss that.. Thank you so much!
ddo1337 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
[OpenFOAM.org] compile error in dynamicMesh and thermophysicalModels libraries NickG OpenFOAM Installation 3 December 30, 2019 00:21
[blockMesh] blockMesh with double grading. spwater OpenFOAM Meshing & Mesh Conversion 92 January 12, 2019 09:00
[swak4Foam] GroovyBC the dynamic cousin of funkySetFields that lives on the suburb of the mesh gschaider OpenFOAM Community Contributions 300 October 29, 2014 18:00
OpenFOAM without MPI kokizzu OpenFOAM Installation 4 May 26, 2014 09:17
DecomposePar links against liblamso0 with OpenMPI jens_klostermann OpenFOAM Bugs 11 June 28, 2007 17:51


All times are GMT -4. The time now is 20:29.