Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions docs/src/tutorials/tutorial_4.md
Original file line number Diff line number Diff line change
@@ -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:

Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/userguide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down