encode_ascii_dataarray6_rank1_R16P Function

private function encode_ascii_dataarray6_rank1_R16P(u, v, w, x, y, z) result(code)

Arguments

TypeIntentOptionalAttributesName
real(kind=R16P), intent(in) :: u(1:)
real(kind=R16P), intent(in) :: v(1:)
real(kind=R16P), intent(in) :: w(1:)
real(kind=R16P), intent(in) :: x(1:)
real(kind=R16P), intent(in) :: y(1:)
real(kind=R16P), intent(in) :: z(1:)

Return Value character(len=:),allocatable


Calls

proc~~encode_ascii_dataarray6_rank1_r16p~~CallsGraph proc~encode_ascii_dataarray6_rank1_r16p encode_ascii_dataarray6_rank1_R16P interface~str str proc~encode_ascii_dataarray6_rank1_r16p->interface~str proc~str_i8p str_I8P interface~str->proc~str_i8p proc~str_a_r8p str_a_R8P interface~str->proc~str_a_r8p proc~str_r8p str_R8P interface~str->proc~str_r8p proc~str_a_i4p str_a_I4P interface~str->proc~str_a_i4p proc~strf_i2p strf_I2P interface~str->proc~strf_i2p proc~str_r4p str_R4P interface~str->proc~str_r4p proc~str_i1p str_I1P interface~str->proc~str_i1p proc~strf_i4p strf_I4P interface~str->proc~strf_i4p proc~str_a_r4p str_a_R4P interface~str->proc~str_a_r4p proc~strf_r4p strf_R4P interface~str->proc~strf_r4p proc~str_i2p str_I2P interface~str->proc~str_i2p proc~str_a_i2p str_a_I2P interface~str->proc~str_a_i2p proc~strf_i8p strf_I8P interface~str->proc~strf_i8p proc~str_bol str_bol interface~str->proc~str_bol proc~strf_r8p strf_R8P interface~str->proc~strf_r8p proc~str_i4p str_I4P interface~str->proc~str_i4p proc~str_a_i8p str_a_I8P interface~str->proc~str_a_i8p proc~strf_i1p strf_I1P interface~str->proc~strf_i1p proc~str_a_i1p str_a_I1P interface~str->proc~str_a_i1p proc~str_a_r8p->proc~str_r8p proc~compact_real_string compact_real_string proc~str_r8p->proc~compact_real_string proc~str_a_i4p->proc~str_i4p proc~str_r4p->proc~compact_real_string proc~str_a_r4p->proc~str_r4p proc~str_a_i2p->proc~str_i2p proc~str_a_i8p->proc~str_i8p proc~str_a_i1p->proc~str_i1p

Contents


Source Code

  function encode_ascii_dataarray6_rank1_R16P(u, v, w, x, y, z) result(code)
  !< Encode (Base64) a dataarray with 6 components of rank 1 (R16P).
  real(R16P),      intent(in)   :: u(1:) !< U component.
  real(R16P),      intent(in)   :: v(1:) !< V component.
  real(R16P),      intent(in)   :: w(1:) !< W component.
  real(R16P),      intent(in)   :: x(1:) !< X component.
  real(R16P),      intent(in)   :: y(1:) !< Y component.
  real(R16P),      intent(in)   :: z(1:) !< Z component.
  character(len=:), allocatable :: code  !< Encoded base64 dataarray.
  integer(I4P)                  :: n     !< Counter.
  integer(I4P)                  :: l     !< Length
  integer(I4P)                  :: sp    !< String pointer
  integer(I4P)                  :: size_n!< Dimension 1 size
  
  size_n = size(x, dim=1)
  l = DR16P*6 + 5
  sp = 0
  code = repeat(' ',l*size_n)
  do n=1, size_n
    code(sp+1:sp+l) = str(n=u(n))//' '//str(n=v(n))//' '//str(n=w(n))// &
                str(n=x(n))//' '//str(n=y(n))//' '//str(n=z(n))
    sp = sp + l
  enddo
  endfunction encode_ascii_dataarray6_rank1_R16P