-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ajdawson/shallow-water
Add shallow water example code
- Loading branch information
Showing
5 changed files
with
1,563 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Shallow water equations on an Arakawa C-grid | ||
============================================ | ||
|
||
These examples use rpe_ to investigate the performance of a shallow water | ||
equation model defined on an Arakawa C-grid. These model configurations are | ||
described in Dawson and Düben (2016). | ||
|
||
Model configurations | ||
-------------------- | ||
|
||
Source code for the following model configurations is provided: | ||
|
||
* ``sw_ref.f90``: | ||
|
||
A reference double-precision implementation | ||
|
||
* ``sw_reduced.f90``: | ||
|
||
A version with a uniform reduced floating-point precision for all variables | ||
|
||
* ``sw_codesigned.f90``: | ||
|
||
A co-designed half-precision version that uses half-precision for computing | ||
RHS terms and double-precision for time-stepping update operations | ||
|
||
.. _rpe: http://github.com/aopp-pred/rpe |
Oops, something went wrong.