CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   How to solver coupled transport equations (https://www.cfd-online.com/Forums/openfoam-solving/60053-how-solver-coupled-transport-equations.html)

chris1980 June 29, 2006 13:31

I want to solve 2 scalar trans
 
I want to solve 2 scalar transport equations which are coupled.

I was wondering how to treat the equation intercoupling in OpenFOAM? Can anybody tell me how to do this?

mprinkey June 29, 2006 19:46

What is the nature of the coup
 
What is the nature of the coupling? If it is coupling of a source form like:

c(phi_0 - phi_1)

it is possible to partial elimination to nice accelerate inter-scalar coupling. I suggest you show the full form of the scalar equations you are trying to solve.

Mike

chris1980 June 30, 2006 05:28

it is more a general question
 
it is more a general question how to solve coupled scalar transport equations.

Is anybody able to show the "general" way how to deal with inter-equation coupling in OpenFOAM?

mprinkey June 30, 2006 07:09

OpenFOAM currently only handle
 
OpenFOAM currently only handles segregated-type solution procedures...only a single unknown field can be solved at a time. So solving two scalar fields require an iterative/timestepping scheme that did successive substitution. Something like:

while (UNCONVERGED)
{
solve(fvm::...(phi_0) == fvc::...(phi_1));
solve(fvm::...(phi_1) == fvc::...(phi_0));
}

The first solve will compute explicitly the phi_1 contribution in the first equation and then solve it implicitly for the new value of phi_0. The reverse happens in the second solve--source terms are computed using phi_0 and then phi_1 is solved implicitely. After iterating several times, the phi_0 and phi_1 fields will become consistent (we hope).

Now, this will fail to converge or converge slowly if there is strong coupling between the scalar equations. If the coupling form is as I mentioned in the earlier post, then there is a nice trick (partial elimination algorithm) that will allow you to approximate the coupling term between the two scalars and significantly increase robustness and convergenece.

To do more generally coupled scalar fields will require a block solver. That will allow the simultaneous solution of phi_0 and phi_1 and allow all of the terms to be treated implicitly. Such as solver mechanism is currently unavailable in OpenFOAM.

Mike

chris1980 August 18, 2006 07:24

It there somewhere a example h
 
It there somewhere a example how to solve couled equations (not p-U coupling) in OpenFOAM?

chris1980 August 25, 2006 08:49

Can someone push me into to di
 
Can someone push me into to direction how to solve coupled scalar equation in a general way?

I think this is a popoular issue and many people are interessted in. I cannot find any reference in the tutorials or in the discussion forum.

mprinkey August 25, 2006 09:05

Chris, I answered your ques
 
Chris,

I answered your question back in June. There are no coupled linear equation solvers currently availabe in OpenFOAM. The solution approach is to freeze one of the scalars, compute terms based on that scalar explicitly (with fvc:: operators) and solve for the other scalar implicitly (with fvm:: operators.) Then freeze the other scalar and treat the other implicitly. Then just iterate until the system converges. If you are still having difficulty understanding this, please post the equations you need to solve. Perhaps an example would help.


Mike

chris1980 August 25, 2006 09:18

Yes you are right Mike, I was
 
Yes you are right Mike, I was just wondering if there is any example how to do this. I want to solve the following 2 transport equation for XiVar and Chi:

ddt(rho, XiVar) + div(phi, XiVar) - laplacian(turbulence->mut()/Sct, XiVar) == C1*(turbulence->mut()/Sct)*magSqrGradXi - rho*Chi

ddt(chi) == Su(C1*turbulence->epsilon/turbulence->k,chi) + C2*(1/XiVar)

Note: I know this is not correct Foam syntax. This is just to present the equations I want to solve.

Younes_Tatari October 29, 2019 08:15

I am dealing with such a problem!!!
 
1 Attachment(s)
Hi

I want to simulate the motion of three species (electron, positive and negative ions). Each species has its transport equation and all of them are affecting each other in source terms. Besides that density of each species affect the electric field (which is the driving force for each of them). these are the equations.

(∂n_e)/∂t+∇.(-μ_e E ⃗n_e-D_e ∇n_e)=S_e
(∂n_p)/∂t+∇.(-μ_p E ⃗n_p-D_p ∇n_p)=S_p
(∂n_n)/∂t+∇.(-μ_n E ⃗n_n-D_n ∇n_n)=S_n

∇^2 V= -(e(n_p-n_e-n_n))/ε
E ⃗= - ∇V

the fourth equation is Poisson equation which connects the electric field to the species.

I tried the mike's way. to freeze one scalar and calculate the other one!!!
unfortunately it didn't work. I mean my result isn't similar to papers. (by the way, I am not very experienced in openfoam. maybe I am miking mistake somewhere else).

I build a simple test case ( 2 planes). using structured and unstructured mesh leads to 2 totally different results. So, I think non-orthogonality plays an important role here. indicating that all these scalars should be coupled with each other and we need to correct them in a loop like PISO.
I tried a basic for loop and do while loop. (again, freezing all scalars and solving for one scalar). this loop didn't change result.

I am still struggling with this problem. if anyone has any idea I would be very happy to hear!!! :)


All times are GMT -4. The time now is 08:13.