Skip to content

Commit

Permalink
Merge pull request #384 from NCAR/fix-build-obs-util
Browse files Browse the repository at this point in the history
bug-fix: remove obs_utilites_mod from model buildfunctions.sh
  • Loading branch information
hkershaw-brown authored Aug 18, 2022
2 parents 88e103e + 41851cc commit ef5d959
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ create_ocean_obs
gitm_blocks_to_netcdf
gitm_to_netcdf
netcdf_to_gitm_blocks
streamflow_obs_diag

# Observation converter exectutables
convert_aviso
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ individual files.

The changes are now listed with the most recent at the top.

**August 18 2022 :: Bug-fixes for obs_utilities build and mpas_atm. Tag: v10.2.1**

- obs_utilities_mod no longer included by default for model/work builds because
these utilities are for threed_sphere and threed_cartesian location_mods only.
- mpas_atm model_mod check for required quantities changed to handle multiple
variables of the same quantity.

**August 3 2022 :: TIEGCM. Tag v10.2.0**

- TIEGCM model_mod updated to Manhattan
Expand Down
3 changes: 1 addition & 2 deletions build_templates/buildfunctions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@ local misc="$DART/models/utilities/ \
$DART//observations/forward_operators/obs_def_utilities_mod.f90 \
$DART/assimilation_code/modules/observations/obs_kind_mod.f90 \
$DART/assimilation_code/modules/observations/obs_sequence_mod.f90 \
$DART/assimilation_code/modules/observations/forward_operator_mod.f90 \
$DART/observations/obs_converters/utilities/obs_utilities_mod.f90"
$DART/assimilation_code/modules/observations/forward_operator_mod.f90"

# The quantity_mod.f90 files are in assimilation_code/modules/observations
# so adding individual files from assimilation_code/modules/observations
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'Data Assimilation Research Section'

# The full version, including alpha/beta/rc tags
release = '10.2.0'
release = '10.2.1'
master_doc = 'README'

# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion models/wrf_hydro/work/quickbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ source "$DART"/build_templates/buildfunctions.sh

MODEL=wrf_hydro
LOCATION=threed_sphere
EXTRA="$DART/models/wrf/module_map_utils.f90"
EXTRA="$DART/models/wrf/module_map_utils.f90 \
$DART/observations/obs_converters/utilities/obs_utilities_mod.f90"


programs=(
Expand Down

0 comments on commit ef5d959

Please sign in to comment.