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

Forces for airfoil test case

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 29, 2012, 08:59
Default Forces for airfoil test case
  #1
New Member
 
Martin Vymazal
Join Date: Dec 2009
Posts: 16
Rep Power: 16
Martin_ is on a distinguished road
Hello,

I would like to use the 'libforces.so' with simpleFoam to compute forces and force coefficients on an airfoil. I have several issues to which I didn't find answers in the documentation, so I hoped someone could be so kind and help me out.

First, the airfoil consists of multiple parts, let's say surface1, surface2, surface3. Is there a way of listing on which surfaces the forces should be computed? I tried to set the following in the controlDict file:

Code:
forces
{
   type forceCoeffs;
   functionObjectLibs ( "libforces.so" );
   ...
   patches (surface1,surface3);
   ...
}
Unfortunately, OpenFOAM doesn't like this syntax. I tried to create a list of names:
Code:
airfoil_surfaces
(
  surface1;
  surface3;
);

forces
{
   type forceCoeffs;
   functionObjectLibs ( "libforces.so" );
   ...
   patches ($airfoil_surfaces);
   ...
}
Again, OpenFOAM is not happy with this. Is there a way of specifying the surfaces on which forces should be computed? Should I repeate the whole forces{ ... } block with different patch names?

Second, I would like to get both forces AND force coefficients. Therefore I wrote:
Code:
functions
{
    forces
    {
        type                forces;
        functionObjectLibs  ( "libforces.so" );
        ...
    }

    forces
    {
        type forceCoeffs;
        functionObjectLibs ( "libforces.so" );
        ...
    }
}
OpenFOAM outputs only one file with entries such as this:
Code:
# Time  forces(pressure, viscous) moment(pressure, viscous)
500 (((5.55683 -156.714 1.05751e-18) (-0.628621 0.13499 1.34059e-19)) ((43.0962 1.52813 -82.8966) (-0.0371222 -0.172871 0.000622457)))
I don't understand what am I looking at: why are there four triples of numbers for one time step? What do they mean?

Finally, I would really like to compute the aerodynamic center of the airfoil. Is this possible with OpenFOAM?

Thank you for every suggestion how to solve this.

Best regards,

Martin Vymazal
Martin_ is offline   Reply With Quote

Old   July 2, 2012, 11:58
Default
  #2
Member
 
Joe
Join Date: Dec 2011
Location: Groton, CT
Posts: 69
Rep Power: 14
jferrari is on a distinguished road
Quote:
Originally Posted by Martin_ View Post
Hello,

I would like to use the 'libforces.so' with simpleFoam to compute forces and force coefficients on an airfoil. I have several issues to which I didn't find answers in the documentation, so I hoped someone could be so kind and help me out.

First, the airfoil consists of multiple parts, let's say surface1, surface2, surface3. Is there a way of listing on which surfaces the forces should be computed? I tried to set the following in the controlDict file:

Code:
forces
{
   type forceCoeffs;
   functionObjectLibs ( "libforces.so" );
   ...
   patches (surface1,surface3);
   ...
}
Unfortunately, OpenFOAM doesn't like this syntax. I tried to create a list of names:
Code:
airfoil_surfaces
(
  surface1;
  surface3;
);
 
forces
{
   type forceCoeffs;
   functionObjectLibs ( "libforces.so" );
   ...
   patches ($airfoil_surfaces);
   ...
}
Again, OpenFOAM is not happy with this. Is there a way of specifying the surfaces on which forces should be computed? Should I repeate the whole forces{ ... } block with different patch names?

Second, I would like to get both forces AND force coefficients. Therefore I wrote:
Code:
functions
{
    forces
    {
        type                forces;
        functionObjectLibs  ( "libforces.so" );
        ...
    }
 
    forces
    {
        type forceCoeffs;
        functionObjectLibs ( "libforces.so" );
        ...
    }
}
OpenFOAM outputs only one file with entries such as this:
Code:
# Time  forces(pressure, viscous) moment(pressure, viscous)
500 (((5.55683 -156.714 1.05751e-18) (-0.628621 0.13499 1.34059e-19)) ((43.0962 1.52813 -82.8966) (-0.0371222 -0.172871 0.000622457)))
I don't understand what am I looking at: why are there four triples of numbers for one time step? What do they mean?

Finally, I would really like to compute the aerodynamic center of the airfoil. Is this possible with OpenFOAM?

Thank you for every suggestion how to solve this.

Best regards,

Martin Vymazal


Have you tried different combinations? Such as a line for each surface? Or calling the forces function for each surface? I haven't done this before, so I'm not speaking from experience, I'm just thinking out loud.

I believe that OpenFOAM spits out 4 sets of 3 values because it is the x, y, z pressure and viscous forces and moments.

When you call the forces libraray you specify an origin and axis about which you calculate moments. If you have the moments and the axis location, you can set up a statics problem to calculate where your aerodynamic center is.
jferrari 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
Interfoam Droplet under shear test case adona058 OpenFOAM Running, Solving & CFD 3 May 3, 2010 18:46
Forces in 1.5 with an Ahmed VWT case terrybarnaby OpenFOAM Running, Solving & CFD 3 June 9, 2009 08:21
3D TRANSITION TEST CASE venkatesh4386@gmail.com FLUENT 0 March 9, 2009 12:04
Porous Media test case Alex FLUENT 0 April 9, 2006 08:23
c1 body test case Eric Lenormand Main CFD Forum 0 March 2, 2000 06:54


All times are GMT -4. The time now is 12:55.