Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions Build/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ setup_win:

# Files which have OpenMP compiler directives are compiled using the FOPENMPFLAG and can be enabled/disabled on a per-file basis.

ccib.o: FFLAGS += $(FOPENMPFLAGS)
divg.o: FFLAGS += $(FOPENMPFLAGS)
func.o: FFLAGS += $(FOPENMPFLAGS)
mass.o: FFLAGS += $(FOPENMPFLAGS)
Expand All @@ -164,6 +165,7 @@ radi.o: FFLAGS += $(FOPENMPFLAGS)
wall.o: FFLAGS += $(FOPENMPFLAGS)
main.o: FFLAGS += $(FOPENMPFLAGS)

ccib.obj: FFLAGS += $(FOPENMPFLAGS)
divg.obj: FFLAGS += $(FOPENMPFLAGS)
func.obj: FFLAGS += $(FOPENMPFLAGS)
mass.obj: FFLAGS += $(FOPENMPFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion Source/mass.f90
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ SUBROUTINE DENSITY(T,DT,NM)

!$OMP PARALLEL

!$OMP DO PRIVATE(IW,WC,BC)
!$OMP DO PRIVATE(IW,WC,EWC,BC)
WALL_LOOP_2: DO IW=1,N_EXTERNAL_WALL_CELLS
WC => WALL(IW)
EWC => EXTERNAL_WALL(IW)
Expand Down