|
[Sponsors] | |||||
|
|
|
#1 |
|
New Member
yudhast
Join Date: Mar 2011
Posts: 12
Rep Power: 4 ![]() |
Dear All,
I need a help in implementing a modified surface tension component ( Fst,i ) in interfoam. This surface tension force is implemented in Interfoam as fvc::interpolate(interface.sigmaK())*fvc::snGrad(a lpha1) which is basically Fst,i = -sigmaK*grad (alpha1) This part I need to change it to Fst,i = -(Pb - Pa) * grad (alpha1) where (Pb - Pa) = 0.5* ( P1 + P2 ) P1 =0.5* ((1-2*alpha1)* P)w + ((1-2*alpha1)* P)E P2 =0.5* ((1-2*alpha1)* P)N + ((1-2*alpha1)* P)S Here W,E,N and S represents left, right, top and bottom cell information for a cell "i" Thanks in advance YUdhast |
|
|
|
|
|
|
|
|
#2 |
|
Member
vahid
Join Date: Feb 2012
Location: Mashhad-Iran
Posts: 80
Rep Power: 2 ![]() |
Hi Dear yudhast.
I'm working with openFoam 2.0.1,and have a problem with solver (interPhaseChangeFoam) in multiphase solvers. I want to add (surface tension or sigma ) in a part of this solver, in directory: /run/myinterPhaseChangeFoam/phaseChangeTwoPhaseMixtures/SchnerrSauer/SchnerrSauer.c I added sigma() in this code: Foam::tmp<Foam::volScalarField> Foam:haseChangeTwoPhaseMixtures::SchnerrSauer: Coeff ( const volScalarField& p ) const { volScalarField limitedAlpha1(min(max(alpha1_, scalar(0)), scalar(1))); volScalarField rho ( limitedAlpha1*rho1() + (scalar(1) - limitedAlpha1)*rho2() ); return return //......I want to change it( <<sigma>> surface tension multiple in it): (3*rho1()*rho2())*sqrt(2/(3*rho1()))*sigma() *rRb(limitedAlpha1)/(rho*sqrt(mag(p - pSat()) + 0.01*pSat())); //.................................................. ...... } dont successful wmake, and seen(sigma() was not declared ): phaseChangeTwoPhaseMixtures/SchnerrSauer/SchnerrSauer.C:113: error: sigma() was not declared in this scope make: *** [Make/linux64GccDPOpt/SchnerrSauer.o] Error 1 please help me. |
|
|
|
|
|
|
|
|
#3 |
|
Member
vahid
Join Date: Feb 2012
Location: Mashhad-Iran
Posts: 80
Rep Power: 2 ![]() |
Hi again.
I added interpolate(interface.sigma()) in this code: Foam::tmp<Foam::volScalarField> Foam:haseChangeTwoPhaseMixtures::SchnerrSauer: Coeff ( const volScalarField& p ) const { volScalarField limitedAlpha1(min(max(alpha1_, scalar(0)), scalar(1))); volScalarField rho ( limitedAlpha1*rho1() + (scalar(1) - limitedAlpha1)*rho2() ); return //......I want to change it( <<sigma>> surface tension multiple in it): (3*rho1()*rho2())*sqrt(2/(3*rho1()))*interpolate(interface.sigma()) *rRb(limitedAlpha1)/(rho*sqrt(mag(p - pSat()) + 0.01*pSat())); //.................................................. ...... } dont successful wmake, and seen(was not declared ): phaseChangeTwoPhaseMixtures/SchnerrSauer/SchnerrSauer.C:113: error: 'interface' was not declared in this scope phaseChangeTwoPhaseMixtures/SchnerrSauer/SchnerrSauer.C:113: error: 'interpolate' was not declared in this scope make: *** [Make/linux64GccDPOpt/SchnerrSauer.o] Error 1 please help me. |
|
|
|
|
|
|
|
|
#4 |
|
Member
vahid
Join Date: Feb 2012
Location: Mashhad-Iran
Posts: 80
Rep Power: 2 ![]() |
please help me????
|
|
|
|
|
|
|
|
|
#5 |
|
Senior Member
|
dear vahid
i recommend you to read a C++ book, chapter "class" interface is object! interpolation is a function or member of a class when you call an object, you should first define it some where first, you should add the appropriate header file, for example: #include "fvCFD.H" then you can use public member of this class fvc::interpolate(....) |
|
|
|
|
|
|
|
|
#6 |
|
Member
vahid
Join Date: Feb 2012
Location: Mashhad-Iran
Posts: 80
Rep Power: 2 ![]() |
Thanks nima for your answer
|
|
|
|
|
|
![]() |
| Tags |
| adding term, interfoam, surface tension |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Momentum equation of interFoam? | cfdfans | OpenFOAM | 9 | January 5, 2013 03:09 |
| Constant velocity of the material | Sas | CFX | 15 | July 13, 2010 08:56 |
| Adding a source term to concervation of species equation | bernarde | STAR-CCM+ | 0 | June 4, 2009 03:17 |
| Momentum equation used by mixture model | George | FLUENT | 0 | May 19, 2005 13:07 |
| bouyancy term in epsilon equation | Michael | Main CFD Forum | 1 | June 25, 1999 10:20 |