Remove all occurences of the flag CONSERVATIVE.

The scheme is fully conservative now.
This commit is contained in:
Grzegorz Kowal 2012-08-01 16:52:07 -03:00
parent abc98f8369
commit c6f046485f
3 changed files with 0 additions and 13 deletions

View File

@ -1580,7 +1580,6 @@ module boundaries
!-------------------------------------------------------------------------------
!
end subroutine boundary_variables
#ifdef CONSERVATIVE
!
!===============================================================================
!
@ -2183,7 +2182,6 @@ module boundaries
!-------------------------------------------------------------------------------
!
end subroutine correct_flux
#endif /* CONSERVTIVE */
!
!===============================================================================
!

View File

@ -54,14 +54,9 @@ SHAPE = N
# EQS - set of equations to solve: HYDRO or MHD
# EOS - equation of state: ADI of ISO for adiabatic or isothermal,
# respectively
# CONSERVATIVE - build fully conservative adaptive mesh scheme, otherwise
# build a bit faster and significantly less memory consuming
# non-conservative scheme; in the case of uniform mesh, both
# schemes should be fully conservative
#
EQS = HYDRO
EOS = ADI
CONSERVATIVE = Y
# source terms:
#

View File

@ -116,12 +116,6 @@ FFLAGS += -D${EQS}
#
FFLAGS += -D${EOS}
# fully conservative scheme
#
ifeq ($(CONSERVATIVE),Y)
FFLAGS += -DCONSERVATIVE
endif
# flux approximation method
#
FFLAGS += -D${FLUX}