CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

how i can solve this unsteady problem

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 3, 2011, 08:05
Post how i can solve this unsteady problem
  #1
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
i want to solve unsteady flow around a airfoil, i solved steady viscous flow by psay and omega with iterative method before, now i want to change steady to unsteady.........please help me
sarmadi is offline   Reply With Quote

Old   September 4, 2011, 08:06
Default
  #2
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
are you asking for help programming an unsteady solver or using an existing one??
cfdnewbie is offline   Reply With Quote

Old   September 4, 2011, 10:25
Smile reply
  #3
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
yes i want an unsteady solver for finite diffrences method,thanks
sarmadi is offline   Reply With Quote

Old   September 4, 2011, 15:10
Default
  #4
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Quote:
Originally Posted by sarmadi View Post
yes i want an unsteady solver for finite diffrences method,thanks
So if I understand you correctly, you already have an explicit FD solver which you use to do pseudo timestepping to steady state? if that's the case, you are almost already there...
cfdnewbie is offline   Reply With Quote

Old   September 5, 2011, 03:41
Wink ok
  #5
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
ok, i have a code that solve steady state flow FD , but now i want to solve unsteady state flow with FD and be expllicit,thank you, do you have it?
sarmadi is offline   Reply With Quote

Old   September 5, 2011, 04:10
Default
  #6
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
No, I don't, but if you already HAVE a FD code which solves the time integration in a pseudo timestepping, you are done....that's why you need to state what time integration you use in your steady state solver!
Two options:
a) pseudo time stepping in an explicit way -> you are done
b) implicit i.e. matrix solver -> you need to post back and I will try to help you!
cfdnewbie is offline   Reply With Quote

Old   September 5, 2011, 04:20
Default
  #7
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
ok, i use iterative method like LSOR or gous method for solving psi and omega in steady state
sarmadi is offline   Reply With Quote

Old   September 5, 2011, 04:30
Default
  #8
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Quote:
Originally Posted by sarmadi View Post
ok, i use iterative method like LSOR or gous method for solving psi and omega in steady state

I guess you mean "Gauss" Could you tell me what psi and omega are? I'm not familiar with that notation....

Here is what you have to do: the equation you want to solve is/must be written in differential form, sth like:

du/dt + a du/dx + b du/dy = s, where u can be a (x,y) vector). Explicit timestepping goes as follows: Write the above equation as

du/dt +R(u) = 0, where R(u) is called the residual, i.e. the spatial operator. Now use your code and identify the parts where R(u) is evaluated. Note that R(u) must be evaluated at t=n, so at the given/known time step.

so evaluate R(u) at u=u(n) and plug that into du/dt=-R(u). At that time, you have turned your PDE into an ODE.
Now just integrate the ODE in time, the simplest would be by an Euler approach:

du/dt = (u(n+1)-u(n))/delta t

That gives you u(n+1)!

clear so far?
Cheers!
cfdnewbie is offline   Reply With Quote

Old   September 5, 2011, 04:51
Smile
  #9
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
ok, it s time that i clear my mean for you
i have navier stokes equation for solving
that includes: momentum and continuety eqn.
one method for solving them is using vortisity yhat is du/dy-dv/dx=w;
and using psi that have gradiant^2(psi)=-w;
so i have two elliptic eqn for steady state manner that should solve together;
when i chang it to unsteady manner i have an elliptic eqn and a parabolic eqn and i need to solve them together but i dont know how??????
thank you
sarmadi is offline   Reply With Quote

Old   September 5, 2011, 06:37
Default
  #10
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Well, you have to write your equations in that form (just 1d, scalar example):

du/dt + R(u)=0, where all the spatial derivatives go into R(u). That can be first, second, or any order derivatives..... just group them all together, and approximate them with your finite differences in the way you know!

Then, you get an ODE in time (for psi and vorticity e.g.). You can solve that ODE in a time stepping way, like an Euler or standard Runge-Kutta approach (given that your whole discretization is stable!).
cfdnewbie is offline   Reply With Quote

Old   September 6, 2011, 03:37
Smile
  #11
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
thank you for trying, my problem is that my both eqn are dependent to each other
sarmadi is offline   Reply With Quote

Old   September 6, 2011, 05:00
Default
  #12
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Quote:
Originally Posted by sarmadi View Post
thank you for trying, my problem is that my both eqn are dependent to each other
uh...... Navier Stokes equations or Euler equations are also dependent on one another... so I guess I don't understand your problem??
cfdnewbie is offline   Reply With Quote

Old   September 6, 2011, 08:43
Smile dont be confused
  #13
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
please calm down,
it is not confusing problem
so consider you want to solve unsteady flow around an airfoil(Naca 12) and this flow is viscous and incompressible and laminar
before that i solve steady flow for cavity
sarmadi is offline   Reply With Quote

Old   September 6, 2011, 08:53
Default
  #14
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Quote:
Originally Posted by sarmadi View Post
please calm down,
it is not confusing problem
so consider you want to solve unsteady flow around an airfoil(Naca 12) and this flow is viscous and incompressible and laminar
before that i solve steady flow for cavity

ok, I'm all relaxed again :=)

I guess I don't understand your remark from above:

my problem is that my both eqn are dependent to each other

If you solve the NS equations in standard formulation (rho, u,p...), your equations are (of course) dependent on each other, as for example the rho-equation contains terms with u,v,w in them. If you reformulate the NS equations in terms of vorticity and other quantities, the equations are again dependent on each other...

So that doesn't introduce any new problem, right? You can solve your NS equations in your formulation in the same way you would solve them in any other formulation....if you use explicit timestepping, that's easier than for implicit...
cfdnewbie is offline   Reply With Quote

Old   September 6, 2011, 09:16
Smile
  #15
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
yeah
now plz answer me???
how i can impose time step and solve iterative????
sarmadi is offline   Reply With Quote

Old   September 6, 2011, 09:25
Default
  #16
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Ok, I will try again:

Write your equation as du/dt +R(u)=0. R(u) contains all spatial derivatives. U is your vector of solution variables, so vorticity and whatever else for you.

1) You start at timelevel 0 with your initial solution/projection. So you know U at t=0. compute R(U(t=t0)) with that information.

2) Now look at du/dt = -R(U(t=0)). Compute du/dt from 1) (trivial, just minus)

3) discretize du/dt in any way you choose. Look up ODE solvers, but standard are Runge Kutta schemes. Let's say you picked du/dt = (u(n+1)-u(n))/delta t. n+1 = solution at NEW time step, n= solution at time step t=0, the one you know from your initial condition.

4) so you have: u(n+1)=u(n)-delta t * R(u(n)). Compute u(n+1) from that -> that's your new timestep

5) repeat this procedure till you reached your final time...

Did this help?

cheers!
cfdnewbie is offline   Reply With Quote

Old   September 6, 2011, 09:34
Smile
  #17
New Member
 
parisa
Join Date: Sep 2011
Posts: 10
Rep Power: 14
sarmadi is on a distinguished road
yes, i know what you say and it is completly true.
so in U i have pressure how i update it????
sarmadi is offline   Reply With Quote

Old   September 6, 2011, 09:54
Default
  #18
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
Quote:
Originally Posted by sarmadi View Post
yes, i know what you say and it is completly true.
so in U i have pressure how i update it????
Ok, good question...you would have to compute the pressure from your state variables, so vorticity and the other thing in each step. I haven't done this before, there might be an easier way. I suggest you ask your professor, he or she should know!
cfdnewbie is offline   Reply With Quote

Reply

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
How to solve natural convection problem in fluent? samantasubho FLUENT 7 April 17, 2014 03:07
can you solve this problem? mehendis FLUENT 0 August 17, 2010 05:25
How FVM will solve shock problem? michael Main CFD Forum 4 June 13, 2007 10:07
SOS: About VOF-Dynamic mesh unsteady problem whpsoft FLUENT 4 May 9, 2006 20:26
Newbie Unsteady Problem Anthony FLUENT 7 March 18, 2006 13:39


All times are GMT -4. The time now is 16:21.