CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT

LES energy spectrum

Register Blogs Community New Posts Updated Threads Search

 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old   November 2, 2022, 00:52
Default LES energy spectrum
  #1
New Member
 
HOJUN YU
Join Date: Jul 2020
Posts: 24
Rep Power: 5
hobing is on a distinguished road
hi all,
how can i do plot to energy spectrum

"""
TKE = 0.5 * (RMS u^2 + RMS v^2 RMS w^2) + SGS K

SGS K = Nu_sgs /rho *L_sgs
(rho = global density,
Nu_sgs = dynamic viscosity in subgrid scale )
L_sgs = min (kappa*d*C_s*delta)
(kappa = Von Karman const.
d = wall distance
C_s = Smagorinsky const.
delta = filter size = (cell volume ^(1/3))
"""

This is what I found. But I heard that CFF(custum field function) can calculate TKE in fluent.
It's difficult. Is there a way?

I also thought about UDFs

"""
#include "udf.h"

DEFINE_ON_DEMAND(cal_k_subgrid)
{
Domain *d; /* declare domain pointer since it is not passed as an
argument to the DEFINE macro */
Thread *t;
cell_t c;

d = Get_Domain(1);

#if !RP_HOST /*Serial or on nodes*/

thread_loop_c(t,d)
{
begin_c_loop(c,t)
{
real L_sgs = Compute_L_sgs(C_VOLUME(c,t),C_WALL_DIST(c,t),C_Cen troid_Y(c,t));
C_UDMI(c,t,0) = SQR(C_MU_T(c,t)/(L_sgs*C_R(c,t) + SMALL));
}
end_c_loop(c,t)
}
#endif /*!RP_HOST*/
}
"""

It's a UDF code I found somewhere ("https://www.eureka.im/900.html"), but an error occurs in the part defined by 'Compute_L_sgs'
Can you tell me about that function?


I am trying to post-process FFT after calculating TKE with UDF or CFF.
please suggest a way
please..
hobing is offline   Reply With Quote

 


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
Energy Spectrum for a 3D turbulent Flow juliom Main CFD Forum 11 October 25, 2021 16:22
energy spectra from LES simulations kumar OpenFOAM Post-Processing 2 February 23, 2016 12:25
Energy Spectrum helly Main CFD Forum 4 January 7, 2016 21:57
ATTENTION! Reliability problems in CFX 5.7 Joseph CFX 14 April 20, 2010 15:45
Energy Spectrum Emad Khalifa Main CFD Forum 3 June 30, 2003 16:03


All times are GMT -4. The time now is 12:13.