资源简介

海浪谱matlab的仿真程序,在不同风速下对PM海浪谱进行仿真。

资源截图

代码片段和文件信息

clc
clear;
y=[];
g=9.8;
A=0.0081*g^2;

U1=15;
x = 0.1:0.01:2;
j=length(x);
B1=0.74*((g/U1)^4);
U2=12;
B2=0.74*((g/U2)^4);
U3=10;
B3=0.74*((g/U3)^4);
for i=1:j
y1(i)=(A/x(:i)^5)*exp(-B1/x(:i)^4);
y2(i)=(A/x(:i)^5)*exp(-B2/x(:i)^4);
y3(i)=(A/x(:i)^5)*exp(-B3/x(:i)^4);
end

plot(xy1xy2xy3);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         321  2013-12-30 10:42  PM谱的matlab仿真\Untitled.m
     文件        8418  2013-12-30 10:44  PM谱的matlab仿真\untitled.fig
     目录           0  2014-03-05 15:05  PM谱的matlab仿真\

评论

共有 条评论