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

if-loop, volScalarField comparison

Register Blogs Community New Posts Updated Threads Search

Like Tree3Likes
  • 1 Post By volker
  • 1 Post By alberto
  • 1 Post By alberto

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 19, 2010, 11:29
Default if-loop, volScalarField comparison
  #1
New Member
 
Volker Tritschler
Join Date: Jan 2010
Posts: 20
Rep Power: 16
volker is on a distinguished road
Hi all,

I have a problem with a task, which seemed to be straight-forward to solve at first.
I need to program an if-loop in order to compare one volScalarField (P1) to another one (P2), and for each grid point, where P1 >= P2, a certain value (d) has to be written to another volScalarField (N) at exactly the same grid point.
I wrote something like:
(a, b, c, d are placeholder for arbitrary volScalarFields)
Code:
volScalarField P1 = a;
volScalarField P2 = b;
volScalarField N = c;

    if (P1 >= P2)
    {
    N = d;
    }
    else
    {
    N = -d;
    }
The problem is that the code in the actual version does not compare the values for every single grid point and hence does not write the value (d) to (N) for all the grid points where the logical expression is true (P1 >= P2).
It's more that it just compares just one (the first?!) point of P1 with P2.
Right now, I don't have any idea how to get rid of that problem, though it seems to be a very silly one.
Thanks for any idea.

greets, volker
neeraj likes this.
volker is offline   Reply With Quote

Old   April 22, 2010, 00:30
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
Hi,

you have to loop over your cells to compare information in each point:

Code:
forAll(P1, cellI)
{
  if (P1[cellI] > P2[cellI])
  {
    N[cellI] = ...
  }
  else
  {
    ...
  }
}
Best,
neeraj likes this.
__________________
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   April 22, 2010, 03:42
Default
  #3
New Member
 
Volker Tritschler
Join Date: Jan 2010
Posts: 20
Rep Power: 16
volker is on a distinguished road
hi alberto,

so many thanks for your help!!! It worked great.
I wasn't aware of that class 'cell'.

Do you know if there is a way to loop over the boundary patches as well?

best
volker
volker is offline   Reply With Quote

Old   April 22, 2010, 10:11
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
Quote:
Originally Posted by volker View Post
hi alberto,
so many thanks for your help!!! It worked great.
I wasn't aware of that class 'cell'.
It's not a class, it's just an index created locally by the forAll loop

Quote:
Do you know if there is a way to loop over the boundary patches as well?
Yes, let's assume you want to loop over the boundaries of a field p:

Code:
forAll(p.boundaryField(), patchi)
    {
        // Check if it's zeroGradient (optional, depending on your case)
        if (isA<zeroGradientFvPatchScalarField>(p.boundaryField()[patchi]))
        {
            otherFieldA.boundaryField()[patchi] = 0.0;
            otherFieldB.boundaryField()[patchi] = 0.0;
        }
    }
Best,
neeraj likes this.
__________________
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   April 23, 2010, 13:02
Default
  #5
New Member
 
Volker Tritschler
Join Date: Jan 2010
Posts: 20
Rep Power: 16
volker is on a distinguished road
perfect, big thanks to you!
volker is offline   Reply With Quote

Old   April 23, 2010, 14:18
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
You're welcome
__________________
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   February 27, 2020, 15:13
Default
  #7
New Member
 
tooran
Join Date: Nov 2016
Posts: 23
Rep Power: 9
tooran is on a distinguished road
I am tyring to change a viscoisty model. I need to campare strain rate with a constant parameter (gama)


if strainrate is greater than the gama then do....
so I write :



************************************************** *******************



Foam::viscosityModels::MyHerschelBulkley::calcNu() const
{
dimensionedScalar tone("tone", dimTime, 1.0);
dimensionedScalar rtone("rtone", dimless/dimTime, 1.0);

tmp<volScalarField> sr(strainRate());


forAll(calcNu.internalField(), cellI)
{
if (sr[cellI]< gama_.value())

{



......
It shows me the error:
error : calcNu’ does not have class type forAll(calcNu.internalField(), cellI)


could you please help me?


MyHerschelBulkley.C

MyHerschelBulkley.H
tooran is offline   Reply With Quote

Old   March 6, 2020, 20:03
Default
  #8
New Member
 
tooran
Join Date: Nov 2016
Posts: 23
Rep Power: 9
tooran is on a distinguished road
Can any one help me?
tooran 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
[Gmsh] Problem with Gmsh nishant_hull OpenFOAM Meshing & Mesh Conversion 23 August 5, 2015 02:09
ForAll loop and vector comparison juho OpenFOAM Running, Solving & CFD 4 June 17, 2011 09:51
[CAD formats] my stl surface is seen as just a line rcastilla OpenFOAM Meshing & Mesh Conversion 2 January 6, 2010 01:30
for loop inside a cell_loop? MHDWill FLUENT 0 September 26, 2007 21:24
NACA0012 geometry/design software needed Franny Main CFD Forum 13 July 7, 2007 15:57


All times are GMT -4. The time now is 10:58.