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

Refrences about transient flow

Register Blogs Community New Posts Updated Threads Search

Like Tree7Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 14, 2012, 17:08
Smile
  #21
Member
 
Amin Shariat KHah
Join Date: Apr 2011
Location: Shiraz
Posts: 86
Rep Power: 15
amin144 is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
the issue is not simple to explain in few words ... you need to distinguish if you are using an exact projection method or an approximate projection method. In the latter case you do not satisfy exactly div V =0 but only up to the magnitude of the local truncation error.
Try to read:

F.M. Denaro,
On the application of the Helmholtz-Hodge decomposition in projection methods for the numerical solution of the incompressible Navier-Stokes equations with general boundary conditions, Int. J. Num. Methods in Fluids, 43, 2003

F.M. Denaro, A 3D second-order accurate projection-based Finite Volume code on non-staggered, non-uniform structured grids with continuity preserving properties: application to buoyancy-driven flows,Int. J. Num. Meth. Fluids, 52, 4, 393-432, 2006.
Also it's not simple to understand
I think transient flows are not easy to understand

Thanks Very Very much
amin144 is offline   Reply With Quote

Old   February 14, 2012, 17:12
Default
  #22
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,764
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Quote:
Originally Posted by amin144 View Post
Also it's not simple to understand
I think transient flows are not easy to understand

Thanks Very Very much

as a matter of fact, there is not much difference between steady or unsteady flows, the continuity equation is a constraint that does not have an unsteady term. I hope that the reading of those papers can help you
amin144 likes this.
FMDenaro is offline   Reply With Quote

Old   February 15, 2012, 11:01
Unhappy
  #23
Member
 
Amin Shariat KHah
Join Date: Apr 2011
Location: Shiraz
Posts: 86
Rep Power: 15
amin144 is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
as a matter of fact, there is not much difference between steady or unsteady flows, the continuity equation is a constraint that does not have an unsteady term. I hope that the reading of those papers can help you
Thanks very very much Dear Filippo
A basically maybe very simple question:
If I discretize my equation like this:
(U_n+1 - U_n)/dt = f( U_n+1 )
And solve my equation with a iterative equation system solver, in first iterate I calculate a U that named U_n+1 but it’s not actually U_n+1
And in next iteration I replace U_n with U_n+1 and continue to solving problem,
Which means marching in TIME !!!!! and is not suitable because I don’t want to march in time till my iteration reach a true answer for U_n+1
This is a conceptual subject which confusing me. I think the problem is in discretizing and I should change it.

Is my question foolish and I’m wrong in a simple thing or it is a usual question?
What is the solution of this problem in CFD?
amin144 is offline   Reply With Quote

Old   February 15, 2012, 12:38
Default
  #24
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,764
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
As you can see, your way to integrate needs to face with the continuity constraint. I think you need to clarify the ideas about the existing methods such as simple,simplec, piso, fractional, etc. You will find some help starting the reading in the book of Ferziger & Peric. Once assessed the method you want to explore you can go more indeep the topic.
amin144 likes this.
FMDenaro is offline   Reply With Quote

Old   February 22, 2012, 04:00
Default
  #25
Senior Member
 
sbaffini's Avatar
 
Paolo Lampitella
Join Date: Mar 2009
Location: Italy
Posts: 2,152
Blog Entries: 29
Rep Power: 39
sbaffini will become famous soon enoughsbaffini will become famous soon enough
Send a message via Skype™ to sbaffini
Dear amin,

i really reccomend to follow the suggestions from Filippo (Hi Filippo). However,to quote you, "you are wrong in a simple thing".

That is, when you need to iterate at FIXED time in:

U_n+1 = U_n + dt * f(U_n+1)

because of the implicitness of f (and probably the non linearity), you don't have to touch U_n, the first term in the second member or, as you said, you would be advancing in time (which is not what you want).

At the end of the iterations your U_n+1 will satisfy the above relation with respect to U_n, which is what you want to achieve in a single time step dt. This is general and even apply to linear parabolic equations.
amin144 likes this.
sbaffini is offline   Reply With Quote

Old   February 22, 2012, 04:04
Default
  #26
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,764
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Quote:
Originally Posted by sbaffini View Post
Dear amin,

i really reccomend to follow the suggestions from Filippo (Hi Filippo). However,to quote you, "you are wrong in a simple thing".

That is, when you need to iterate at FIXED time in:

U_n+1 = U_n + dt * f(U_n+1)

because of the implicitness of f (and probably the non linearity), you don't have to touch U_n, the first term in the second member or, as you said, you would be advancing in time (which is not what you want).

At the end of the iterations your U_n+1 will satisfy the above relation with respect to U_n, which is what you want to achieve in a single time step dt. This is general and even apply to linear parabolic equations.

Ciao ....
FMDenaro is offline   Reply With Quote

Old   February 22, 2012, 08:03
Smile
  #27
Member
 
Amin Shariat KHah
Join Date: Apr 2011
Location: Shiraz
Posts: 86
Rep Power: 15
amin144 is on a distinguished road
Quote:
Originally Posted by sbaffini View Post
Dear amin,

i really reccomend to follow the suggestions from Filippo (Hi Filippo). However,to quote you, "you are wrong in a simple thing".

That is, when you need to iterate at FIXED time in:

U_n+1 = U_n + dt * f(U_n+1)

because of the implicitness of f (and probably the non linearity), you don't have to touch U_n, the first term in the second member or, as you said, you would be advancing in time (which is not what you want).

At the end of the iterations your U_n+1 will satisfy the above relation with respect to U_n, which is what you want to achieve in a single time step dt. This is general and even apply to linear parabolic equations.
Hi Dear Paolo
You would be a good teacher
you are the first one that understood what i'm saying
my mistake was too simple as you said
I found it after reading Ferziger CFD book and I became sure after reading your post
Thanks very very much guys
amin144 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
Problem with transient solution of flow past a row of cylinders jostanek Main CFD Forum 0 January 6, 2010 12:16
TRANSIENT ANALYSIS OF JET FLOW shriramjegan FLUENT 0 July 28, 2007 12:04
transient compressible flow simulation-urgent JSM FLUENT 0 April 26, 2007 01:51
transient compressible flow problem (urgent plz) jehanzeb FLUENT 5 August 3, 2004 08:04
PhD in turbulence Hans Main CFD Forum 14 October 8, 2001 03:03


All times are GMT -4. The time now is 23:41.