InflowBC_t Derived Type

type, public, extends(GenericBC_t) :: InflowBC_t


Components

Type Visibility Attributes Name Initial
logical, public :: constructed = .false.
character(len=LINE_LENGTH), public :: bname
character(len=LINE_LENGTH), public :: BCType
integer, public :: currentEqn = 1
real(kind=RP), public :: AoAPhi
real(kind=RP), public :: AoATheta
real(kind=RP), public :: v
real(kind=RP), public :: rho
real(kind=RP), public :: p
real(kind=RP), public :: TurbIntensity
real(kind=RP), public :: eddy_theta
real(kind=RP), public :: AoAPhi
real(kind=RP), public :: AoATheta
real(kind=RP), public :: v
logical, public :: isLayered = .false.
logical, public :: isXLimited = .false.
logical, public :: isYLimited = .false.
logical, public :: isZLimited = .false.
real(kind=RP), public :: xLim
real(kind=RP), public :: yLim
real(kind=RP), public :: zLim
real(kind=RP), public :: phase1Vel
real(kind=RP), public :: phase2Vel
real(kind=RP), public :: rho

Constructor

public interface InflowBC_t

  • private function ConstructInflowBC(bname)

    Arguments

    Type IntentOptional Attributes Name
    character(len=*), intent(in) :: bname

    Return Value type(InflowBC_t)


Type-Bound Procedures

procedure, public :: GetPeriodicPair => GenericBC_GetPeriodicPair

  • private subroutine GenericBC_GetPeriodicPair(self, bname)

    Arguments

    Type IntentOptional Attributes Name
    class(GenericBC_t), intent(in) :: self
    character(len=*), intent(out) :: bname

procedure, public :: FlowGradVars => GenericBC_FlowGradVars

  • private subroutine GenericBC_FlowGradVars(self, x, t, nHat, Q, U, GetGradients)

    Arguments

    Type IntentOptional Attributes Name
    class(GenericBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(in) :: Q(NCONS)
    real(kind=RP), intent(inout) :: U(NGRAD)
    procedure(GetGradientValues_f) :: GetGradients

procedure, public :: SlrState => GenericBC_SlrState

  • private subroutine GenericBC_SlrState(self, x, t, nHat, Q)

    Arguments

    Type IntentOptional Attributes Name
    class(GenericBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(inout) :: Q(NCONS)

procedure, public :: SlrGradVars => GenericBC_SlrGradVars

  • private subroutine GenericBC_SlrGradVars(self, x, t, nHat, Q, U, GetGradients)

    Arguments

    Type IntentOptional Attributes Name
    class(GenericBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(in) :: Q(NCONS)
    real(kind=RP), intent(inout) :: U(NGRAD)
    procedure(GetGradientValues_f) :: GetGradients

procedure, public :: SlrNeumann => GenericBC_SlrNeumann

  • private subroutine GenericBC_SlrNeumann(self, x, t, nHat, Q, U_x, U_y, U_z, flux)

    Arguments

    Type IntentOptional Attributes Name
    class(GenericBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(in) :: Q(NCONS)
    real(kind=RP), intent(in) :: U_x(NGRAD)
    real(kind=RP), intent(in) :: U_y(NGRAD)
    real(kind=RP), intent(in) :: U_z(NGRAD)
    real(kind=RP), intent(inout) :: flux(NCONS)

procedure, public :: StateForEqn

  • private subroutine StateForEqn(self, nEqn, x, t, nHat, Q)

    Arguments

    Type IntentOptional Attributes Name
    class(GenericBC_t), intent(in) :: self
    integer, intent(in) :: nEqn
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(inout) :: Q(nEqn)

procedure, public :: GradVarsForEqn

  • private subroutine GradVarsForEqn(self, nEqn, nGradEqn, x, t, nHat, Q, U, GetGradients)

    Arguments

    Type IntentOptional Attributes Name
    class(GenericBC_t), intent(in) :: self
    integer, intent(in) :: nEqn
    integer, intent(in) :: nGradEqn
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(in) :: Q(nEqn)
    real(kind=RP), intent(inout) :: U(nGradEqn)
    procedure(GetGradientValues_f) :: GetGradients

procedure, public :: NeumannForEqn

  • private subroutine NeumannForEqn(self, nEqn, nGradEqn, x, t, nHat, Q, U_x, U_y, U_z, flux)

    Arguments

    Type IntentOptional Attributes Name
    class(GenericBC_t), intent(in) :: self
    integer, intent(in) :: nEqn
    integer, intent(in) :: nGradEqn
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(in) :: Q(nEqn)
    real(kind=RP), intent(in) :: U_x(nGradEqn)
    real(kind=RP), intent(in) :: U_y(nGradEqn)
    real(kind=RP), intent(in) :: U_z(nGradEqn)
    real(kind=RP), intent(inout) :: flux(nEqn)

procedure, public :: Destruct => InflowBC_Destruct

  • private subroutine InflowBC_Destruct(self)

    Arguments

    Type IntentOptional Attributes Name
    class(InflowBC_t) :: self

procedure, public :: Describe => InflowBC_Describe

  • private subroutine InflowBC_Describe(self)

    Arguments

    Type IntentOptional Attributes Name
    class(InflowBC_t), intent(in) :: self

procedure, public :: FlowState => InflowBC_FlowState

  • private subroutine InflowBC_FlowState(self, x, t, nHat, Q)

    Arguments

    Type IntentOptional Attributes Name
    class(InflowBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(inout) :: Q(NCONS)

procedure, public :: FlowNeumann => InflowBC_FlowNeumann

  • private subroutine InflowBC_FlowNeumann(self, x, t, nHat, Q, U_x, U_y, U_z, flux)

    Arguments

    Type IntentOptional Attributes Name
    class(InflowBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(in) :: Q(NCONS)
    real(kind=RP), intent(in) :: U_x(NCONS)
    real(kind=RP), intent(in) :: U_y(NCONS)
    real(kind=RP), intent(in) :: U_z(NCONS)
    real(kind=RP), intent(inout) :: flux(NCONS)

procedure, public :: PhaseFieldState => InflowBC_PhaseFieldState

  • private subroutine InflowBC_PhaseFieldState(self, x, t, nHat, Q)

    Arguments

    Type IntentOptional Attributes Name
    class(InflowBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(inout) :: Q(NCOMP)

procedure, public :: PhaseFieldNeumann => InflowBC_PhaseFieldNeumann

  • private subroutine InflowBC_PhaseFieldNeumann(self, x, t, nHat, Q, U_x, U_y, U_z, flux)

    Arguments

    Type IntentOptional Attributes Name
    class(InflowBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(in) :: Q(NCOMP)
    real(kind=RP), intent(in) :: U_x(NCOMP)
    real(kind=RP), intent(in) :: U_y(NCOMP)
    real(kind=RP), intent(in) :: U_z(NCOMP)
    real(kind=RP), intent(inout) :: flux(NCOMP)

procedure, public :: ChemPotState => InflowBC_ChemPotState

  • private subroutine InflowBC_ChemPotState(self, x, t, nHat, Q)

    Arguments

    Type IntentOptional Attributes Name
    class(InflowBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(inout) :: Q(NCOMP)

procedure, public :: ChemPotNeumann => InflowBC_ChemPotNeumann

  • private subroutine InflowBC_ChemPotNeumann(self, x, t, nHat, Q, U_x, U_y, U_z, flux)

    Arguments

    Type IntentOptional Attributes Name
    class(InflowBC_t), intent(in) :: self
    real(kind=RP), intent(in) :: x(NDIM)
    real(kind=RP), intent(in) :: t
    real(kind=RP), intent(in) :: nHat(NDIM)
    real(kind=RP), intent(in) :: Q(NCOMP)
    real(kind=RP), intent(in) :: U_x(NCOMP)
    real(kind=RP), intent(in) :: U_y(NCOMP)
    real(kind=RP), intent(in) :: U_z(NCOMP)
    real(kind=RP), intent(inout) :: flux(NCOMP)