Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Starting to list utilities in user_guide.md #254

Merged
merged 10 commits into from
Feb 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

# User options.
option(OPENMP "use OpenMP threading" ON)
option(ENABLE_DOCS "Enable generation of doxygen-based documentation." OFF)

if(NOT CMAKE_BUILD_TYPE MATCHES "^(Debug|Release|RelWithDebInfo|MinSizeRel)$")
message(STATUS "Setting build type to 'Release' as none was specified.")
Expand Down
7 changes: 7 additions & 0 deletions build_all.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
#! /usr/bin/env bash
#
# This build script is only used on NOAA WCOSS systems. All other
# users should set module files as needed, and build directly with
# CMake.
#
# George Gayno

set -eux

target=${target:-"NULL"}
Expand Down
55 changes: 53 additions & 2 deletions docs/user_guide.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,60 @@
@mainpage

## UFS_UTILS
# UFS_UTILS

Utilities for the NCEP models. This is part of the
[NCEPLIBS](https://github.com/NOAA-EMC/NCEPLIBS) project.

The UFS_UTILS code here: https://github.com/NOAA-EMC/UFS_UTILS.
The UFS_UTILS code can be found here:
https://github.com/NOAA-EMC/UFS_UTILS.

## The Utilities

- chgres_cube - Creates cold start initial conditions for FV3 model
runs.

- emcsfc_ice_blend - Blends National Ice Center sea ice cover and EMC
sea ice concentration data to create a global sea ice analysis used
to update the GFS once per day.

- emcsfc_snow2mdl - Blends National Ice Center snow cover and Air
Force snow depth data to create a global depth analysis used to
update the GFS snow field once per day.

- fre-nctools - Tools to remap data; and to create the geo-reference
fields (latitude, longitude, etc.) for an FV3 grid.

- fvcom_tools - - Replaces lake surface and lake ice temperature along
with aerial ice concentration generated from the Great Lakes
Operational Forecast System (GLOFS) in an FV3 surface restart
file. See [fvcom documentation](@ref fvcom_readme).

- global_chgres - Creates cold start initial conditions for FV3 model
runs. Deprecated by the chgres_cube utility. See [global_chgres
documentation](@ref global_chgres_users_guide).

- global_cycle - Updates the GFS surface conditions using external
snow and sea ice analyses. Updates monthly climatological fields
such as plant greenness fraction and albedo. Runs as part of the GFS
and GDAS cycles.

- grid_tools - Utilities to filter topography, to create regional
extended Schmidt gnomonic grids, and to compute the equivalent
global resolution of a regional grid.

- nst_tf_chg - Initializes the reference temperature used by the NSST
model.

- orog_mask_tools - Utilities to create land mask, terrain and gravity
wave drag fields; set lake fraction and depth; creates an inland
land mask.

- sfc_climo_gen - Creates surface climatological fields, such as
vegetation type and albedo, for an FV3 grid.

- vcoord_gen - Generates hybrid coordinate parameters from fields such
as surface pressure, model top and the number of vertical
levels. Outputs the 'ak' and 'bk' parameters used by the forecast
model to define the hybrid levels.


4 changes: 4 additions & 0 deletions sorc/chgres_cube.fd/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# This is the CMake build file for the chgres_cube utility in the UFS_UTILS package.
#
# George Gayno, Mark Potts

set(fortran_src
atmosphere.F90
chgres.F90
Expand Down
159 changes: 0 additions & 159 deletions sorc/fre-nctools.fd/shared_lib/COPYING

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@brief replaces lake surface and lake ice temperature @anchor fvcom_readme

**fvcom_to_FV3.exe**

**Introduction:**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HOW TO CONVERT A SURFACE RESTART FILE
@brief HOW TO CONVERT A SURFACE RESTART FILE @anchor global_chgres_users_guide

1.0 INTRODUCTION

Expand Down