Adiabatic/Isothermal wall boundary condition
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | face | |||
type(boundarytype), | intent(in) | :: | bc | Name of the face at which boundary condition is called |
||
type(extent), | intent(in) | :: | dims |
subroutine wall(face, bc, dims)
!< Adiabatic/Isothermal wall boundary condition
implicit none
type(extent), intent(in) :: dims
character(len=*), intent(in) :: face
type(boundarytype), intent(in) :: bc
!< Name of the face at which boundary condition is called
call copy3(pressure, "symm", face, bc, dims)
call temp_based_density(bc%fixed_wall_temperature, face, bc, dims)
call no_slip(face, bc, dims)
end subroutine wall