资源简介

考虑到三维海浪波运动的高度、形状、频率以及方向随时的变化以及参考相关论文,基于海浪谱使用双叠加模型模拟出三维海浪图像,用matlab程序模拟出来的海浪的最大高度与风级关系符合实际资料,结果比较理想。程序的注释比较详细,对一些重要变量做了标注,便于根据自己的需要修改程序。ps:CSDN上的其他海浪模拟程序都是一样的,自己下了发现并没有什么用处,浪费了不少积分,一气之下自己写了这个海浪模拟程序。供参考。

资源截图

代码片段和文件信息

% Wave Simulation based On Ocean Wave Spectrum
function [xyz] = wave(tv) % input v represents the speed of wind t represents time
                             % output (xyz) represents the point coordinates of the waves
%---------------------------------parameters----------------------------------------------
time = t;
g = 9.8;     % gravitational acceleration constant
m = 5;       % number of segment of theta
n  = 10;     % number of segment of omg
T = 12.5;    % average period of wave
% area of the sea simulated: 1500m * 1500m
x = [0:15:1500];
y = [0:15:1500];
% other parameters
omg_0 = 2 * pi / T;
min_omg = 0.3;
max_omg = 0.8;
d_omg = (max_omg - min_omg) / n;
d_theta = pi / m;
[xy] = meshgrid(xy);
z = zeros(size(x));

%---------------------------------calculating----------------------------------------------
for i = 1:n
    omg_

评论

共有 条评论