[Dart-dev] to/ Revision: 11299

dart at ucar.edu dart at ucar.edu
Fri Mar 10 16:45:23 MST 2017


hendric at ucar.edu
2017-03-10 16:45:23 -0700 (Fri, 10 Mar 2017)
39
start of the update to documentation.




Modified: DART/branches/rma_trunk/documentation/html/rma.html
===================================================================
--- DART/branches/rma_trunk/documentation/html/rma.html	2017-03-10 23:44:08 UTC (rev 11298)
+++ DART/branches/rma_trunk/documentation/html/rma.html	2017-03-10 23:45:23 UTC (rev 11299)
@@ -3,8 +3,8 @@
 <HTML>
 <HEAD>
 <TITLE>RMA DART</TITLE>
-<link rel="stylesheet" type="text/css" href="../doc/html/doc.css" />
-<link href="../doc/images/dart.ico" rel="shortcut icon" />
+<link rel="stylesheet" type="text/css" href="../html/doc.css" />
+<link href="../images/dart.ico" rel="shortcut icon" />
 </HEAD>
 <BODY>
 <A NAME="TOP"></A>
@@ -14,7 +14,7 @@
 <table border=0 summary="" cellpadding=5>
 <tr>
     <td valign=middle>
-    <img src="../doc/images/Dartboard7.png" alt="DART project logo" height=70 />
+    <img src="../images/Dartboard7.png" alt="DART project logo" height=70 />
     </td>
     <td>
        <P>Jump to <a href="../index.html">DART Documentation Main Index</a><br />
@@ -32,12 +32,16 @@
 
 RMA DART supported models:
 <ul>
+<li> 9var
 <li> bgrid_solo
+<li> cam-fv
 <li> cice
 <li> cm1
+<li> lorenz_04
 <li> lorenz_63
+<li> lorenz_84
 <li> lorenz_96
-<li> mpas (NetCDF overwrite not supported for update_u_from_reconstruct = .true. )
+<li> mpas_atm (NetCDF overwrite not supported for update_u_from_reconstruct = .true. )
 <li> POP
 <li> ROMS
 <li> wrf
@@ -65,26 +69,25 @@
 To facilitate this, there is a new required call <code>add_domain</code> 
 which must be called during <code>static_init_model</code>.  It can be called 
 multiple times in static_model_mod, e.g. once for each NetCDF file that 
-contains state variables.  There are three ways to add a domain.
+contains state variables.  There are three ways to add a domain:
 
 <ul>
-<code>
-<li> From Blank : This is for small models such as lorenz_96 and no NetCDF restarts
+<li> <b>From Blank</b> : This is for small models such as lorenz_96 and no NetCDF restarts
    <ul>
-   <li> dom_id = add_domain(model_size)
+   <li> <code>dom_id = add_domain(model_size)</code>
    </ul>
-<li> From File : This is for models which have NetCDF restart files
+<li> <b>From File</b> : This is for models which have NetCDF restart files
    <ul>
-   <li> dom_id = add_domain(info_file, num_vars, var_names, ... )
+   <li> <code>dom_id = add_domain(template_file, num_vars, var_names, ... )</code>
    </ul>
-<li> From Spec : Creates a skeleton structure for a domain ( currently only used in bgrid_solo
+<li> <b>From Spec</b> : Creates a skeleton structure for a domain ( currently only used in 
+                 bgrid_solo )
    <ul>
-   <li> dom_id = add_domain(num_vars, var_names, ... )<br>
-        call add_dimension_to_variable(dom_id, var_id, dim_nam, dim_size) <br>
-        call finished_adding_domain
+   <li> <code>dom_id = add_domain(num_vars, var_names, ... )</code><br>
+        <code>call add_dimension_to_variable(dom_id, var_id, dim_nam, dim_size)</code> <br>
+        <code>call finished_adding_domain</code>
    </ul>
 </ul>
-</code>
 </ul>
 <p>
 For models without NetCDF restarts, use <code>add_domain(model_size)</code>. 
@@ -141,38 +144,40 @@
 <p>
 <h4> Diagnostic file changes </h4>
 For large models DART format diagnostic files (Prior_Diag.nc and 
-Posterior_Diag.nc) are expensive to create.  The namelist option 
-<code>make_diagnostic_files = .false.</code> will turn off creating and 
-writing these files so Prior_Diag.nc and Posterior_Diag.nc files are not 
-created. Separate files for each copy that would have gone into Prior_Diag.nc 
-and Posterior are made.
+Posterior_Diag.nc) have been replaced with separate files for each copy that would 
+have gone into Prior_Diag.nc and Posterior_Diag.nc.
 <p>
+
 For Prior_Diag.nc:
+
 <ul>
-<li>Mean and standard deviation:
+<li><b>Mean and standard deviation</b>:
    <br>&nbsp;&nbsp;preassim_mean.nc
    <br>&nbsp;&nbsp;preassim_sd.nc
-<li>Inflation mean and standard deviation (if state space inflation is used):
+<li><b>Inflation mean and standard deviation</b> (if state space inflation is used):


More information about the Dart-dev mailing list