[Dart-dev] DART/branches Revision: 13162
dart at ucar.edu
dart at ucar.edu
Fri May 3 15:06:16 MDT 2019
thoar at ucar.edu
2019-05-03 15:06:16 -0600 (Fri, 03 May 2019)
117
Removing obsolete build mechanism and updated documentation
to instruct people to use the quickbuild.csh mechanism.
Deleted: DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/Makefile
===================================================================
--- DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/Makefile 2019-05-03 20:02:04 UTC (rev 13161)
+++ DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/Makefile 2019-05-03 21:06:16 UTC (rev 13162)
@@ -1,52 +0,0 @@
-.SUFFIXES: .o .f90
-
-F90 = $(FC)
-LIBS = -L$(NETCDF_DIR)/lib $(AR_FILES)
-INCLUDE_MODULES = -I$(NETCDF_DIR)/include
-
-ifeq ($(FC),lf95)
- FFLAGS = --g
-else
- FFLAGS = -g
-endif
-
-ifeq ($(FC),pgf90)
- FFLAGS += -Mnosave -Ktrap=fp
-endif
-
-ifeq ($(FC),gfortran)
- FFLAGS += -ffree-line-length-none
-endif
-
-ifeq ($(FC),lf95)
- FFLAGS += --nap --nchk --pca --nsav --trace --trap --wide
-endif
-
-ifeq ($(FC),ifort)
- FFLAGS += -fpe0 -ftrapuv
-endif
-
-EXEC = fire_emis
-
-OBJS = attr_types.o \
- fire_utils.o\
- wrf_utils.o\
- glb_utils.o\
- fire_srf_types.o \
- fire_file.o \
- fire_emis.o
-
-##dependencies
-#$(OBJECTS) : makefile
-
-${EXEC} : ${OBJS}
- ${F90} -o $@ ${OBJS} ${LIBS}
-
-.f90.o:
- ${F90} ${FFLAGS} -c ${INCLUDE_MODULES} $<
-
-cleanup:
- rm -f ${OBJS} *.mod
-
-clean:
- rm -f core ${EXEC} ${OBJS} *.mod
Modified: DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/README
===================================================================
--- DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/README 2019-05-03 20:02:04 UTC (rev 13161)
+++ DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/README 2019-05-03 21:06:16 UTC (rev 13162)
@@ -1,5 +1,16 @@
+# DART $Id: $
+
+IMPORTANT: The WRF-Chem build mechanism has been replaced by the DART mkmf mechanism.
+ All that is needed to build fire_emis is to run
+ quickbuild.csh in the RUN_FINN_FIRE/work directory.
+ The environment from the mkmf.template is used, so there is no further
+ customization needed. As per the WRF-Chem/DART developers policy, the
+ executable has a '.exe' extension, which is an addition to the
+ native naming scheme.
+
This code comes from the NCAR/ACOM FINN fire source code directory.
+For more information, see https://www2.acom.ucar.edu/wrf-chem/wrf-chem-tools-community
+
The data files are archived in the INPUT DATA directory for WRF-Chem/DART.
-
\ No newline at end of file
Deleted: DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/make_fire_emis
===================================================================
--- DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/make_fire_emis 2019-05-03 20:02:04 UTC (rev 13161)
+++ DART/branches/mizzi/models/wrf_chem/run_scripts/RUN_FINN_FIRE/make_fire_emis 2019-05-03 21:06:16 UTC (rev 13162)
@@ -1,79 +0,0 @@
-#!/bin/csh
-
-set OP_SYS=`uname -s`
-if( ! $?FC ) then
- if( $OP_SYS == "Linux" ) then
- setenv FC pgf90
- setenv FC ifort
- else
- setenv FC xlf90
- endif
-endif
-
-echo "============================================================================="
-which ${FC} > /dev/null
More information about the Dart-dev
mailing list