Email: [email protected]

This Portal for internal use only!

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • IBM
  • Visual Paradigm
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Categories
  • Microsoft
    • Microsoft Apps
    • Office
    • Operating System
    • VLS
    • Developer Tools
    • Productivity Tools
    • Database
    • AI + Machine Learning
    • Middleware System
    • Learning Services
    • Analytics
    • Networking
    • Compute
    • Security
    • Internet Of Things
  • Adobe
  • Matlab
  • Google
  • Visual Paradigm
  • WordPress
    • Plugin WP
    • Themes WP
  • Opensource
  • Others
More Categories Less Categories
  • Get Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • My Account
    • Download
    • Cart
    • Checkout
    • Login
  • About Us
    • Contact
    • Forum
    • Frequently Questions
    • Privacy Policy
  • Forum
    • News
      • Category
      • News Tag

iconTicket Service Desk

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • IBM
  • Visual Paradigm
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Menu
  • Home
    • Download Application Package Repository Telkom University
    • Application Package Repository Telkom University
    • Download Official License Telkom University
    • Download Installer Application Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • All Pack
    • Microsoft
      • Operating System
      • Productivity Tools
      • Developer Tools
      • Database
      • AI + Machine Learning
      • Middleware System
      • Networking
      • Compute
      • Security
      • Analytics
      • Internet Of Things
      • Learning Services
    • Microsoft Apps
      • VLS
    • Adobe
    • Matlab
    • WordPress
      • Themes WP
      • Plugin WP
    • Google
    • Opensource
    • Others
  • My account
    • Download
    • Get Pack
    • Cart
    • Checkout
  • News
    • Category
    • News Tag
  • Forum
  • About Us
    • Privacy Policy
    • Frequently Questions
    • Contact
Home/Matlab/Why does my ISO roads doesn´t fit to the reference values ?

Why does my ISO roads doesn´t fit to the reference values ?

PuTI / 2025-01-18
Why does my ISO roads doesn´t fit to the reference values ?
Matlab News

Hello everybody !
I was generating random road profiles according to the ISO 8608 standard with the help of the following article:
http://link.springer.com/article/10.1007%2Fs12544-013-0127-8/fulltext.html
To prove if my roads have the given PSD-Value (for example Gd_0 = 16 * (10^-6) Road A), i used the 1D PSD function and generated a plot with PSD road displacement and ISO PSD over the spatial frequency.
1D PSD calculation for surface roughness profiles
My problem is that the PSD values does not fit together. If i´m generating a road with 16 * (10^-6), the graph should be in the middle of the reference ISO line.

Has anyone the same problem and can help ?
Many thanks !

Here my code:
clear all;close all;
% spatial frequency (n0) cycles per meter
Omega0 = 0.1;
% psd ISO (used for formula 8)
Gd_0 = 16 * (10^-6);
% waveviness
w = 2;
% road length
L = 250;

%delta n
N = 1000;
Omega_L = 0.004;
Omega_U = 4;

delta_n = 1/L; % delta_n = (Omega_U – Omega_L)/(N-1);

% spatial frequency band
Omega = Omega_L:delta_n:Omega_U;

%PSD of road
Gd = Gd_0.*(Omega./Omega0).^(-w);

% calculate amplitude using formula(8)
Amp = sqrt(2*Gd*delta_n);

% calculate amplitude using simplified formula(9)
% k = 3;
% Amp = sqrt(delta_n) * (2^k) * (10^-3) * (Omega0./Omega);

%random phases
Psi = 2*pi*rand(size(Omega));

% x abicsa from 0 to L
x = 0:0.25:250;
% road sinal
h= zeros(size(x));

for i=1:length(x)
h(i) = sum( Amp.*cos(2*pi*Omega*x(i) + Psi) );
end

plot(x, h*1000 );
xlabel(‘Distance m’);
ylabel(‘Elevation (mm)’);

grid on

%————————————————————————-

B = L/N;

[q , C] = psd_1D(h, B, ‘x’) % B is Sampling Interval (m)
lambda = (2*pi) ./ q; % wavelengths
f = q / (2*pi); % spatial frequency
PSD = 2 * pi * C; % power spectrum

figure(2)
loglog(f,PSD,Omega,Gd)
legend(‘PSD ISO Road’, ‘Reference PSD’)
xlabel(‘spatial frequency [cycle/m]’)
ylabel(‘PSD [m^3]’)
grid onHello everybody !
I was generating random road profiles according to the ISO 8608 standard with the help of the following article:
http://link.springer.com/article/10.1007%2Fs12544-013-0127-8/fulltext.html
To prove if my roads have the given PSD-Value (for example Gd_0 = 16 * (10^-6) Road A), i used the 1D PSD function and generated a plot with PSD road displacement and ISO PSD over the spatial frequency.
1D PSD calculation for surface roughness profiles
My problem is that the PSD values does not fit together. If i´m generating a road with 16 * (10^-6), the graph should be in the middle of the reference ISO line.

Has anyone the same problem and can help ?
Many thanks !

Here my code:
clear all;close all;
% spatial frequency (n0) cycles per meter
Omega0 = 0.1;
% psd ISO (used for formula 8)
Gd_0 = 16 * (10^-6);
% waveviness
w = 2;
% road length
L = 250;

%delta n
N = 1000;
Omega_L = 0.004;
Omega_U = 4;

delta_n = 1/L; % delta_n = (Omega_U – Omega_L)/(N-1);

% spatial frequency band
Omega = Omega_L:delta_n:Omega_U;

%PSD of road
Gd = Gd_0.*(Omega./Omega0).^(-w);

% calculate amplitude using formula(8)
Amp = sqrt(2*Gd*delta_n);

% calculate amplitude using simplified formula(9)
% k = 3;
% Amp = sqrt(delta_n) * (2^k) * (10^-3) * (Omega0./Omega);

%random phases
Psi = 2*pi*rand(size(Omega));

% x abicsa from 0 to L
x = 0:0.25:250;
% road sinal
h= zeros(size(x));

for i=1:length(x)
h(i) = sum( Amp.*cos(2*pi*Omega*x(i) + Psi) );
end

plot(x, h*1000 );
xlabel(‘Distance m’);
ylabel(‘Elevation (mm)’);

grid on

%————————————————————————-

B = L/N;

[q , C] = psd_1D(h, B, ‘x’) % B is Sampling Interval (m)
lambda = (2*pi) ./ q; % wavelengths
f = q / (2*pi); % spatial frequency
PSD = 2 * pi * C; % power spectrum

figure(2)
loglog(f,PSD,Omega,Gd)
legend(‘PSD ISO Road’, ‘Reference PSD’)
xlabel(‘spatial frequency [cycle/m]’)
ylabel(‘PSD [m^3]’)
grid on Hello everybody !
I was generating random road profiles according to the ISO 8608 standard with the help of the following article:
http://link.springer.com/article/10.1007%2Fs12544-013-0127-8/fulltext.html
To prove if my roads have the given PSD-Value (for example Gd_0 = 16 * (10^-6) Road A), i used the 1D PSD function and generated a plot with PSD road displacement and ISO PSD over the spatial frequency.
1D PSD calculation for surface roughness profiles
My problem is that the PSD values does not fit together. If i´m generating a road with 16 * (10^-6), the graph should be in the middle of the reference ISO line.

Has anyone the same problem and can help ?
Many thanks !

Here my code:
clear all;close all;
% spatial frequency (n0) cycles per meter
Omega0 = 0.1;
% psd ISO (used for formula 8)
Gd_0 = 16 * (10^-6);
% waveviness
w = 2;
% road length
L = 250;

%delta n
N = 1000;
Omega_L = 0.004;
Omega_U = 4;

delta_n = 1/L; % delta_n = (Omega_U – Omega_L)/(N-1);

% spatial frequency band
Omega = Omega_L:delta_n:Omega_U;

%PSD of road
Gd = Gd_0.*(Omega./Omega0).^(-w);

% calculate amplitude using formula(8)
Amp = sqrt(2*Gd*delta_n);

% calculate amplitude using simplified formula(9)
% k = 3;
% Amp = sqrt(delta_n) * (2^k) * (10^-3) * (Omega0./Omega);

%random phases
Psi = 2*pi*rand(size(Omega));

% x abicsa from 0 to L
x = 0:0.25:250;
% road sinal
h= zeros(size(x));

for i=1:length(x)
h(i) = sum( Amp.*cos(2*pi*Omega*x(i) + Psi) );
end

plot(x, h*1000 );
xlabel(‘Distance m’);
ylabel(‘Elevation (mm)’);

grid on

%————————————————————————-

B = L/N;

[q , C] = psd_1D(h, B, ‘x’) % B is Sampling Interval (m)
lambda = (2*pi) ./ q; % wavelengths
f = q / (2*pi); % spatial frequency
PSD = 2 * pi * C; % power spectrum

figure(2)
loglog(f,PSD,Omega,Gd)
legend(‘PSD ISO Road’, ‘Reference PSD’)
xlabel(‘spatial frequency [cycle/m]’)
ylabel(‘PSD [m^3]’)
grid on iso road 8608, random, road, psd, matlab, 8608, 1d psd MATLAB Answers — New Questions

​

Tags: matlab

Share this!

Related posts

Generate ST code from a look-up table with CONSTANT attribute
2025-05-22

Generate ST code from a look-up table with CONSTANT attribute

“no healthy upstream” error when trying to access My Account
2025-05-22

“no healthy upstream” error when trying to access My Account

MATLAB Answers is provisionally back?
2025-05-21

MATLAB Answers is provisionally back?

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

Categories

  • Matlab
  • Microsoft
  • News
  • Other
Application Package Repository Telkom University

Tags

matlab microsoft opensources
Application Package Download License

Application Package Download License

Adobe
Google for Education
IBM
Matlab
Microsoft
Wordpress
Visual Paradigm
Opensource

Sign Up For Newsletters

Be the First to Know. Sign up for newsletter today

Application Package Repository Telkom University

Portal Application Package Repository Telkom University, for internal use only, empower civitas academica in study and research.

Information

  • Telkom University
  • About Us
  • Contact
  • Forum Discussion
  • FAQ
  • Helpdesk Ticket

Contact Us

  • Ask: Any question please read FAQ
  • Mail: [email protected]
  • Call: +62 823-1994-9941
  • WA: +62 823-1994-9943
  • Site: Gedung Panambulai. Jl. Telekomunikasi

Copyright © Telkom University. All Rights Reserved. ch

  • FAQ
  • Privacy Policy
  • Term

This Application Package for internal Telkom University only (students and employee). Chiers... Dismiss