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

lagrangian cloud::SU() returns different

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By snak

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 21, 2022, 10:30
Question lagrangian cloud::SU() returns different
  #1
Member
 
Rishikesh
Join Date: Apr 2016
Posts: 63
Rep Power: 10
mrishi is on a distinguished road
Hi all,I noticed the following when coupling lagrangian cloud with eulerian continuum. In the momentum source calculator function, MomentumCloud::SU() (for OF8+, otherwise it would probably be KinematicCloud::SU()), we see the following code:


Code:
if (solution_.semiImplicit("U"))
        {
            const volScalarField::Internal
                Vdt(this->mesh().V()*this->db().time().deltaT());

            return UTrans()/Vdt - fvm::Sp(UCoeff()/Vdt, U) + UCoeff()/Vdt*U;
        }

Where UCoeff and UTrans are the self-explanatory fields, derived by adding up the interaction from all member particles of the cloud. The returned object is an fvVectorMatrix, with the first and last are explicit components, and the middle term, the coefficient term.



Now, if there is no "semi-implicit" flag, ie the source is purely an explicit term,
the code returns:


Code:
else
        {
            tmp<fvVectorMatrix> tfvm(new fvVectorMatrix(U, dimForce));
            fvVectorMatrix& fvm = tfvm.ref();

            fvm.source() = -UTrans()/(this->db().time().deltaT()); 

            return tfvm;
        }

Which is quite analogous to the explicit part of semi-implicit source above, but it does not have a division by cell volume.

It appears to me that in general, we supply fvVectorMatrix terms on a per unit volume basis. What is then the reason behind difference in the divisor in the two cases. Is the second formulation correct? If it is, can someone help me understand why it is so?



I would expect that the two should not even run with the same solver/case, based on dimensional considerations, but they do. However, I cannot find any other point in lagrangian libraries, where the semi-implicit flag is used to change the way in which UTrans is calculated differently depending of the flag.



I would appreciate any help in enlightening me about this.


Thanks
mrishi is offline   Reply With Quote

Old   March 21, 2022, 15:21
Default
  #2
Member
 
Utkan Caliskan
Join Date: Aug 2014
Posts: 42
Rep Power: 11
dscian is on a distinguished road
In the explicit formulation, it doesn't construct fvMatrix but assigns the field to the source of the fvMatrix, hence no division by volume.
dscian is offline   Reply With Quote

Old   March 22, 2022, 01:24
Exclamation
  #3
Member
 
Rishikesh
Join Date: Apr 2016
Posts: 63
Rep Power: 10
mrishi is on a distinguished road
Hey,
Thank you for your answer!
You say that

Quote:
Originally Posted by dscian View Post
In the explicit formulation, it doesn't construct fvMatrix but assigns the field to the source of the fvMatrix, hence no division by volume.

but, in the explicit case's code above doesn't

Code:
tmp<fvVectorMatrix> tfvm(new fvVectorMatrix(U, dimForce));
fvVectorMatrix& fvm = tfvm.ref();
'construct' a matrix, which is eventually added to the UEqn matrix, similar to the semi-implicit case above it? It isn't clear to me why one is considered construction and the other isnt. Once we have created a tmp and then ref'd to its memory location, don't we have a proper fvMatrix?



Thanks again.

Last edited by mrishi; March 22, 2022 at 01:27. Reason: formatting
mrishi is offline   Reply With Quote

Old   March 23, 2022, 06:37
Default
  #4
Senior Member
 
shinji nakagawa
Join Date: Mar 2009
Location: Japan
Posts: 113
Blog Entries: 1
Rep Power: 18
snak is on a distinguished road
Hi,

There is the section (3.4.9, P-43) about the source terms in Programmer's Guide.
https://sourceforge.net/projects/openfoam/files/v2112/

With the implicit method, the term will be integrated over a control volume. This explanation is about a flow field, not about a lagrangian cloud. However, there may be some relations with your question.
mrishi likes this.
snak is offline   Reply With Quote

Reply

Tags
lagrangian openfoam, semi-implicit-source


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
Lagrangian particle tracking in mechanically agitated mono-dispersed and poly-dispers anandjjadhaviitr ANSYS 0 September 18, 2020 15:19
Pseudo-transient Lagrangian approach ASimonsen OpenFOAM Running, Solving & CFD 0 May 20, 2020 08:47
Compiling Lagrangian in a Lagrangian Particle Tracking Solver tzaht OpenFOAM Programming & Development 3 February 3, 2020 03:26
Aurelia Vallier, MultiScale, Eulerian-Lagrangian Couplling, VOF-LPT, Lagrangian, saddy OpenFOAM Programming & Development 0 August 9, 2017 14:28
converse lagrangian field to eulerian Jan_B OpenFOAM Programming & Development 0 August 13, 2015 13:11


All times are GMT -4. The time now is 11:36.