![]() |
Spray simulation post process
Dear All,
may i know how to get spray tip penetration and cone angle and no of droplet distribution from paraview. Thanks in advance Balaji |
Post-processing sprays in paraview gets a little tricky. I don't think there is a built in filter to get what you want; you'll have to write one yourself. Though isn't the cone angle an input parameter from the sprayProperties file?
For future reference, the KinematicCloud class (upon which the sprays are based) have a member function called penetration(scalar prc) that returns the penetration length based on the percentage prc of the current mass in the system. If you add this to the solver you can get the penetration at runtime, even write it to a logfile. |
Dear Marco,
Since i am new to openfoam and paraview, could you please brief me how to write the code in order to get the spray penetration length and the droplet size distribution. thanks Balaji |
Hi Balaji,
For the penetration length, you'll need to create/modify the solver you are using. Look at the tutorial on adding temperature to icoFoam for a quick overview of the process: http://openfoamwiki.net/index.php/Ho...ure_to_icoFoam In the main solver loop, you will need to add something like this: Code:
Info << "Spray penetration (95% mass) is " << spray.penetration(0.95) << endl;(If you are willing to study more C++ and OF, you can make it so that the results are written to a file in 2 column format. As a lot of my textbooks used to say "This is left as an excercise for the reader". Good luck! |
Quote:
Hi Balaji, Were you able to get this to work? I am interested in adding spray penetration length code to the .../multiphase/interFoam/les/nozzleFlow2D tutorial but have no idea how to do it. Even if the spray penetration data is output to the log file that would be okay. Any advice/help? Thanks in advance! Scott |
| All times are GMT -4. The time now is 02:27. |