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

Numerical simulation of DBD plasma actuator induced flow

Register Blogs Members List Search Today's Posts Mark Forums Read

Like Tree1Likes
  • 1 Post By PonchO

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 15, 2013, 21:16
Lightbulb Numerical simulation of DBD plasma actuator induced flow
  #1
Senior Member
 
Mominul MuKuT
Join Date: Mar 2009
Location: Bangladesh
Posts: 124
Rep Power: 17
mukut is on a distinguished road
Earlier time, I have used PHOENICS to simulate flow induced by Plasma Actuator (PA). Now my target is to implement openFoam in PA induced flow simulation and later which will be coupled with plasma vortex generator induced flow simulation. As a three months user of openFoam, I am still struggling to learn, so in this regard all of your support is cordially welcomed. Possibly I have to use solver pisoFoam/potentialFoam for my purpose. Does anybody has experience to simulate PA induced flow by openFoam? I have only 2months to complete this simulation, till I am in deep sea
mukut is offline   Reply With Quote

Old   September 20, 2013, 04:23
Default
  #2
New Member
 
Christoph Kratzsch
Join Date: Nov 2011
Location: Freiberg
Posts: 28
Rep Power: 14
PonchO is on a distinguished road
Hi mukut,

i don't have experience with plasma actuators. So i don't know about the plasma physics. But i'm analyzing a flow control problem too. In my case it is realized by Lorentz-forces acting on the flow.

I think you want to add an extra volumeforce inside an existing solver like pisoFoam, am i right?

Best regards.
PonchO is offline   Reply With Quote

Old   September 20, 2013, 04:30
Default
  #3
Senior Member
 
Mominul MuKuT
Join Date: Mar 2009
Location: Bangladesh
Posts: 124
Rep Power: 17
mukut is on a distinguished road
Quote:
Originally Posted by PonchO View Post
Hi mukut,

i don't have experience with plasma actuators. So i don't know about the plasma physics. But i'm analyzing a flow control problem too. In my case it is realized by Lorentz-forces acting on the flow.

I think you want to add an extra volumeforce inside an existing solver like pisoFoam, am i right?

Best regards.
Hello PonchO,

thanks for your reply. Yes, something like that....in plasma actuator it is necessary to couple body force with velocity...
mukut is offline   Reply With Quote

Old   September 20, 2013, 04:51
Default
  #4
New Member
 
Christoph Kratzsch
Join Date: Nov 2011
Location: Freiberg
Posts: 28
Rep Power: 14
PonchO is on a distinguished road
I don't know if it helps:

In pisoFoam.C you have something like this:

Code:
fvVectorMatrix UEqn
            (
                fvm::ddt(U)
              + fvm::div(phi, U)
              + turbulence->divDevReff(U)
            );
So you can define a force before the UEqn is evaluated:

Code:
volVectorField lorentz = sigma * (-fvc::grad(PotE) ^ B0) + sigma * ((U ^ B0) ^ B0);
Now you can add them to the equation in the UEqn

Code:
fvVectorMatrix UEqn
            (
            fvm::ddt(U)
            + fvm::div(phi, U)
            + turbulence->divDevReff(U)
            ==
            (1.0/rho) * lorentz    // Lorentz force term
            );
After the Fields are calculated and after the PISO-loop you can add subsequent formula for describing the distribution of your additional force. In my case it were realized by an extra outer loop for the lorentz-force calculation.

Is that kind of something you want to do?

Best regards,

Christoph
babala likes this.
PonchO is offline   Reply With Quote

Old   September 20, 2013, 04:59
Default
  #5
Senior Member
 
Mominul MuKuT
Join Date: Mar 2009
Location: Bangladesh
Posts: 124
Rep Power: 17
mukut is on a distinguished road
Quote:
Originally Posted by PonchO View Post
I don't know if it helps:

In pisoFoam.C you have something like this:

Code:
fvVectorMatrix UEqn
            (
                fvm::ddt(U)
              + fvm::div(phi, U)
              + turbulence->divDevReff(U)
            );
So you can define a force before the UEqn is evaluated:

Code:
volVectorField lorentz = sigma * (-fvc::grad(PotE) ^ B0) + sigma * ((U ^ B0) ^ B0);
Now you can add them to the equation in the UEqn

Code:
fvVectorMatrix UEqn
            (
            fvm::ddt(U)
            + fvm::div(phi, U)
            + turbulence->divDevReff(U)
            ==
            (1.0/rho) * lorentz    // Lorentz force term
            );
After the Fields are calculated and after the PISO-loop you can add subsequent formula for describing the distribution of your additional force. In my case it were realized by an extra outer loop for the lorentz-force calculation.

Is that kind of something you want to do?

Best regards,

Christoph
Thanks for your good effort. I want to do something like this image
I am a new user, previous time I simulated flow induced by PA in phoenics but now I don't understand how to define actuator inside flow domain. Is it possible to define such configuration using default mess generation by openFoam?
mukut is offline   Reply With Quote

Old   January 7, 2014, 05:30
Default
  #6
Senior Member
 
Vincent RIVOLA
Join Date: Mar 2009
Location: France
Posts: 283
Rep Power: 18
vinz is on a distinguished road
hello MominulDid you manage to model your plasma actuator in OpenFoam

I am planning to work on the same subject in comming weeks.
vinz is offline   Reply With Quote

Reply

Tags
numerical simulation, openfoam, plasma actuator modeling

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Flow simulation in a Pelton turbine nozzle fivos FLUENT 0 April 19, 2011 11:46
Wing lift in Solidwork Flow Simulation brianmcv Main CFD Forum 6 April 11, 2011 08:16
Simulation of Flow through Complex 3D Geometry EmersonKB CFX 5 July 2, 2009 08:17
flow simulation across a small fan jane luo Main CFD Forum 15 April 12, 2004 17:49
Solid-Liquid Two Phase Flow Numerical Simulation with the Finite Element Method Qing Hao Main CFD Forum 2 January 8, 1999 23:31


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