Coordinate system changing
Bipolar cylindrical coordinate system on 3-space
What we do?
Find metric, connection and Laplace operator on 3-space in bipolar cylindrical coordinate system:
x = a*sinh(v)/(cosh(v)-cos(u))
y = a*sin(u)/(cosh(v)-cos(u))
Solution:
| Domain[manifold] | manifold - string - a manifold name or a name of a manifold domain. |
| Metric[id→expr] | id - variable - metric identifier,
expr - expression - metric declaration. |
| Connection[id] | id - variable - connection identifier. |
Necessary functions.
Space
First of all we have to describe the space we are working in. The space is 3-dimensional Euclidean (flat) space. To define the space we declare domain, forms, vectors, coframe, frame, flat metric and calculate connection (it is equal to zero of course).
| Out[36]= |  |
| Out[37]= |  |
| Out[38]= |  |
| Out[39]= |  |
| Out[40]= |  |
| Out[41]= |  |
Calculate the connection of the metric:
| Out[42]= |  |
Now the working space is defined completely and we can start to solve the problem.
Bipolar cylindrical
| Out[43]= |  |
Declare 1-form for the domain coframe:
| Out[44]= |  |
Declare vectors for the domain frame:
| Out[45]= |  |
Declare coframe on the domain:
| Out[46]= |  |
Declare frame of the domain:
| Out[47]= |  |
Declare mapping of the domain into
R3:
| Out[48]= |  |
| Out[49]= |  |
Now we can calculate metric induced on the domain by the mapping.
| Out[50]= |  |
| Out[51]= |  |
Out[52]//MatrixForm= |
| |  |
| Out[53]= |  |
To calculate Laplace operator one can use grad and div operators.
| Out[54]= |  |