[Dart-dev] DART/branches Revision: 10756
dart at ucar.edu
dart at ucar.edu
Wed Nov 16 15:09:28 MST 2016
thoar at ucar.edu
2016-11-16 15:09:25 -0700 (Wed, 16 Nov 2016)
37
Bringing up-to-date with the trunk.
Modified: DART/branches/wrfHydro/DART_LAB/DART_LAB.html
===================================================================
--- DART/branches/wrfHydro/DART_LAB/DART_LAB.html 2016-11-16 19:12:55 UTC (rev 10755)
+++ DART/branches/wrfHydro/DART_LAB/DART_LAB.html 2016-11-16 22:09:25 UTC (rev 10756)
@@ -26,14 +26,14 @@
</table>
<A HREF="#Presentations">Presentations</A> /
-<A HREF="#Matlab">Matlab Programs</A> /
+<A HREF="#Matlab">Matlab® Programs</A> /
<A HREF="#Legalese">TERMS OF USE</A>
<H2>Overview</H2>
<P>
The files in this directory contain PDF tutorial
-materials on DART, and Matlab exercises. See below for links to the
+materials on DART, and Matlab® exercises. See below for links to the
PDF files and a list of the corresponding matlab scripts.
</P>
<P>
@@ -53,17 +53,25 @@
Here are the PDF files for the presentation part of the tutorial:
</P>
<UL>
-<LI><A HREF="presentation/DART_LAB_section01.pdf">Section 1:</A> The basics in 1D.</LI>
-<LI><A HREF="presentation/DART_LAB_section02.pdf">Section 2:</A> How should observations of a state variable impact an unobserved state variable? Multivariate assimilation.</LI>
-<LI><A HREF="presentation/DART_LAB_section03.pdf">Section 3:</A> Sampling error and localization.</LI>
-<LI><A HREF="presentation/DART_section4.pdf">Section 4:</A> The Ensemble Kalman Filter (Perturbed Observations).</LI>
+<LI><A HREF="presentation/DART_LAB_Section01.pdf">Section 1:</A> The basics in 1D.</LI>
+<LI><A HREF="presentation/DART_LAB_Section02.pdf">Section 2:</A> How should observations of a state variable impact an unobserved state variable? Multivariate assimilation.</LI>
+<LI><A HREF="presentation/DART_LAB_Section03.pdf">Section 3:</A> Sampling error and localization.</LI>
+<LI><A HREF="presentation/DART_LAB_Section04.pdf">Section 4:</A> The Ensemble Kalman Filter (Perturbed Observations).</LI>
</UL>
+<P><strong>Please note:</strong> as Matlab continues to develop its
+GUI capabilities, some features change and the GUIs we have written
+may behave slightly differently with different Matlab versions. In
+early 2016, I rewrote the GUIs such that they (should) work with
+almost all(?) versions of Matlab available at the time. I also chose to consolidate the multiple-figure GUIs into a single,
+rescalable figure so some of the presentation materials may look slightly different than the new tools.
+</P>
+
<!--==================================================================-->
<A NAME="Matlab"></A>
<HR>
-<H2>Matlab Hands-On Exercises</H2>
+<H2>Matlab® Hands-On Exercises</H2>
<P>
In the <em class=file>matlab</em> subdirectory are a set of
@@ -90,7 +98,6 @@
and type the names at the prompt.
</P>
-
<!--==================================================================-->
<!-- Legalese & Metadata -->
<!--==================================================================-->
Deleted: DART/branches/wrfHydro/DART_LAB/matlab/advance_oned.m
===================================================================
--- DART/branches/wrfHydro/DART_LAB/matlab/advance_oned.m 2016-11-16 19:12:55 UTC (rev 10755)
+++ DART/branches/wrfHydro/DART_LAB/matlab/advance_oned.m 2016-11-16 22:09:25 UTC (rev 10756)
@@ -1,28 +0,0 @@
-function x_new = advance_oned(x, alpha, model_bias)
-%% advance_oned(x, alpha, model_bias)
-
-%% DART software - Copyright 2004 - 2013 UCAR. This open source software is
-% provided by UCAR, "as is", without charge, subject to all terms of use at
-% http://www.image.ucar.edu/DAReS/DART/DART_download
-%
-% DART $Id$
-
-x_new = x + comp_dt(x, alpha, model_bias);
-end
-
-%---------------------------------------------------
-
-% Internal function comp_dt
-function dx = comp_dt(x, alpha, model_bias)
-
-% Compute the time tendency; alpha controls nonlinearity
-% model_bias controls a shift in the model dynamics
-dx = (x + model_bias) + alpha .* x .* abs(x);
-
-end
-
-% <next few lines under version control, do not edit>
-% $URL$
-% $Revision$
-% $Date$
-
Deleted: DART/branches/wrfHydro/DART_LAB/matlab/comp_cov_factor.m
===================================================================
--- DART/branches/wrfHydro/DART_LAB/matlab/comp_cov_factor.m 2016-11-16 19:12:55 UTC (rev 10755)
+++ DART/branches/wrfHydro/DART_LAB/matlab/comp_cov_factor.m 2016-11-16 22:09:25 UTC (rev 10756)
@@ -1,26 +0,0 @@
-function cov_factor = comp_cov_factor(z_in, c)
More information about the Dart-dev
mailing list