Can two conformal mappings be combined?

22 visualizaciones (últimos 30 días)
Shengfan Bi
Shengfan Bi el 30 de Abr. de 2024
Comentada: Shengfan Bi hace alrededor de 18 horas
A conformal mapping function within a complex domain maps the unit circle in the ζ-plane to the -plane. Similarly, there is another function . Combining and , we can obtain .
Can this function also satisfy conformal mapping, and are there any applicable conditions for it to do so?
The following figure is an attempt I made. If feasible, can any smooth and simply connected region be combined with for conformal mapping?

Respuesta aceptada

Jaskirat
Jaskirat el 24 de En. de 2025 a las 6:42
Editada: Jaskirat el 24 de En. de 2025 a las 10:24
Hello!
I understand that the objective in question is to check whether given functions are conformal and if the conformal mapping can be done on MATLAB.
A function is conformal if it is holomorphic, that is, if it is complex differentiable at each point in its domain. This can be checked by using the "Cauchy-Riemann" equations on the partial derivatives of the function. The code for this is given below.
syms x y real
u = % define the real part of the function
v = % define the imaginary part of the function
% Compute partial derivatives
ux = diff(u, x);
uy = diff(u, y);
vx = diff(v, x);
vy = diff(v, y);
% Check Cauchy-Riemann equations
isHolomorphic = simplify(ux - vy) == 0 && simplify(uy + vx) == 0;
if isHolomorphic
disp('The function is holomorphic.');
else
disp('The function is not holomorphic.');
end
Creating a conformal mapping in MATLAB requires creating the function for mapping over the shared domain and using the “subplot” function to plot the mapping.
An alternative approach involves utilizing an external package known as "Chebfun," which offers a suite of tools for function manipulation, including conformal mapping capabilities. This package can be conveniently installed via MATLAB's "Add-On Explorer."
Refer the below file exchange link for more information on the package.
Hope this helps!
  1 comentario
Shengfan Bi
Shengfan Bi hace alrededor de 7 horas
Thank you for your detailed response. Using the concept of holomorphicity to determine if a function is conformal is an excellent approach, and the plugin works very well.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Blue en Help Center y File Exchange.

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by