Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! !
! FILE: SetTempBCs.F90 !
! CONTAINS: subroutine SetTempBCs !
! !
! PURPOSE: Initialization routine. Calcuates the !
! temperature boundary conditions at the plates !
! !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
subroutine SetTempBCs
use param
implicit none
integer :: ic,jc
do ic=1,nzm
do jc=1,nym
temptp(jc,ic)=0.d0
tempbp(jc,ic)=1.d0
enddo
enddo
return
end
!