DATA_FILM Derived Type

type, public :: DATA_FILM


Inherits

type~~data_film~~InheritsGraph type~data_film DATA_FILM FLUID FLUID type~data_film->FLUID fl

Contents

Source Code


Components

TypeVisibility AttributesNameInitial
real(kind=R8), public :: h_0

: ambient pressure

real(kind=R8), public :: h_g

: cavitation pressure

real(kind=R8), public :: V_x

: surface velocity along

real(kind=R8), public :: V_y

: surface velocity along

type(FLUID), public :: fl

fluid rheological properties

integer(kind=I4), public :: pb_type

problem type, e.g. HD (hydrodynamic)


Source Code

type DATA_FILM
   real(kind=R8)    :: h_0       !! *\(h_0\) : ambient pressure*
   real(kind=R8)    :: h_g       !! *\(h_g\) : cavitation pressure*
   real(kind=R8)    :: V_x       !! *\(V_x\) : surface velocity along \(x\)*
   real(kind=R8)    :: V_y       !! *\(V_y\) : surface velocity along \(y\)*
   type(FLUID)      :: fl        !! *fluid rheological properties*
   integer(kind=I4) :: pb_type   !! *problem type, e.g. HD (hydrodynamic)*
endtype DATA_FILM