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

beginner-hlp pls

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 29, 2009, 22:52
Default beginner-hlp pls
  #1
Member
 
sarangarajan
Join Date: Sep 2009
Posts: 31
Rep Power: 16
sarajags_89 is on a distinguished road
hi guys i want to set a pressuer of 2 units in movingwall1 and 1 in movingwall .. am getting an error in this could you guys help me with it?

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -2 0 0 0 0];

internalField uniform 0;

boundaryField
{
movingWall
{
type fixedValue;
value uniform (1 0 0);
}

movingWall1
{
type fixedValue;
value uniform (2 0 0);
}

fixedWalls
{
type zeroGradient;
}

frontAndBack
{
type empty;
}
}

// ************************************************** *********************** //
sarajags_89 is offline   Reply With Quote

Old   September 30, 2009, 00:40
Default
  #2
Senior Member
 
Alberto Passalacqua
Join Date: Mar 2009
Location: Ames, Iowa, United States
Posts: 1,912
Rep Power: 36
alberto will become famous soon enoughalberto will become famous soon enough
Quote:
Originally Posted by sarajags_89 View Post
hi guys i want to set a pressuer of 2 units in movingwall1 and 1 in movingwall .. am getting an error in this could you guys help me with it?

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -2 0 0 0 0];

internalField uniform 0;

boundaryField
{
movingWall
{
type fixedValue;
value uniform (1 0 0);
}

movingWall1
{
type fixedValue;
value uniform (2 0 0);
}

fixedWalls
{
type zeroGradient;
}

frontAndBack
{
type empty;
}
}

// ************************************************** *********************** //
A pressure is a scalar, not a vector, so don't use (1 0 0) but simply 1.

However, why do you specify the pressure at a wall, since if you use the no-slip condition, you already specify the velocity, and the pressure should be set to zeroGradient.

Best,
__________________
Alberto Passalacqua

GeekoCFD - A free distribution based on openSUSE 64 bit with CFD tools, including OpenFOAM. Available as in both physical and virtual formats (current status: http://albertopassalacqua.com/?p=1541)
OpenQBMM - An open-source implementation of quadrature-based moment methods.

To obtain more accurate answers, please specify the version of OpenFOAM you are using.
alberto is offline   Reply With Quote

Old   September 30, 2009, 13:27
Default @ alberto
  #3
Member
 
sarangarajan
Join Date: Sep 2009
Posts: 31
Rep Power: 16
sarajags_89 is on a distinguished road
Thanks for the reply. Actually I am modifying the cavity problem in the tutorial. I am keeping one face as inlet and the other as outlet. So I named one face of the face as movingwall and an opposite face as movingwall1. I then specified pressure difference as well as velocity difference is this right
sarajags_89 is offline   Reply With Quote

Old   September 30, 2009, 13:38
Default
  #4
Senior Member
 
Alberto Passalacqua
Join Date: Mar 2009
Location: Ames, Iowa, United States
Posts: 1,912
Rep Power: 36
alberto will become famous soon enoughalberto will become famous soon enough
You should specify velocity at the inlet, where p is set to zeroGradient, and pressure at the outlet, where velocity is set to zeroGradient. Keep in mind you consider incompressible flows.
__________________
Alberto Passalacqua

GeekoCFD - A free distribution based on openSUSE 64 bit with CFD tools, including OpenFOAM. Available as in both physical and virtual formats (current status: http://albertopassalacqua.com/?p=1541)
OpenQBMM - An open-source implementation of quadrature-based moment methods.

To obtain more accurate answers, please specify the version of OpenFOAM you are using.
alberto is offline   Reply With Quote

Old   September 30, 2009, 17:09
Default @alberto
  #5
Member
 
sarangarajan
Join Date: Sep 2009
Posts: 31
Rep Power: 16
sarajags_89 is on a distinguished road
hi.. I understood what you said.. my question is how do i differentiate vectors and scalars when I type them in the editor
hope this is clear

for pressure

movingWall
{
type fixed;
value 0;
}

is this correct?

Last edited by sarajags_89; September 30, 2009 at 18:50.
sarajags_89 is offline   Reply With Quote

Old   September 30, 2009, 19:55
Default
  #6
Senior Member
 
Alberto Passalacqua
Join Date: Mar 2009
Location: Ames, Iowa, United States
Posts: 1,912
Rep Power: 36
alberto will become famous soon enoughalberto will become famous soon enough
Quote:
Originally Posted by sarajags_89 View Post
hi.. I understood what you said.. my question is how do i differentiate vectors and scalars when I type them in the editor
hope this is clear

for pressure

movingWall
{
type fixed;
value 0;
}

is this correct?
No it is not correct.

movingWall
{
type fixedValue;
value uniform 0;
}

is the right syntax. This should be clear by all the examples you find in the tutorials.

Best,
__________________
Alberto Passalacqua

GeekoCFD - A free distribution based on openSUSE 64 bit with CFD tools, including OpenFOAM. Available as in both physical and virtual formats (current status: http://albertopassalacqua.com/?p=1541)
OpenQBMM - An open-source implementation of quadrature-based moment methods.

To obtain more accurate answers, please specify the version of OpenFOAM you are using.
alberto is offline   Reply With Quote

Old   September 30, 2009, 19:56
Default
  #7
Senior Member
 
Alberto Passalacqua
Join Date: Mar 2009
Location: Ames, Iowa, United States
Posts: 1,912
Rep Power: 36
alberto will become famous soon enoughalberto will become famous soon enough
Quote:
Originally Posted by annoyed View Post
>hi.. I understood what you said..

Please, don't lie at us.

>my question is how do i type vectors scalars

'v' 'e' 'c' 't' 'o' 'r' 's' 's' 'c' 'a' 'l' 'a' 'r' 's'

>what is uniform(0 0 0) mean?..

The mean of uniform(0 0 0) is (0 0 0).

You should check your '.' key. It is typing itself in places, where it makes as little sense as the rest of the questions.
Maybe next time you can save your time, and do not reply at all.
__________________
Alberto Passalacqua

GeekoCFD - A free distribution based on openSUSE 64 bit with CFD tools, including OpenFOAM. Available as in both physical and virtual formats (current status: http://albertopassalacqua.com/?p=1541)
OpenQBMM - An open-source implementation of quadrature-based moment methods.

To obtain more accurate answers, please specify the version of OpenFOAM you are using.
alberto 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
i need help following problem pls pls help gmani CFX 4 March 31, 2009 09:39
Turbulence model for subsea stability, Pls. Abiodun FLUENT 1 August 23, 2007 06:52
Pls. help with particle tracking Daddy CFX 4 August 16, 2007 04:34
multi phase flows....pls help... karthik FLUENT 0 November 16, 2005 09:15
help pls gianluca FLUENT 2 November 12, 2004 10:27


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