forked from VisionEval/VisionEval-Dev
-
Notifications
You must be signed in to change notification settings - Fork 2
Run the Model
esanchez01 edited this page Dec 6, 2021
·
3 revisions
- Start R (or RStudio) and set your directory to the installer folder. The easiest way to do this is to double-click
VisionEval.Rproj
, which will automatically open RStudio if installed correctly. - You should see
Welcome to VisionEval!
on the RStudio console. Proceed by running the following commands:-
Copy the VERSPM template to your own model
sd <- openModel("VERSPM")$copy("SDRSPM")
-
Open your own SDRSPM after modifying the inputs and defs
sd <- openModel("SDRSPM ")
-
Run SDRSPM
sd$run()
Note: These commands run the model within the
../models/SDRSPM/
directory. After executing the script, the modules will run in the order specified inrun_model.R
. The model run will take approximately 2 hours. Once complete, the results are written to../models/VERSPM/outputs
at three different zone levels.
-