|
[Sponsors] |
Find/Calculate displacement thickness from a velocity profile |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 27, 2023, 13:35 |
Find/Calculate displacement thickness from a velocity profile
|
#1 |
New Member
Manos Dimitriadis
Join Date: May 2023
Posts: 20
Rep Power: 3 |
Hi!
This post is part of a question that I have posted here but remained unanswered (Extracting flow parameters from measured velocity profiles in wind tunnel) I have some data simulating different types of ABL in a wind tunnel. The data are basically different velocities (u) at different height levels of the wind tunnel (y), with also known parameters to have the kinematic viscosity (v) and von Karman constant (κ). How I could find the displacement thickness δ* for every velocity profile? Thank you! |
|
July 27, 2023, 14:13 |
|
#2 |
Senior Member
Lucky
Join Date: Apr 2011
Location: Orlando, FL USA
Posts: 5,761
Rep Power: 66 |
You just numerically integrate the formula you claim you know.
If it helps, make plots of U vs y and U^2 vs y. Find the areas under each curve. The area under U vs y is related to displacement thickness and U^2 is related to momentum thickness. Also you can just bump your own thread next time. |
|
July 27, 2023, 14:19 |
|
#3 |
New Member
Manos Dimitriadis
Join Date: May 2023
Posts: 20
Rep Power: 3 |
So by using the trapezoidal rule I could compute delta star by that?
delta_y = y(2:end) - y(1:end-1); % Height increment u_mid = (u(1:end-1) + u(2:end)) / 2; % Midpoint velocities delta_star = sum((1 - u_mid / U_inf) .* delta_z); % Displacement thickness |
|
Tags |
boundary layer, displacement thickness, simulation |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
why RANS velocity profile seems to be developing over time | atul1018 | Main CFD Forum | 5 | July 28, 2022 09:29 |
[snappyHexMesh] determining displacement for added points | CFDnewbie147 | OpenFOAM Meshing & Mesh Conversion | 1 | October 22, 2013 10:53 |
Velocity profile boundary condition | Tuca | FLOW-3D | 1 | April 23, 2013 13:02 |
How to apply an outlet velocity profile to another inlet? | siw | FLUENT | 4 | April 10, 2013 12:19 |
Logarithmic velocity profile | cfdworker | Fluent UDF and Scheme Programming | 0 | April 23, 2009 20:09 |