append an entry to an allocatable array 1d with double precision If the array is too small, reallocate with double size
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(inout), | allocatable | :: | Array(:) | array to append value to |
|
integer, | intent(in) | :: | Position | position the value is appended to |
||
real(kind=rk), | intent(in) | :: | Value | value to append |
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=rk), | private, | allocatable | :: | tempArray(:) | |||
integer, | private | :: | ArraySize | ||||
integer, | private | :: | ierr | ||||
integer, | private | :: | NewSize | ||||
logical, | private | :: | sizeZero |