【物理应用】速度场找到漩涡
程序员文章站
2024-01-27 12:21:46
...
% Demo script for IDvortex
% Prepare:
clc; clear; close all; tic;
MatLabSettings
% Load sample data:
load('sampleXYUV.mat')
% x,y coordinate vectors (mm) and Vx and Vy fields (m/s)
% Call the IDvortex scripts
vortex=IDvortex(x,y,U,V);
% Plot the U field with the found vortex
figure; surface('ZData',U,'YData',y,'XData',x,'CData',U,'FaceColor','interp','EdgeColor','none'); title('U')
hold on; plot3(vortex(:,1),vortex(:,2),9e9,'g+','MarkerSize',20)
% Plot the V field with the found vortex
figure; surface('ZData',V,'YData',y,'XData',x,'CData',V,'FaceColor','interp','EdgeColor','none'); title('V')
hold on; plot3(vortex(:,1),vortex(:,2),9e9,'g+','MarkerSize',20)
toc
完整代码添加QQ1575304183
往期回顾>>>>>>
【物理应用】电荷电场线和电势matlab源码
【物理应用】衍射光栅教学版matlab源码
【物理应用】 计算晶体结构的x射线衍射图谱matlab源码
【物理实验】模拟斜抛运动matlab源码含GUI界面
上一篇: Yii使用CLinkPager分页实例详解_PHP
下一篇: 如何对Less进行安装与使用
推荐阅读