From eec582386aa90cc52b11e9e4989f5126f1a54581 Mon Sep 17 00:00:00 2001 From: lrennels Date: Mon, 20 May 2019 14:24:49 -0700 Subject: [PATCH] Change SA abbreviation to sensitivity analysis --- docs/make.jl | 2 +- docs/src/tutorials/tutorial_4.md | 4 ++-- docs/src/userguide.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 0aef93e1d..6439365db 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -12,7 +12,7 @@ makedocs( "1 Run an Existing Model" => "tutorials/tutorial_1.md", "2 Modify an Existing Model" => "tutorials/tutorial_2.md", "3 Create a Model" => "tutorials/tutorial_3.md", - "4 SA Functionality" => "tutorials/tutorial_4.md" + "4 Sensitivity Analysis" => "tutorials/tutorial_4.md" ], "FAQ" => "faq.md", "Reference" => "reference.md", diff --git a/docs/src/tutorials/tutorial_4.md b/docs/src/tutorials/tutorial_4.md index 41ab0f347..52ff6b06b 100644 --- a/docs/src/tutorials/tutorial_4.md +++ b/docs/src/tutorials/tutorial_4.md @@ -1,6 +1,6 @@ # Tutorial 4: Sensitivity Analysis (SA) Support -This tutorial walks through the SA functionality of Mimi, including core routines and examples. We will start with looking at using the SA routines with the Mimi two-region model provided in the Mimi repository at `examples/tutorial/02-two-region-model`, and then build out to examine its use on [The Climate Framework for Uncertainty, Negotiation and Distribution (FUND)](http://www.fund-model.org), available on Github [here](https://github.com/fund-model/fund), +This tutorial walks through the sensitivity analysis (SA) functionality of Mimi, including core routines and examples. We will start with looking at using the SA routines with the Mimi two-region model provided in the Mimi repository at `examples/tutorial/02-two-region-model`, and then build out to examine its use on [The Climate Framework for Uncertainty, Negotiation and Distribution (FUND)](http://www.fund-model.org), available on Github [here](https://github.com/fund-model/fund), Working through the following tutorial will require: @@ -160,7 +160,7 @@ end We encourage users to employ the Mimi framework for this type of analysis, in large part because the underlying functions have optimizations that will improve speed and memory use, especially as the number of runs climbs. -Employing the SA functionality could look like the following template: +Employing the sensitivity analysis functionality could look like the following template: First, we define the typical variables for a simulation, including the number of trials `N` and the simulation `sim`. In this case we only define one random variable, `t2xco2`, but note there could be any number of random variables defined here. diff --git a/docs/src/userguide.md b/docs/src/userguide.md index 0c8d39e77..e51f41415 100644 --- a/docs/src/userguide.md +++ b/docs/src/userguide.md @@ -11,7 +11,7 @@ This guide is organized into six main sections for understanding how to use Mimi 3) Running the model 4) Accessing results 5) Plotting and the Explorer UI -6) SA Functionality +6) Sensitivity Analysis 7) Advanced topics ## Defining Components