Tartalomjegyzék

Script equipotation_lines_of_electric_field

TELJES MATLAB SCRIPT KIEGÉSZÍTŐ FÜGGVÉNYEKKEL

file:   equipotation_lines_of_electric_field.m
author: Peter Polcz <ppolcz@gmail.com>
Created on 2017.07.02. Sunday, 22:12:18
Output:
┌equipotation_lines_of_electric_field
│   - Persistence for `equipotation_lines_of_electric_field` initialized [run ID: 6899, 2017.08.27. Sunday, 03:59:13]
│   - Script `equipotation_lines_of_electric_field` backuped

Equipotetion lines of the electric dipole

Q1 = 1;
r1 = [0;1];

Q2 = -1;
r2 = [0;-1];

F = @(t,r) Q1*(r-r1) / norm(r-r1)^3 + Q2*(r-r2) / norm(r-r2)^3;
Fn = @(t,r) F(t,r) / norm(F(t,r));

V = @(r) Q1 / norm(r-r1) + Q2 / norm(r-r2);

g = 4;
fig = figure; hold on

[x,y] = meshgrid(linspace(-g,g,200));
dx = 0*x;
dy = 0*y;
V_num = 0*x;
for i = 1:numel(x);
    Fi = F(0,[x(i);y(i)]);
    dx(i) = Fi(1);
    dy(i) = Fi(2);
    V_num(i) = V([x(i);y(i)]);
end
% I = 1:15:size(x,1);
% pcz_integral_slopes(x(I,I),y(I,I),dx(I,I),dy(I,I),'Color',0.5*[1 1 1])

V_num = asinh(2*V_num);
MIN = min(V_num(:));
MAX = max(V_num(:));
contour(x,y,V_num,linspace(MIN,MAX,30))

R = 0.3;
t = linspace(0,pi,10);
t = [t -t];
X = R*cos(t) + r1(1);
Y = R*sin(t) + r1(2);

for i = 1:numel(X)
    ri = [X(i);Y(i)];

    tt = 0;
    xx = ri';
    for k = 1:10000
        [t_ode,x_ode] = ode45(Fn,[0,0.1],ri);
        tt = [tt ; t_ode(2:end,:)];
        xx = [xx ; x_ode(2:end,:)];

        last = find(sum((x_ode - repmat(r2',[size(x_ode,1),1])).^2,2) < R^2,1);
        if ~isempty(last)
            break;
        end

        if norm(x_ode(end,:)) > g*sqrt(2), break; end

        ri = x_ode(end,:)';
    end

    % Canonic parametrization of the curve
    s = [ 0 ; cumsum(sum(diff(xx,1).^2,2).^0.5) ];
    p = interp1(s,xx,s(end)/2);
    q = interp1(s,xx,s(end)/2+0.01);
    pcz_arrow(p(1),p(2),q(1),q(2),'Color','blue','HeadLength',4,'HeadWidth',4);
    % quiver(p(1),p(2),q(1)-p(1),q(2)-p(2),'Color','blue')

    xx = interp1(s,xx,0:0.1:s(end));
    plot(xx(:,1),xx(:,2),'b')

    drawnow
end

s = {'' '' '+'};

% plot(r1(1),r1(2),'r.','MarkerSize',60);
% plot(r2(1),r2(2),'b.','MarkerSize',60);

rectangle('Position',[r1(1)-R,r1(2)-R,2*R,2*R],'Curvature',[1,1],...
    'FaceColor','red','EdgeColor','red');
rectangle('Position',[r2(1)-R,r2(2)-R,2*R,2*R],'Curvature',[1,1],...
    'FaceColor','blue','EdgeColor','blue');

text(r1(1),r1(2),[s{sign(Q1)+2} num2str(Q1)],'HorizontalAlignment','center','Color','white','FontSize',14)
text(r2(1),r2(2),[s{sign(Q2)+2} num2str(Q2)],'HorizontalAlignment','center','Color','white','FontSize',14)

axis equal
axis([-g g -g g])

set(gca,'fontsize',16)
pcz_print equip_dipole.png -r200
Output:
│   - File saved to:
equip_dipole.png

Equipotetion lines of the electric multipole

Qp = [ 3 2 1 0.3];
rp = [
    0 -3 -3 3
    1  3 -3 2
    ];

Qn = [ -1 -2 ];
rn = [
     0  2
    -1 -2
    ];

Qs = [Qp Qn];
rs = [rp rn];

n = numel(Qs);

sqrtdist = @(r) sum((r(:,ones(1,n))-rs).^2,1);
F = @(t,r) sum(Qs([1,1],:).*(r(:,ones(1,n))-rs) ./ repmat(sqrtdist(r).^(3/2),[2 1]),2);
Fn = @(t,r) F(t,r) / norm(F(t,r));

V = @(r) sum(Qs ./ sqrtdist(r).^(1/2));

g = 4;
figure, hold on

[x,y] = meshgrid(linspace(-g,g,200));
dx = 0*x;
dy = 0*y;
V_num = 0*x;
for i = 1:numel(x);
    Fi = F(0,[x(i);y(i)]);
    dx(i) = Fi(1);
    dy(i) = Fi(2);
    V_num(i) = V([x(i);y(i)]);
end
% I = 1:15:size(x,1);
% pcz_integral_slopes(x(I,I),y(I,I),dx(I,I),dy(I,I),'Color',0.5*[1 1 1])

V_num = asinh(2*V_num);
MIN = min(V_num(:));
MAX = max(V_num(:));
contour(x,y,V_num,linspace(MIN,MAX,50))

R_divider = 20;
X = [];
Y = [];
for i = 1:numel(Qp)
    R = abs(Qp(i))/R_divider;
    t = linspace(0,2*pi,round(Qp(i)*5)+1);
    X = [ X R*cos(t(2:end)) + rp(1,i) ];
    Y = [ Y R*sin(t(2:end)) + rp(2,i) ];
end

for i = 1:numel(X)
    ri = [X(i);Y(i)];

    tt = 0;
    xx = ri';
    for k = 1:1000
        [t_ode,x_ode] = ode45(@(t,x) Fn(t,x),[0,0.1],ri);
        tt = [tt ; t_ode(2:end,:)];
        xx = [xx ; x_ode(2:end,:)];

        found = 0;
        for j = 1:numel(Qn)
            last = find(sum((x_ode - repmat(rn(:,j)',[size(x_ode,1),1])).^2,2) < 0.01,1);
            if ~isempty(last)
                found = 1;
                break;
            end
        end
        if found, break; end

        % norm(x_ode(end,:))
        if norm(x_ode(end,:)) > g*sqrt(2), break; end

        ri = x_ode(end,:)';
    end

    % Canonic parametrization of the curve
    s = [ 0 ; cumsum(sum(diff(xx,1).^2,2).^0.5) ];
    p = interp1(s,xx,s(end)/2,'spline');
    q = interp1(s,xx,s(end)/2+0.01,'spline');
    pcz_arrow(p(1),p(2),q(1),q(2),'Color','blue','HeadLength',4,'HeadWidth',4);

    plot(xx(:,1),xx(:,2),'b')

    drawnow
end

% s = {'' '' '+'};
% for i = 1:n
%     if Qs(i) > 0
%         color = 'r.';
%     else
%         color = 'b.';
%     end
%     plot(rs(1,i),rs(2,i),color,'MarkerSize',60);
%     text(rs(1,i),rs(2,i),[s{sign(Qs(i))+2} num2str(Qs(i))],...
%         'HorizontalAlignment','center','Color','white','FontSize',8)
% end

s = {'' '' '+'};
for i = 1:n
    if Qs(i) > 0
        color = 'r';
    else
        color = 'b';
    end
    R = abs(Qs(i))/R_divider;
    rectangle('Position',[rs(1,i)-R,rs(2,i)-R,2*R,2*R],'Curvature',[1,1],...
        'FaceColor',color,'EdgeColor',color);
end

axis equal
axis([-g g -g g])

set(gca,'fontsize',16)
pcz_print equip_multipole.png -r200
Output:
│   - File saved to:
equip_multipole.png
Output:
└ 23.0977 [sec]