|
PB3D [2.47]
Ideal linear high-n MHD stability in 3-D
|
Either takes the complex conjugate of a square matrix element A, defined on a 3-D grid, or not. More...
Public Member Functions | |
| complex(dp) function, dimension(d(1), d(2), d(3)) | con_3d (a, c, sym, d) |
| 3-D version | |
| complex(dp) function, dimension(d(1), d(2)) | con_2d (a, c, sym, d) |
| 2-D version | |
| complex(dp) function, dimension(d(1)) | con_1d (a, c, sym, d) |
| 1-D version | |
| complex(dp) function | con_0d (a, c, sym) |
| 0-D version | |
Either takes the complex conjugate of a square matrix element A, defined on a 3-D grid, or not.
This is done depending on whether the indices of the matrix element correspond to the upper (conjugate) or lower (no conjugate) triangular part.
Definition at line 221 of file num_utilities.f90.
| complex(dp) function num_utilities::con::con_0d | ( | complex(dp), intent(in) | a, |
| integer, dimension(2), intent(in) | c, | ||
| logical, intent(in) | sym ) |
0-D version
| [in] | a | input A |
| [in] | c | indices in square matrix |
| [in] | sym | if A is symmetric |
Definition at line 1489 of file num_utilities.f90.
| complex(dp) function, dimension(d(1)) num_utilities::con::con_1d | ( | complex(dp), dimension(:), intent(in) | a, |
| integer, dimension(2), intent(in) | c, | ||
| logical, intent(in) | sym, | ||
| integer, dimension(1), intent(in) | d ) |
1-D version
| [in] | a | input A |
| [in] | c | indices in square matrix |
| [in] | sym | if A is symmetric |
| [in] | d | dimensions of matrix A |
Definition at line 1474 of file num_utilities.f90.
| complex(dp) function, dimension(d(1),d(2)) num_utilities::con::con_2d | ( | complex(dp), dimension(:,:), intent(in) | a, |
| integer, dimension(2), intent(in) | c, | ||
| logical, intent(in) | sym, | ||
| integer, dimension(2), intent(in) | d ) |
2-D version
| [in] | a | input A |
| [in] | c | indices in square matrix |
| [in] | sym | if A is symmetric |
| [in] | d | dimensions of matrix A |
Definition at line 1459 of file num_utilities.f90.
| complex(dp) function, dimension(d(1),d(2),d(3)) num_utilities::con::con_3d | ( | complex(dp), dimension(:,:,:), intent(in) | a, |
| integer, dimension(2), intent(in) | c, | ||
| logical, intent(in) | sym, | ||
| integer, dimension(3), intent(in) | d ) |
3-D version
| [in] | a | input A |
| [in] | c | indices in square matrix |
| [in] | sym | if A is symmetric |
| [in] | d | dimensions of matrix A |
Definition at line 1444 of file num_utilities.f90.