ic_tgv_type Derived Type

type, public :: ic_tgv_type


Components

Type Visibility Attributes Name Initial
real(kind=rk), public :: x0(3)

Origin points

real(kind=rk), public :: u0(2)

Ref velocity (X and Y)

real(kind=rk), public :: p0

Ref pressure

real(kind=rk), public :: tD

Rate of decay coefficient

real(kind=rk), public :: Re

Reynolds number


Source Code

  type ic_tgv_type
    !> Origin points
    real(kind=rk) :: x0(3)

    !> Ref velocity (X and Y)
    real(kind=rk) :: u0(2)

    !> Ref pressure
    real(kind=rk) :: p0

    !> Rate of decay coefficient
    real(kind=rk) :: tD

    !> Reynolds number
    real(kind=rk) :: Re

  end type ic_tgv_type