Can two conformal mappings be combined?
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1682711/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1682716/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1682721/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1682726/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1682731/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1682736/image.png)
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?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1682726/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1682746/image.jpeg)
0 comentarios
Respuesta aceptada
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!
Más respuestas (0)
Ver también
Categorías
Más información sobre Blue en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!