diff --git a/doc/source/new.rst b/doc/source/new.rst index c6f949d..2962534 100644 --- a/doc/source/new.rst +++ b/doc/source/new.rst @@ -4,6 +4,13 @@ What's New Releases ------------- +v1.1.2 +^^^^^^^^^^^^^^ + +- Release 1.1.2 +- Fix OpenMP directive issue with cloud top temperature. + + v1.1.1 ^^^^^^^^^^^^^^ diff --git a/fortran/wrf_fctt.f90 b/fortran/wrf_fctt.f90 index efc59b6..2ef7ecb 100644 --- a/fortran/wrf_fctt.f90 +++ b/fortran/wrf_fctt.f90 @@ -26,7 +26,8 @@ SUBROUTINE wrfcttcalc(prs, tk, qci, qcw, qvp, ght, ter, ctt, haveqci, nz, ns, ew !$OMP PARALLEL ! Calculate the surface pressure - !$OMP DO COLLAPSE(2) SCHEDULE(runtime) + !$OMP DO COLLAPSE(2) PRIVATE(i, j, ratmix, arg1, arg2, vt, agl_hgt) & + !$OMP SCHEDULE(runtime) DO j=1,ns DO i=1,ew ratmix = .001D0*qvp(i,j,1) @@ -40,7 +41,7 @@ SUBROUTINE wrfcttcalc(prs, tk, qci, qcw, qvp, ght, ter, ctt, haveqci, nz, ns, ew END DO !$OMP END DO - !$OMP DO COLLAPSE(3) SCHEDULE(runtime) + !$OMP DO COLLAPSE(3) PRIVATE(i, j, k, ripk) SCHEDULE(runtime) DO k=1,nz-1 DO j=1,ns DO i=1,ew diff --git a/src/wrf/version.py b/src/wrf/version.py index c5762ad..e39ded1 100644 --- a/src/wrf/version.py +++ b/src/wrf/version.py @@ -1,2 +1,2 @@ -__version__ = "1.1.1" +__version__ = "1.1.2"