欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【物理应用】速度场找到漩涡

程序员文章站 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界面

相关标签: matlab 物理应用