Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Source/wall.f90
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MODULE WALL_ROUTINES
PRIVATE

REAL(EB), POINTER, DIMENSION(:,:) :: PBAR_P
REAL(EB), POINTER, DIMENSION(:,:,:) :: RHOP,HP,UU,VV,WW
REAL(EB), POINTER, DIMENSION(:,:,:) :: RHOP,UU,VV,WW
REAL(EB), POINTER, DIMENSION(:,:,:,:) :: ZZP

PUBLIC WALL_BC,TGA_ANALYSIS,HT3D_TEMPERATURE_EXCHANGE
Expand Down Expand Up @@ -57,15 +57,13 @@ SUBROUTINE WALL_BC(T,DT,NM)
RHOP => RHOS
ZZP => ZZS
PBAR_P => PBAR_S
HP => HS
ELSE
UU => U
VV => V
WW => W
RHOP => RHO
ZZP => ZZ
PBAR_P => PBAR
HP => H
ENDIF

! For thermally-thick boundary conditions, set the flag, CALL_HT_1D, to call the subroutine SOLID_HEAT_TRANSFER.
Expand Down
Loading