Radially averaged surface roughness/topograph​y power spectrum (PSD)

버전 1.2.0.0 (3.49 KB) 작성자: Mona Mahboob Kanafi
Calculates radially averaged 2D power spectrum for a surface roughness/topography
다운로드 수: 3.4K
업데이트 날짜: 2016/12/19

라이선스 보기

In surface roughness analysis, one of the powerful tools for roughness characterization is surface roughness power spectrum. If the surface under study has isotropic roughness characteristics, then one can do a radial average on the calculated discrete Fourier transform of the surface topography and obtain its 2D power spectrum, namely, 2D PSD.
With this function you can calculate 2D PSD of a surface topography, which the topography is normally obtained by any 3D profilometry techniques, such as AFM (Atomic Force Microscopy), WLI (White Light Interferometry) and many other optical profilers.
As inputs, you first need to have a matrix (n by m) of your height values (z). Second, you need to know you PixelWidth (spatial resolution) which is obtained easily by dividing you image length to the number of pixels in length, i.e. :

PixelWidth = Lx / m; % in SI units

In order to plot the output:
loglog(q,C)

In order to check 2D FFT of your topography:
imagesc(1+log10(abs(PSD.Hm)))

An extended version of this code, calculates the surface roughness power spectrum only for a portion of the top or bottom part of the surface roughness/topography. This has been uploaded in here:

Radially averaged surface roughness power spectrum (PSD) only on top or bottom part of a topography
http://se.mathworks.com/matlabcentral/fileexchange/60771-radially-averaged-surface-roughness-power-spectrum--psd--only-on-top-or-bottom-part-of-a-topography

To calculate 1-dimensional suface roughness power spectrum, refer to:

1-Dimensional surface roughness power spectrum of a profile or topography
http://se.mathworks.com/matlabcentral/fileexchange/54315-psd-1d-z--pixelwidth--dim-

To generate an artificial randomly rough surface/topography to try these codes, refer to:

Surface generator: artificial randomly rough surfaces
http://se.mathworks.com/matlabcentral/fileexchange/60817-surface-generator--artificial-randomly-rough-surfaces

인용 양식

Mona Mahboob Kanafi (2025). Radially averaged surface roughness/topography power spectrum (PSD) (https://kr.mathworks.com/matlabcentral/fileexchange/54297-radially-averaged-surface-roughness-topography-power-spectrum-psd), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2016a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Fourier Analysis and Filtering에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0.0

Description added. Small bug fixed.

1.1.1.0

Further description added.

1.1.0.0

A small bug in final PSD result's structure fixed.

1.0.0.0

A small bug fixed.