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
Binary file added data/Stock-Flow Output Options.xlsx
Binary file not shown.
Binary file added docs/assets/images/screencap-2_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/images/screencap-4_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/images/screencap-4_5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/images/screencap-4_6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ If you do not have **Miniforge** installed on your computer, a dialog box will o
## **Step 2: Create a new LUCAS Builder Library**
Having installed the **LUCAS Builder** package, you are now ready to create your first SyncroSim Library. A *Library* is a file (with extension *.ssim*) that contains all of your model inputs and outputs. The format of each library is specific to the Package for which it was initially created. You can opt to create an empty library or download the **lucasbuilder** template library. In this tutorial, we will be using the the **LUCAS Builder - CONUS** template library.
<br>
<img align="middle" style="padding: 3px" width="680" src="assets/images/screencap-2_1.png">
<img align="middle" style="padding: 3px" width="750" src="assets/images/screencap-2_1.png">
<br>
In this window:
<br>
Expand Down Expand Up @@ -124,7 +124,7 @@ If the run is successful, you will see a *Status* of **Done** in the *Run Monito

Repeat the process with the **Run Spin-up** scenario. Notice that the outputs from the **Calculate Flow Rates** scenario serve as inputs for the spin-up runs. In turn, the results from the **Run Spin-up** scenario are used as inputs for the **Single Cell - No Disturbance** scenario. Looking at the *Pipeline* of each scenario, you can notice the sequence of modeling stages.

> **Warning Note:** Running these scenarios will take approximatelly 17.4 GB of disk space.
> **Warning Note:** Running these scenarios will take approximatelly 3.5 GB of disk space.

Once the **Run Setup** scenarios have completed successfully, the **Run Forecast** scenarios can be run.

Expand Down
5 changes: 3 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ Amanda Schwantes (Author, maintainer) <a href="https://orcid.org/0000-0002-7791-
<br>
Leonardo Frid (Author) <a href="https://orcid.org/0000-0002-5489-2337"><img align="middle" style="padding: 0.5px" width="17" src="assets/images/ORCID.png"></a>
<br>
Bronwyn Rayfield (Author) <a href="https://orcid.org/0000-0003-1768-1300"><img align="middle" style="padding: 0.5px" width="17" src="assets/images/ORCID.png"></a>
<br>
Benjamin Sleeter (Author) <a href="https://orcid.org/0000-0003-2371-9571"><img align="middle" style="padding: 0.5px" width="17" src="assets/images/ORCID.png"></a>
<br>
Schuyler Pearman-Gillman (Author) <a href="https://orcid.org/0000-0002-3911-1985"><img align="middle" style="padding: 0.5px" width="17" src="assets/images/ORCID.png"></a>
<br>
Diego Bilski (Author)
<br>
Colin Daniel (Author)

9 changes: 4 additions & 5 deletions scripts/CreateTemplateLibraryMerch.R
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ saveDatasheet(myProject, mySheet, sheetName)

sheetName <- "stsim_TransitionType"
mySheet <- datasheet(myProject, name=sheetName, optional=T, empty = T)
mySheetFull <- read.csv(paste0(definitionsPath,"Transition Type.csv")) %>%
rename(Id = ID)
mySheetFull <- read.csv(paste0(definitionsPath,"Transition Type.csv"))
names(mySheetFull) <- gsub("ID","Id",names(mySheetFull))
saveDatasheet(myProject, mySheetFull, sheetName)

sheetName <- "stsim_TransitionGroup"
Expand Down Expand Up @@ -268,10 +268,9 @@ saveDatasheet(myScenario, mySheetFull, sheetName)
## Stock flow output options
myScenarioName <- "Stock Flow Output Options"
myScenario <- scenario(myProject, scenario = myScenarioName, folder = folderId(folder1))

sheetName <- "stsim_OutputOptionsStockFlow"
mySheet <- datasheet(myScenario, name=sheetName, optional=T, empty = T)
mySheetFull <- read_xlsx(path = paste0(dirname(getwd()), "/Data/SF Output Options - Spatial.xlsx"), sheet = "SF Output Options") %>%
mySheetFull <- read_xlsx(path = paste0(dirname(getwd()), "/data/Stock-Flow Output Options.xlsx"), sheet = "Stock-Flow Output") %>%
data.frame()
# names(mySheetFull) <- names(mySheet)
saveDatasheet(myScenario, mySheetFull, sheetName)
Expand Down Expand Up @@ -446,7 +445,7 @@ saveDatasheet(myProject, myData, sheetName)

## Project Definitions ---- [Needed for Flow-pathways/spin-up Transformers]

maxAge <- 600
maxAge <- 300
initialStandAge <- 0
standArea <- 1

Expand Down