Skip to content

Commit 6abfe97

Browse files
committed
Merge branch 'noaa/develop' into update-ci-tests
2 parents 6358083 + 8ba6b7a commit 6abfe97

4 files changed

Lines changed: 22 additions & 4 deletions

File tree

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,21 @@ restart_timestamp
6363

6464
src/core_*/inc
6565
build/
66+
67+
# ignore output generated by the make system
68+
default_inputs/
69+
namelist.atmosphere
70+
namelist.init_atmosphere
71+
src/core_atmosphere/default_inputs/
72+
src/core_init_atmosphere/default_inputs/
73+
stream_list.atmosphere.da_state
74+
stream_list.atmosphere.diag_ugwp
75+
stream_list.atmosphere.diagnostics
76+
stream_list.atmosphere.output
77+
stream_list.atmosphere.surface
78+
streams.atmosphere
79+
streams.init_atmosphere
80+
81+
# ignore ics and tables generated by get_data.sh
82+
testing_and_setup/ufs-community/data/ics/
83+
testing_and_setup/ufs-community/data/tables/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ ifort_icx: # BUILDTARGET Intel Fortran, C, and C++ compiler suite
366366
"FFLAGS_DEBUG = -g -convert big_endian -free -check all -fpe0 -traceback" \
367367
"CFLAGS_DEBUG = -g -traceback" \
368368
"CXXFLAGS_DEBUG = -g -traceback" \
369-
"LDFLAGS_DEBUG = -g -fpe0 -traceback" \
369+
"LDFLAGS_DEBUG = -g -traceback" \
370370
"FFLAGS_OMP = -qopenmp" \
371371
"CFLAGS_OMP = -qopenmp" \
372372
"PICFLAG = -fpic" \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MPAS-v8.3.1-2.32
1+
MPAS-v8.3.1-2.34
22
====
33

44
The Model for Prediction Across Scales (MPAS) is a collaborative project for

src/core_atmosphere/physics/physics_wrf/module_ra_rrtmg_sw.F

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10204,9 +10204,9 @@ subroutine rrtmg_swrad( &
1020410204
! eot is based on the second equation at https://gml.noaa.gov/grad/solcalc/solareqns.PDF
1020510205
! do not call rrtmg_sw is night-time:
1020610206
dorrsw = .true.
10207-
da=6.2831853071795862*(julian-1.)/365.
10207+
da=6.2831853071795862*(julian-0.5)/365.
1020810208
eot=(0.000075+0.001868*cos(da)-0.032077*sin(da) &
10209-
-0.014615*cos(2*da)-0.04089*sin(2*da))*(229.18)
10209+
-0.014615*cos(2*da)-0.040849*sin(2*da))*(229.18)
1021010210
xt24 = mod(xtime+radt*0.5,1440.)+eot
1021110211
tloctm = gmt + xt24/60. + xlong(i,j)/15.
1021210212
hrang = 15. * (tloctm-12.) * degrad

0 commit comments

Comments
 (0)