Skip to content

Commit

Permalink
Initial content of Getting Started and 0.1.0 Release Notes (#64)
Browse files Browse the repository at this point in the history
* first draft of Getting Started info including what to expect and how to obtain prerequisites Docker or Apptainer

* added list of issues/PRs that have been completed for the 0.1.0 release

* fixed doc complaint by creating unique links
  • Loading branch information
georgemccabe authored Sep 13, 2024
1 parent fdbb986 commit 982c44c
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 1 deletion.
81 changes: 81 additions & 0 deletions docs/Users_Guide/gettingstarted.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,84 @@
***************
Getting Started
***************

What to Expect
==============

This guide contains instructions to demonstrate how to use containers to
run WRF to generate model output and METplus to perform verification of the
WRF output using observations.

Future work will add instructions to easily generate plots of the WRF and
METplus output to visualize the results.

Prerequisites
=============

Container Software
------------------

`Docker <https://www.docker.com/>`_ or `Apptainer <https://apptainer.org>`_
is required to run I-WRF. These tools may already be installed.

To check if Docker is already available, the following command should display
the usage statement::

docker --help

To check if Apptainer is already available, the following command should display
the usage statement::

apptainer --help

Refer to the relevant section below for instructions to obtain this software
on various supported environments.

NCAR HPC
^^^^^^^^

On the NCAR supercomputers Casper and Derecho,
Apptainer is available as a module. To load apptainer, run the following::

module load apptainer


Jetstream2
^^^^^^^^^^

If running on a Jetstream2 instance, Docker must be installed on the instance.
The `instructions for installing Docker Engine on Ubuntu <https://docs.docker.com/engine/install/ubuntu/>`_
are very thorough and make a good reference, but we only need to perform a subset of those steps.
These commands run a script that sets up the Docker software repository on your instance,
then installs Docker::

curl --location https://bit.ly/3R3lqMU > install-docker.sh
source install-docker.sh

If a text dialog is displayed asking which services should be restarted, type ``Enter``.
When the installation is complete, you can verify that the Docker command line tool works by asking for its version::

docker --version

The Docker daemon should start automatically, but it sometimes runs into issues.
First, check to see if the daemon started successfully::

sudo systemctl --no-pager status docker

If you see a message saying the daemon failed to start because a "Start request repeated too quickly",
wait a few minutes and issue this command to try again to start it::

sudo systemctl start docker

If the command seems to succeed, confirm that the daemon is running using the status command above.
Repeat these efforts as necessary until it is started.


User Workstation
^^^^^^^^^^^^^^^^

To install Docker or Apptainer on a personal workstation,
please refer to the installation instructions for the tools.

Docker: `Get Docker <https://docs.docker.com/get-docker>`_
Apptainer: `Installing Apptainer <https://apptainer.org/docs/admin/main/installation.html>`_
16 changes: 15 additions & 1 deletion docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ When applicable, release notes are followed by the GitHub issue number which des
enhancement, or new feature (`I-WRF GitHub issues <https://github.com/NCAR/i-wrf/issues>`_).
Important issues are listed **in bold** for emphasis.

I-WRF Version alpha release notes (YYYYMMDD)
I-WRF Version 0.1.0 release notes (YYYYMMDD)
--------------------------------------------

* Define outline for User's Guide to display content
(`#37 <https://github.com/NCAR/i-wrf/issues/37>`_)
* Determine where to store Docker images
(`#7 <https://github.com/NCAR/i-wrf/issues/7>`_)
* Enhance MET tools to read native WRF output
(`#5 <https://github.com/NCAR/i-wrf/issues/5>`_)
* Update container to use Intel OneAPI when WRF 4.5.2 is available
(`#45 <https://github.com/NCAR/i-wrf/issues/45>`_)
* Obtain observation data for Hurricane Matthew test case
(`#47 <https://github.com/NCAR/i-wrf/issues/47>`_)
* Run Hurricane Matthew test case in METplus container
(`#48 <https://github.com/NCAR/i-wrf/issues/48>`_)
* Initial publication of instructions for running I-WRF on Jetstream2
(`#54 <https://github.com/NCAR/i-wrf/pull/54>`_)

0 comments on commit 982c44c

Please sign in to comment.