Skip to content

Commit

Permalink
WRFV3.9.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Mandel committed Dec 5, 2017
1 parent bec0d92 commit 07a6bf2
Show file tree
Hide file tree
Showing 102 changed files with 40,022 additions and 3 deletions.
14 changes: 13 additions & 1 deletion wrfv2_fire/README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WRF Model Version 3.9.1 (August 17, 2017)
WRF Model Version 3.9.1.1 (August 28, 2017)
http://wrf-model.org/users/users.php

------------------------
Expand Down Expand Up @@ -27,6 +27,15 @@ infringement actions.
This is the main directory for the WRF Version 3 source code release.
======================================

V3.9.1.1 Release Notes (8/28/17):
-------------------

- Version 3.9.1.1 has only limited bug fixes compared to version 3.9.1.
For more information on WRF V3.9.1.1 release, visit WRF User's home pages
http://www2.mmm.ucar.edu/wrf/users/, and
http://www.dtcenter.org/wrf-nmm/users/, and read the online User's Guide.


V3.9.1 Release Notes (8/17/17):
-------------------

Expand Down Expand Up @@ -260,6 +269,9 @@ WRF update history:
- V3.7.1: Aug 14, 2015
- V3.8: April 8, 2016
- V3.8.1: Aug 12, 2016
- V3.9: Apr 17, 2017
- V3.9.1: Aug 17, 2017
- V3.9.1.1: Aug 28, 2017

======================================

Expand Down
2 changes: 1 addition & 1 deletion wrfv2_fire/dyn_em/module_diffusion_em.F
Original file line number Diff line number Diff line change
Expand Up @@ -2904,7 +2904,7 @@ SUBROUTINE horizontal_diffusion_v_2( tendency, config_flags, &
zx_at_v(i, kts, j) = 0.125 * (zx(i, kts, j) + zx(i + 1, kts, j) + &
zx(i, kts, j - 1) + zx(i + 1, kts, j - 1) + zx(i, kts + 1, j) + &
zx(i + 1, kts + 1, j) + zx(i, kts + 1, j - 1) + zx(i + 1, kts + 1, j - 1))
zy_at_v(i, kts, j) = 0.5 * (zy(i, k, j) + zy(i, k + 1 , j))
zy_at_v(i, kts, j) = 0.5 * (zy(i, kts, j) + zy(i, kts + 1 , j))
ENDDO
ENDDO
!
Expand Down
17 changes: 17 additions & 0 deletions wrfv2_fire/external/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This is the top-level .gitignore file for the "external" directory for the #
# WRF Model #
# #
# Filenames and wildcards added below will not be tracked by git anywhere in #
# this directory or any of its subdirectories. Note that these rules will be #
# supplemented by rules in the top-level .gitignore file #
# #
# Ignored file types should include executables, build-time temporary files, #
# and other files which should not ever be added to the code repository. #
# #
# USE CAUTION WHEN ADDING WILDCARDS, as some builds use different filename #
# conventions than others #
##############################################################################
*.f

# Exceptions to top-level .gitignore: many external/ source code files use .f90 extension
!*.f90
34 changes: 34 additions & 0 deletions wrfv2_fire/hydro/CPL/WRF_cpl/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Makefile
#
.SUFFIXES:
.SUFFIXES: .o .F



include ../../macros

MODFLAG = -I./ -I ../../MPP -I ../../mod

WRF_ROOT = ../../..
OBJS = \
module_wrf_HYDRO.o \
wrf_drv_HYDRO.o
all: $(OBJS)

.F.o:
@echo ""
$(CPP) $(CPPFLAGS) -I$(NETCDFINC) $(*).F > $(*).f
$(COMPILER90) -o $(@) $(F90FLAGS) $(MODFLAG) -I$(WRF_ROOT)/frame -I$(WRF_ROOT)/main -I$(WRF_ROOT)/external/esmf_time_f90 $(*).f
$(RMD) $(*).f
@echo ""
ar -r ../../lib/libHYDRO.a $(@)

#
# Dependencies:
#
module_wrf_HYDRO.o: ../../Data_Rec/module_RT_data.o ../../Data_Rec/module_namelist.o ../../HYDRO_drv/module_HYDRO_drv.o

wrf_drv_HYDRO.o: module_wrf_HYDRO.o

clean:
rm -f *.o *.mod *.stb *~ *.f
9 changes: 9 additions & 0 deletions wrfv2_fire/hydro/CPL/WRF_cpl/Makefile.cpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Makefile

all:
(cd ../../; make -f Makefile.comm BASIC)
(make)

clean:
(make clean)
(cd ../../; make -f Makefile.comm clean)
Loading

0 comments on commit 07a6bf2

Please sign in to comment.