|
[Sponsors] |
time average of pressure and skin friction coefficient in the entire domain |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 10, 2017, 02:29 |
time average of pressure and skin friction coefficient in the entire domain
|
#1 |
Member
subhankar
Join Date: May 2016
Posts: 36
Rep Power: 10 |
Hello folks,
I am solving for flow past a cylinder. After running the simulations i now want to get time average pressure and skin friction coefficient for entire domain and averaging has to be done for a certain interval of time. Can anybody tell how to go for it. thanks and regards |
|
April 11, 2017, 05:38 |
|
#2 |
Senior Member
|
Hi,
Based on what the source code documentation says, these functionobjects should give you the average pressure and wallshearstress for the entire domain. You than just need to do the division by the dynamic pressure in ParaView, to get coefficients. Code:
wallShearStress { type wallShearStress; functionObjectLibs ("libutilityFunctionObjects.so"); writeControl writeTime; log off; //optional } fieldAverage { type fieldAverage; functionObjectLibs ( "libfieldFunctionObjects.so" ); writeControl writeTime; resetOnOutput true; //optional timeStart 3000; //optional fields ( p { mean on; prime2Mean off; base time; window 10.0; //optional windowName w1; } wallShearStress { mean on; prime2Mean off; base time; window 10.0; //optional windowName ws1; } ); } Tom |
|
April 11, 2017, 09:46 |
|
#3 |
Member
subhankar
Join Date: May 2016
Posts: 36
Rep Power: 10 |
Thanks a ton Tom
|
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
how to calculate time averaged skin friction coefficient | adilio | FLUENT | 2 | January 28, 2017 06:00 |
Skin Friction Coefficient Chart Problem | rosorio | FLUENT | 2 | January 27, 2017 17:20 |
skin friction and pressure Drag | kr63 | Tecplot | 0 | June 5, 2015 03:57 |
Extracting skin friction and pressure on the wall | yapalparvi | OpenFOAM Running, Solving & CFD | 3 | November 11, 2010 11:01 |
Macro for skin friction and pressure coefficient | DoHander | Fluent UDF and Scheme Programming | 0 | January 9, 2010 11:18 |