How can I graph a cylindrical magnetic dipole?

조회 수: 2 (최근 30일)
Leosdan Figueredo Noris
Leosdan Figueredo Noris 2023년 4월 26일
편집: chicken vector 2023년 4월 27일
How can I graph a cylindrical magnetic dipole?

답변 (1개)

chicken vector
chicken vector 2023년 4월 26일
With quiver or quiver3 [Ref].
  댓글 수: 3
chicken vector
chicken vector 2023년 4월 27일
The magnetic field looks okay, you need to plot the cylinder?
chicken vector
chicken vector 2023년 4월 27일
편집: chicken vector 2023년 4월 27일
r = 3;
n = 50;
scale = 5;
[X,Y,Z] = cylinder(r,n);
Z = Z*scale;
figure;
hold on;
surf(X,Y,Z,'FaceColor','r','EdgeColor','None');
fill3(X(2,:),Y(2,:),Z(2,:),'r');
surf(X,Y,Z-scale,'FaceColor','b','EdgeColor','None');
fill3(X(2,:),Y(2,:),Z(1,:) - scale,'b');
text(1.2*r*cos(pi/4),1.2*r*sin(pi/4),scale/2,'N','FontSize',32)
text(1.2*r*cos(pi/4),1.2*r*sin(pi/4),-scale/2,'S','FontSize',32)
hold off;
axis equal;
view([1 1 1])
set(gca,'XColor','None','YColor','None','ZColor','None','Color','None')

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by