フィルターのクリア

Plotting two surfaces in cylindrical coordinates

1 回表示 (過去 30 日間)
Thanos Pol
Thanos Pol 2022 年 10 月 7 日
コメント済み: Gautam Chettiar 2022 年 10 月 7 日
Hello,
I need to plot the following surfaces given by:
,
where ρ is the radius, z is the height and ϕthe azimuth. are constants with .
The first surface denotes a torus.
  1 件のコメント
Gautam Chettiar
Gautam Chettiar 2022 年 10 月 7 日
I hope i understood your question properly

サインインしてコメントする。

回答 (1 件)

Gautam Chettiar
Gautam Chettiar 2022 年 10 月 7 日
theta = linspace(0, 10 * pi);
z = linspace(0, 5);
[Theta, Z] = meshgrid(theta, z);
% Set the constants
% c >= a
a = 5;
c = 10;
r = sqrt(c ^ 2 - a ^ 2 - z .^ 2) + c;
[x, y, z] = pol2cart(Theta, r, Z);
mesh(x, y, z);
axis equal
  2 件のコメント
Thanos Pol
Thanos Pol 2022 年 10 月 7 日
So to print the second surface, I should do the something like the following?(which produces an error)
r=sqrt(tan(theta)*2*a.*z-z.^2+a^2);
[x, y, z] = pol2cart(Theta, r, Z);
mesh(x, y, z);
Gautam Chettiar
Gautam Chettiar 2022 年 10 月 7 日
I implemented it, but I faced the complex datatype issue, so I used abs() to fix it, if its wrong then please choose appropriate parameters for the same:
clc
clear all
close all
theta = linspace(0, 2 * pi);
z = linspace(0, 5);
[Theta, Z] = meshgrid(theta, z);
% Set the constants
% c >= a
a = 10;
c = 10;
phi0 = 0;
r = abs(sqrt(2 * a * z .* tan(theta - phi0) - z .^ 2 + a ^ 2)) ;
[x, y, z] = pol2cart(Theta, r, Z);
mesh(x, y, z);
axis equal

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by