-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from JulieSchramm/community_develop
- Modify Externals.cfg to use head of NCAR/UFS_UTILS dtc/develop branch
- Loading branch information
Showing
10 changed files
with
121 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#%Module##################################################### | ||
## Module file for regional_grid | ||
############################################################# | ||
module purge | ||
module load ncarenv/1.3 | ||
module load intel/18.0.5 | ||
module load ncarcompilers/0.5.0 | ||
module load netcdf/4.6.3 | ||
# No hdf5 loaded since netcdf and hdf5 reside together on cheyenne | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#%Module##################################################### | ||
## Module file for regional_grid | ||
############################################################# | ||
module purge | ||
module load ncarenv/1.3 | ||
module load intel/18.0.5 | ||
module load ncarcompilers/0.5.0 | ||
module load impi/2018.4.274 | ||
module load netcdf/4.6.3 | ||
# No hdf5 loaded since netcdf and hdf5 reside together on cheyenne |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#%Module##################################################### | ||
## Module file for regional_grid | ||
############################################################# | ||
module purge | ||
module load ncarenv/1.3 | ||
module load intel/18.0.5 | ||
module load ncarcompilers/0.5.0 | ||
module load impi/2018.4.274 | ||
module load netcdf/4.6.3 | ||
# No hdf5 loaded since netcdf and hdf5 reside together on cheyenne |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
SHELL := bash | ||
|
||
MAKEFLAGS += --warn-undefined-variables | ||
|
||
INC = -I${NETCDF}/include | ||
|
||
LIBS = ${NETCDF}/lib/libnetcdff.a ${NETCDF}/lib/libnetcdf.a \ | ||
${HDF5}/lib/libhdf5_hl.a ${HDF5}/lib/libhdf5.a ${NETCDF}/lib/libsz.a -lz | ||
|
||
FC = ifort | ||
FFLAGS = -g -O2 $(INC) | ||
|
||
EXEC = global_equiv_resol | ||
|
||
.PHONY: all | ||
all : $(EXEC) | ||
|
||
$(EXEC): global_equiv_resol.o $(LIBS) | ||
$(FC) $(FFLAGS) -o $@ $^ | ||
|
||
.SUFFIXES: | ||
.SUFFIXES: .f90 .o | ||
|
||
.f90.o: | ||
$(FC) $(FFLAGS) -c $< | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -f *.o *.mod $(EXEC) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
SHELL := bash | ||
|
||
MAKEFLAGS += --warn-undefined-variables | ||
|
||
INC = -I${NETCDF}/include | ||
|
||
LIBS = ${NETCDF}/lib/libnetcdff.a ${NETCDF}/lib/libnetcdf.a \ | ||
${HDF5}/lib/libhdf5_hl.a ${HDF5}/lib/libhdf5.a ${NETCDF}/lib/libsz.a -lz | ||
|
||
FC = ifort | ||
FFLAGS = -g -O2 $(INC) | ||
|
||
EXEC = mosaic_file | ||
|
||
.PHONY: all | ||
all : $(EXEC) | ||
|
||
$(EXEC): mosaic_file.o $(LIBS) | ||
$(FC) $(FFLAGS) -o $@ $^ | ||
|
||
.SUFFIXES: | ||
.SUFFIXES: .f90 .o | ||
|
||
.f90.o: | ||
$(FC) $(FFLAGS) -c $< | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -f *.o *.mod $(EXEC) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
SHELL := bash | ||
|
||
MAKEFLAGS += --warn-undefined-variables | ||
|
||
INC = -I${NETCDF}/include | ||
|
||
LIBS = ${NETCDF}/lib/libnetcdff.a ${NETCDF}/lib/libnetcdf.a \ | ||
${HDF5}/lib/libhdf5_hl.a ${HDF5}/lib/libhdf5.a ${NETCDF}/lib/libsz.a -lz | ||
|
||
FC = ifort | ||
FFLAGS = -g -O2 $(INC) | ||
|
||
REGIONAL_GRID = regional_grid | ||
|
||
.PHONY: all | ||
all : $(REGIONAL_GRID) | ||
|
||
$(REGIONAL_GRID): pkind.o pietc.o pmat.o pmat4.o pmat5.o psym2.o gen_schmidt.o hgrid_ak.o regional_grid.o $(LIBS) | ||
$(FC) $(FFLAGS) -o $@ $^ | ||
|
||
.SUFFIXES: | ||
.SUFFIXES: .f90 .o | ||
|
||
.f90.o: | ||
$(FC) $(FFLAGS) -c $< | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -f *.o *.mod $(REGIONAL_GRID) |