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

Propeller dynamics/body force model

Register Blogs Community New Posts Updated Threads Search

Like Tree10Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 30, 2010, 12:27
Default
  #21
Senior Member
 
Andrea Pasquali
Join Date: Sep 2009
Location: Germany
Posts: 142
Rep Power: 16
andrea.pasquali is on a distinguished road
Hello everybody,
i'm interesting to body force analysis.
What is the dimension "magnitude" in the code?
Is it possible add the rotational term to the thrust? Maybe could be correct using MRF + body force to the same volume of cells?

Thanks for any reply

Andrea
__________________
Andrea Pasquali
andrea.pasquali is offline   Reply With Quote

Old   June 1, 2010, 08:11
Default
  #22
Member
 
Stefan
Join Date: Jan 2010
Location: Kiel, Germany
Posts: 81
Rep Power: 16
SD@TUB is on a distinguished road
Hello Andrea,

the dimension of magnitude is L^4/T^2 (force per density) as you can guess from:
Code:
IOobject
(
"bodyForce",
...
dimensionedVector("zero",
dimForce/dimVolume/dimDensity,
vector::zero)
);
I added tangential forces on every involved cell to approximate the rotational effect of the propeller. What you intend with adding a 'rotational term to the thrust'?

~Stefan
SD@TUB is offline   Reply With Quote

Old   June 1, 2010, 08:28
Default
  #23
Senior Member
 
Andrea Pasquali
Join Date: Sep 2009
Location: Germany
Posts: 142
Rep Power: 16
andrea.pasquali is on a distinguished road
Hi Stefan,
thank you for you reply!
This is what I mean!
In the code posted dy Eric there is just thrust, is it?
I changed t to put a propeller in whatever direction I want, can you help me to add also tangential force to the involved cells?

Thanks

Andrea
__________________
Andrea Pasquali
andrea.pasquali is offline   Reply With Quote

Old   June 4, 2010, 09:04
Default
  #24
Member
 
Stefan
Join Date: Jan 2010
Location: Kiel, Germany
Posts: 81
Rep Power: 16
SD@TUB is on a distinguished road
Hello Andrea,

maybe i could...

The code above is an example by Eric to implement a uniform force distribution in direction of a selectable directionVector. For testing you could also calculate a uniform tangential force across the propeller radius with a given magnitude and an tangential vector which point for every cell in tangential direction of the local position vector (from propeller centre to each cell centre). It is a little bit tricky, but with some careful considerations you will calculate the appropriate direction with basic trigonemtrical functions.
The local position vector to cellI ist described by r and phi according to the local point of origin (propeller centre). In case of a directionVector = (1 0 0), the tangential vector, say tan' schould be something like this:
tan'(x_i,z_i)=(cos[phi],sin[phi])^T with phi=arctan(y_i/z_i)

It is a good help to plot your developed functions and cecking the rightness. Lately in paraView you see, if the tangential vectors are correct.
With a factor, say f you are able to define the rotation direction of the propeller:
tanrot'=f*tan'(x_i,z_i) with f={-1,1}

x_i,z_i are the global cell centre positions, if the global point of origin is (0 0 0) and y_i=0 (one central screw propeller).
If the above things will working, you can determine the ratio from axial and tangential forces by a propeller nomogram (e.g. standard series). Additionaly a radial distribution of the magnitudes could be implement (see PNA Vol.II for qualitative radial circulation distribution of an open propeller).

I hope that helps a bit!

~Stefan
SD@TUB is offline   Reply With Quote

Old   October 2, 2012, 11:24
Default Broken links for the literature provided by Eric
  #25
Senior Member
 
Join Date: Mar 2009
Posts: 248
Rep Power: 18
jaswi is on a distinguished road
Hi Eric
Your post dated :

February 26, 2010,

have link to some articles. These links seem to dead now. If possible please
provide with the new links to these articles.

Thanks a lot
jaswi
jaswi is offline   Reply With Quote

Old   June 4, 2014, 06:27
Default
  #26
Senior Member
 
M. Montero
Join Date: Mar 2009
Location: Madrid
Posts: 153
Rep Power: 17
be_inspired is on a distinguished road
Hi Tim,

I think your problem is the same that mine and the wiggles happen "always"
http://www.cfd-online.com/Forums/ope...l-wiggles.html

"Discrete body forces are used in
the present context to model the influence of wind turbines on
the flow. In
order to overcome the pressure wiggles introduced by discre
te body forces,
one approach is to smooth out the body forces by using a Gaussi
an distri-
bution instead of a Dirac delta distribution
"
]
Using rotorDiskSource the problem is that wind speed is not calculated correctly in each cell so the angle of attack is incorrect, the force calculation, the wake....
Other option to solve the problem is to modify the Rhie-Chow algorithm.....

Any help?
Attached Images
File Type: jpg rotor_detail.jpg (24.7 KB, 50 views)

Last edited by be_inspired; June 6, 2014 at 07:22.
be_inspired is offline   Reply With Quote

Old   February 18, 2015, 11:41
Default
  #27
New Member
 
Matt Wright
Join Date: Feb 2015
Posts: 5
Rep Power: 11
mattwright1234 is on a distinguished road
Hi,

I'm new to OpenFoam and I'm wondering if there is a way to implement the localised momentum sources in OpenFoam 2.3.0, is the code any different to the OF 1.6 Version. Also, how would you create the BodyForceDict file?

Many Thanks

Matt
mattwright1234 is offline   Reply With Quote

Old   September 9, 2021, 03:46
Post Dear all, please tell me how to solve this.
  #28
New Member
 
hirota tomohiro
Join Date: Jun 2021
Posts: 16
Rep Power: 4
hirota is on a distinguished road
Hello everyone.

What I am currently trying to do is to study the flow around the hull taking into account the rotation of the propeller.

I think that calculating the propeller and hull as a single unit is very costly and unrealistic.

Therefore, we are considering alternative methods. The methods we are currently considering are

1. First, we calculate the propeller alone in a uniform flow.
2. Next, together with the hull model, we will place a simple propeller model (disk shape?) in place of the complex propeller model. Instead of the complex propeller model, place a simple propeller model (disk shape?) in its original location.
3. Based on the result of step 1, a volume force is added to the simple propeller model (disk shape?). I would like to add the volume force to the simple propeller model (disk shape?) and calculate around the hull.

Currently, I have completed the calculations in step 1 using both AMI and MRF methods, and I am wondering at what point to add the volume force.
What methods exist for approaching this in openfoam?

I'm using OpenFOAM-4.x.


I feel that this is a difficult problem that I cannot solve without your help.
Thank you very much for your help.
hirota is offline   Reply With Quote

Old   September 9, 2021, 15:43
Default
  #29
Member
 
Stefan
Join Date: Jan 2010
Location: Kiel, Germany
Posts: 81
Rep Power: 16
SD@TUB is on a distinguished road
Quote:
Originally Posted by hirota View Post
Hello everyone.

What I am currently trying to do is to study the flow around the hull taking into account the rotation of the propeller.

I think that calculating the propeller and hull as a single unit is very costly and unrealistic.

Therefore, we are considering alternative methods. The methods we are currently considering are

1. First, we calculate the propeller alone in a uniform flow.
2. Next, together with the hull model, we will place a simple propeller model (disk shape?) in place of the complex propeller model. Instead of the complex propeller model, place a simple propeller model (disk shape?) in its original location.
3. Based on the result of step 1, a volume force is added to the simple propeller model (disk shape?). I would like to add the volume force to the simple propeller model (disk shape?) and calculate around the hull.

Currently, I have completed the calculations in step 1 using both AMI and MRF methods, and I am wondering at what point to add the volume force.
What methods exist for approaching this in openfoam?

I'm using OpenFOAM-4.x.


I feel that this is a difficult problem that I cannot solve without your help.
Thank you very much for your help.
Hi,

its been a while that I implemented body forces to approximate a real propeller. In modern OF versions one choice would be using a function object. Or you may use the native API rotorDiskSource, see
https://www.openfoam.com/documentati...iskSource.html

There should be an example available online from Chalmers university on how to use it for a ship propeller.

Hope that points into the right direction.


/Stefan
SD@TUB is offline   Reply With Quote

Old   September 16, 2021, 03:49
Default
  #30
New Member
 
hirota tomohiro
Join Date: Jun 2021
Posts: 16
Rep Power: 4
hirota is on a distinguished road
Hi Stefan.

Thanks for your reply.
First of all, I'm a newbie when it comes to dealing with body forces, so I apologize for any inconvenience this may cause.

There are a few things I would like to confirm.
What has been discussed by stefan and others is
Are you saying that you have rewritten the code so that the acutuator-disk generates the general volume force that the propeller would generate without the pre-calculated results of the propeller?
Is this a little different from my way of doing things, which is to pre-calculate the propeller only and then use the result to give the volume force to the actuator-disk?

I would appreciate it if you could enlighten me in my ignorance.

By using a function object, do you mean that there is a way to give the result of the calculation as a volume force to the specified cell zone without rewriting the code?

I looked at some papers from Chalmers University, but I found that it requires a lot of rewriting of the code, which is very scary for me as a beginner in rewriting code.
If I have to rewrite the code, I am prepared to do so, but I am an inexperienced person who would like to avoid it if possible.

I would appreciate it if you could help me with my question.
hirota is offline   Reply With Quote

Old   September 21, 2021, 17:04
Default
  #31
Member
 
Stefan
Join Date: Jan 2010
Location: Kiel, Germany
Posts: 81
Rep Power: 16
SD@TUB is on a distinguished road
Quote:
Originally Posted by hirota View Post
Hi Stefan.

Thanks for your reply.
First of all, I'm a newbie when it comes to dealing with body forces, so I apologize for any inconvenience this may cause.

There are a few things I would like to confirm.
What has been discussed by stefan and others is
Are you saying that you have rewritten the code so that the acutuator-disk generates the general volume force that the propeller would generate without the pre-calculated results of the propeller?
Is this a little different from my way of doing things, which is to pre-calculate the propeller only and then use the result to give the volume force to the actuator-disk?

I would appreciate it if you could enlighten me in my ignorance.

By using a function object, do you mean that there is a way to give the result of the calculation as a volume force to the specified cell zone without rewriting the code?

I looked at some papers from Chalmers University, but I found that it requires a lot of rewriting of the code, which is very scary for me as a beginner in rewriting code.
If I have to rewrite the code, I am prepared to do so, but I am an inexperienced person who would like to avoid it if possible.

I would appreciate it if you could help me with my question.
Hi again,

No problem! Such a task takes time.
Unfortunately, I am not up-to-date what latest options you might have with a most recent version of OF, but I guess a little coding is - at least - still required.

Before the technique of 'function objects' was introduced in OF the only option was to adapt a given solver i.e. pimpleFoam to add source terms for body forces and to define where these forces shall apply.
With 'function objects' you can use a given OF solver and add own features as a function object that is compiled during run-time.

Using a cell set to pre-select cells where body forces shall be active is the right way.
The complexity of the propeller model depends on your needs. I used a weekly coupling model by determing the advance speed and J at the propeller plane from a resistance case and then used the KT at this J of a selected propeller to get the thrust to be used as a body force. This is maybe similar to your way.


/Stefan
SD@TUB is offline   Reply With Quote

Reply

Tags
momentum disk, propeller, propulsion


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
Two-phase air water flow problems by activating Wall Lubrication Force challenger85 CFX 5 November 5, 2009 05:44
Drag force in massless particles in discrete phase model payam_IUST FLUENT 2 October 18, 2009 23:25
DEFINE_CG_MOTION and pressure force Teo Fumagalli FLUENT 0 April 11, 2008 10:25
DPM model w/ Wave model - errors in documentation HS FLUENT 0 April 12, 2006 04:37
Propeller model (CFX-5.7.1) Jesper CFX 6 April 18, 2005 19:31


All times are GMT -4. The time now is 07:17.