Interface init_array_real to redirect allocation to n-rank arrays.
|
integer function | init_array_rank1_real (t, n1, tname) |
| This subroutine allocates real-value array of rank 1. More...
|
|
integer function | init_array_rank2_real (t, n1, n2, tname) |
| This subroutine allocates real-value array of rank 2. More...
|
|
integer function | init_array_rank3_real (t, n1, n2, n3, tname) |
| This subroutine allocates real-value array of rank 3. More...
|
|
integer function | init_array_rank4_real (t, n1, n2, n3, n4, tname) |
| This subroutine allocates real-value array of order 4. More...
|
|
integer function | init_array_rank5_real (t, n1, n2, n3, n4, n5, tname) |
| This subroutine allocates real-value array of order 5. More...
|
|
Definition at line 148 of file module_init_memory.f90.
integer function mod_init_memory::init_array_real::init_array_rank1_real |
( |
real, dimension(:), intent(out), allocatable |
t, |
|
|
integer, intent(in) |
n1, |
|
|
character(len=*), intent(in) |
tname |
|
) |
| |
|
private |
- Parameters
-
t | : real-value array to be allocated |
n1 | : size of the array |
tname | : name of the array |
Definition at line 265 of file module_init_memory.f90.
integer function mod_init_memory::init_array_real::init_array_rank2_real |
( |
real, dimension(:,:), intent(out), allocatable |
t, |
|
|
integer, intent(in) |
n1, |
|
|
integer, intent(in) |
n2, |
|
|
character(len=*), intent(in) |
tname |
|
) |
| |
|
private |
- Parameters
-
t | : real-value array to be allocated –> t(n2,n1) |
n1 | : size of the dimension 1 of the array |
n2 | : size of the dimension 2 of the array |
tname | : name of the array |
Definition at line 306 of file module_init_memory.f90.
integer function mod_init_memory::init_array_real::init_array_rank3_real |
( |
real, dimension(:,:,:), intent(out), allocatable |
t, |
|
|
integer, intent(in) |
n1, |
|
|
integer, intent(in) |
n2, |
|
|
integer, intent(in) |
n3, |
|
|
character(len=*), intent(in) |
tname |
|
) |
| |
|
private |
- Parameters
-
t | : real-value array to be allocated –> t(n3,n2,n1) |
n1 | : size of the dimension 1 of the array |
n2 | : size of the dimension 2 of the array |
n3 | : size of the dimension 3 of the array |
tname | : name of the array |
Definition at line 352 of file module_init_memory.f90.
integer function mod_init_memory::init_array_real::init_array_rank4_real |
( |
real, dimension(:,:,:,:), intent(out), allocatable |
t, |
|
|
integer, intent(in) |
n1, |
|
|
integer, intent(in) |
n2, |
|
|
integer, intent(in) |
n3, |
|
|
integer, intent(in) |
n4, |
|
|
character(len=*), intent(in) |
tname |
|
) |
| |
|
private |
- Parameters
-
t | : real-value array to be allocated |
n1 | : size of the dimension 1 of the array |
n2 | : size of the dimension 2 of the array |
n3 | : size of the dimension 3 of the array |
n4 | : size of the dimension 4 of the array |
tname | : name of the array |
Definition at line 403 of file module_init_memory.f90.
integer function mod_init_memory::init_array_real::init_array_rank5_real |
( |
real, dimension(:,:,:,:,:), intent(out), allocatable |
t, |
|
|
integer, intent(in) |
n1, |
|
|
integer, intent(in) |
n2, |
|
|
integer, intent(in) |
n3, |
|
|
integer, intent(in) |
n4, |
|
|
integer, intent(in) |
n5, |
|
|
character(len=*), intent(in) |
tname |
|
) |
| |
|
private |
- Parameters
-
t | : real-value array to be allocated |
n1 | : size of the dimension 1 of the array |
n2 | : size of the dimension 2 of the array |
n3 | : size of the dimension 3 of the array |
n4 | : size of the dimension 4 of the array |
n5 | : size of the dimension 5 of the array |
tname | : name of the array |
Definition at line 459 of file module_init_memory.f90.
The documentation for this interface was generated from the following file: