acoustic streaming modeling
play

Acoustic streaming modeling Milad Setareh Applied Mechanics/Fluid - PowerPoint PPT Presentation

Introduction Mathematical modeling of acoustic streaming Modifications Running the case Acoustic streaming modeling Milad Setareh Applied Mechanics/Fluid Dynamics, Amirkabir University of Technology, Tehran Polytechnic Tehran, Iran


  1. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Acoustic streaming modeling Milad Setareh Applied Mechanics/Fluid Dynamics, Amirkabir University of Technology, Tehran Polytechnic Tehran, Iran December, 2016 Milad Setareh Acoustic streaming modeling 2016 1 / 20

  2. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Outline Introduction Mathematical modeling of acoustic streaming Modifications Running the case Milad Setareh Acoustic streaming modeling 2016 2 / 20

  3. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Introduction Introduction Acoustic streaming is a vortex flow which shows the interaction between acoustic waves and fluid. Acoustic streaming is a steady flow in a fluid driven by the absorption of high amplitude acoustic oscillations. Milad Setareh Acoustic streaming modeling 2016 3 / 20

  4. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Expansion of variables Expansion of variables Time discretization of ultrasonic waves less than 10 − 6 s Acoustic streaming relaxation times about 1 s Since solving the complete NavierStokes equations would take a long time, it is necessary to apply an adequate approach to overcome this problem. ρ = ρ 0 + ρ 1 + ρ 2 u = u 0 + u 1 + u 2 (1) p = p 0 + p 1 + p 2 Milad Setareh Acoustic streaming modeling 2016 4 / 20

  5. Introduction Mathematical modeling of acoustic streaming Modifications Running the case First order equations First order equations ∂ρ 1 ∂t + ρ 0 ∇ · u 1 � � (2) = 0 ρ 0 ∂u 1 ∂t = −∇ · p 1 + µ ∇ 2 u 1 (3) p 1 = c 2 ρ 1 (4) Milad Setareh Acoustic streaming modeling 2016 5 / 20

  6. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Second order equations Second order equations ∂ρ 2 ∂t + ρ 0 ∇ · u 2 � ρ 1 u 1 �� � � � (5) = −∇ · ρ 0 ∂u 2 − ρ 1 ∂u 1 � � ∂t = −∇ · p 2 + µ ∇ 2 u 2 + u 1 · ∇ ∂t − ρ 0 � � u 1 (6) p 2 = c 2 ρ 2 (7) Milad Setareh Acoustic streaming modeling 2016 6 / 20

  7. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Create the new solvers Copy the existing solvers Copy the sonicLiquidFoam and buoyantBoussinesqSimpleFoam solvers in the local solvers directory and change its name. cd $WM_PROJECT_USER_DIR mkdir -p applications/solvers/compressible/sonicLiquidFoam cd applications/solvers/compressible cp -r $FOAM_SOLVERS/compressible/sonicLiquidFoam . cd sonicLiquidFoam mv sonicLiquidFoam.C mySonicLiquidFoam.C sed -i "s/sonicLiquidFoam/mySonicLiquidFoam/g" Make/files sed -i "s/FOAM_APPBIN/FOAM_USER_APPBIN/g" Make/files wclean wmake Milad Setareh Acoustic streaming modeling 2016 7 / 20

  8. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Create the new solvers Copy the existing solvers cd $WM_PROJECT_USER_DIR mkdir -p applications/solvers/heatTransfer/buoyantBoussinesq\ SimpleFoam cd applications/solvers/heatTransfer cp -r $FOAM_SOLVERS/heatTransfer/buoyantBoussinesq\ SimpleFoam . cd buoyantBoussinesqSimpleFoam mv buoyantBoussinesqSimpleFoam.C myBuoyantBoussinesq\ SimpleFoam.C sed -i "s/buoyantBoussinesqSimpleFoam/myBuoyantBoussinesq\ SimpleFoam/g" Make/files sed -i "s/FOAM_APPBIN/FOAM_USER_APPBIN/g" Make/files wclean wmake Milad Setareh Acoustic streaming modeling 2016 8 / 20

  9. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Create the new solvers (mySonicLiquidFoam) creatFileds.H Add the following lines into creatFileds.H for mySonicLiquidFoam solver. Also, replace createphi.H instead of compressibleCreatePhi.H volVectorField sumAcousticForce ( IOobject ( "sumAcousticForce", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE ), mesh, dimensionedVector("meanAcousticForce", dimensionSet(0,1,-2,0,0,0,0), vector(0,0,0)) ); Milad Setareh Acoustic streaming modeling 2016 9 / 20

  10. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Create the new solvers (mySonicLiquidFoam) volVectorField meanAcousticForce ( IOobject ( "meanAcousticForce", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), mesh, dimensionedVector("meanAcousticForce", dimensionSet(0,1,-2,0,0,0,0), vector(0,0,0)) ); Milad Setareh Acoustic streaming modeling 2016 10 / 20

  11. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Create the new solvers (mySonicLiquidFoam) Modify the solver Remove compressibleCourantNo.H and replace it with CourantNo.H sed -i "s/compressibleCourantNo.H/CourantNo.H/g" mySonicLiquidFoam.C Also, we change the initial value of ρ to 1+psi*p in the createFields.H. For considering kinematic viscosity, it is better to change mu to nu in readTransportProperties.H file. cd $WM_PROJECT_USER_DIR/applications/solvers/compressible/sonicLiquidFoam sed -i "s/rhoO/1/g" createFields.H sed -i "s/mu/nu/g" readTransportProperties.H Milad Setareh Acoustic streaming modeling 2016 11 / 20

  12. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Create the new solvers (mySonicLiquidFoam) mySonicLiquidFoam.C Delete the line #include "rhoEqn.H" Add float iter=0.0 before run.time loop. Add #include "readPISOControls.H" after #include "createMesh.H Remove //#include "pimpleControl.H" and pimpleControl pimple(mesh); Remove all lines started form pimple loop and ended with correct density.Then, paste the below code instead. fvVectorMatrix UEqn ( fvm::ddt(U) - fvm::laplacian(nu, U) ); solve(UEqn == -fvc::grad(p)); // --- PISO loop for (int corr=0; corr<nCorr; corr++) { volScalarField rAU(1.0/UEqn.A()); U = rAU*UEqn.H(); surfaceScalarField phid ( "phid", psi *( (fvc::interpolate(U) & mesh.Sf()) // + fvc::ddtPhiCorr(rAU, rho, U, phi) ) ); phi = (1/psi)*phid; Milad Setareh Acoustic streaming modeling 2016 12 / 20

  13. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Create the new solvers (mySonicLiquidFoam) fvScalarMatrix pEqn ( fvm::ddt(psi,p) + fvc::div(phi) //+ fvm::div(phid, p) - fvm::laplacian(rAU, p) ); pEqn.solve(); phi += pEqn.flux(); #include "continuityErrs.H" U -= rAU*fvc::grad(p); U.correctBoundaryConditions(); } rho = 1 + psi*p; iter=iter+1.0; sumAcousticForce=sumAcousticForce+fvc::div(phi, U)+(rho-1)*fvc::ddt(U); meanAcousticForce=sumAcousticForce/iter; Milad Setareh Acoustic streaming modeling 2016 13 / 20

  14. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Create the new solvers (myBuoyantBoussinesqSimpleFoam) creatFileds.H Add the following lines into creatFileds.H for myBuoyantBoussinesqSimpleFoam solver. volVectorField meanAcousticForce ( IOobject ( "meanAcousticForce", runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), mesh ); To import the driving momentum source into U equation, we should add meanAcousticForce at the last line of UEqn. Milad Setareh Acoustic streaming modeling 2016 14 / 20

  15. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Cases Cases Download all files from course homepage and copy them into FOAM_RUN directory. you can see 2 directories into cavity. cavityFirstOrder : the case for testing mySonicLiquidFoam cavitySecondOrder : the case for testing myBuoyantBoussinesqSimpleFoam Milad Setareh Acoustic streaming modeling 2016 15 / 20

  16. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Boundary conditions This figure shows boundary and initial conditions for first and second order equations. Milad Setareh Acoustic streaming modeling 2016 16 / 20

  17. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Property of fluid and simulation parameter Parameter Value Sound Speed 1440 m/s Frequency 10 MHz Pressure Amplitude 20 kPa 998 kg/m 3 Density 89 e -08 m 2 /s Kinematic viscosity Time Step–1 st order 10 − 9 s � 10 − 5 � Simulation time–1 st order O s 4.44 e -07 s 2 /m 2 psi Milad Setareh Acoustic streaming modeling 2016 17 / 20

  18. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Run and results For running cavityFirstOrder, execute the file named AllrunFirstOrderCavity. this file is a script file. Below figure shows pressure field into domain. As you see, acoustic waves propagate from the source and move along vertical direction. p 20 20 10 0 -10 -19.9 Milad Setareh Acoustic streaming modeling 2016 18 / 20

  19. Introduction Mathematical modeling of acoustic streaming Modifications Running the case Run and results For running cavitySecondOrder, execute the file named AllrunSecondOrderCavity. this file is a script file. below figure shows velocity field into domain. as shown, there are two large steady vortex which is created due to propagation of acoustic waves. U Magnitude 0.00158 0.0012 0.0008 0.0004 0 Milad Setareh Acoustic streaming modeling 2016 19 / 20

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend