Skip to content

Commit c5c6ae2

Browse files
committed
Merge branch 'hotfix_v3.1'
This merge corrects a bug in the extrapolation of RH below the surface for MPAS-Atmosphere.
2 parents 1b7f08b + b1dd0ca commit c5c6ae2

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MPAS-v3.0
1+
MPAS-v3.1
22
====
33

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

src/core_atmosphere/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="atmosphere" version="3.0">
2+
<registry model="mpas" core="atmosphere" version="3.1">
33

44
<!-- **************************************************************************************** -->
55
<!-- ************************************** Dimensions ************************************** -->

src/core_init_atmosphere/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="init_atmosphere" version="3.0">
2+
<registry model="mpas" core="init_atmosphere" version="3.1">
33

44
<!-- **************************************************************************************** -->
55
<!-- ************************************** Dimensions ************************************** -->

src/core_init_atmosphere/mpas_init_atm_cases.F

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4004,7 +4004,7 @@ subroutine init_atm_case_gfs(block, mesh, nCells, nEdges, nVertLevels, fg, state
40044004
sorted_arr(2,k) = rh_fg(k,iCell)
40054005
end do
40064006
call mpas_quicksort(nfglevels_actual, sorted_arr)
4007-
do k=1,nVertLevels
4007+
do k=nVertLevels,1,-1
40084008
target_z = 0.5 * (zgrid(k,iCell) + zgrid(k+1,iCell))
40094009
! scalars(index_qv,k,iCell) = vertical_interp(target_z, nfglevels_actual, sorted_arr, order=1, extrap=0)
40104010
scalars(index_qv,k,iCell) = vertical_interp(target_z, nfglevels_actual-1, &

src/core_landice/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="landice" version="3.0">
2+
<registry model="mpas" core="landice" version="3.1">
33

44

55
<!-- ======================================================================= -->

src/core_ocean/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="ocean" version="3.0">
2+
<registry model="mpas" core="ocean" version="3.1">
33

44
<dims>
55
<dim name="nCells" units="unitless"

src/core_sw/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="sw" version="3.0">
2+
<registry model="mpas" core="sw" version="3.1">
33
<dims>
44
<dim name="nCells"/>
55
<dim name="nEdges"/>

0 commit comments

Comments
 (0)