Skip to content
Snippets Groups Projects
Commit 23452fb7 authored by KyleKlenk's avatar KyleKlenk
Browse files

added more settings files

parent 653cf1fa
No related branches found
No related tags found
No related merge requests found
......@@ -3,11 +3,11 @@ SUMMA-Distributed is an actor program that can compute the solution to HRUs usin
To achieve this we had to introduce two new actors into SUMMA-Actors the client actor and the server actor. These actors in combintaiton can
compute the solution to HRUs.
To use distributed mode. Set the distributed
To use distributed mode. Set the "distributed-mode" setting to true in the Summa_Actors_Settings.json file.
## SUMMA-Server
Run the server with:
- summaMain -s -c /path/to/config
## SUMMA-Client
Run the cleint with
{
"folders": [
{
"path": "."
},
{
"path": "../gladwell"
}
],
"settings": {}
}
\ No newline at end of file
......@@ -30,7 +30,29 @@ def file_access_actor_settings():
def job_actor_settings():
job_actor_settings = {
"FileManagerPath" : "",
"FileManagerPath" : "",
"controlVersion" : "",
"simStartTime" : "",
"simEndTime" : "",
"tmZoneInfo" : "",
"settingsPath" : "",
"forcingPath" : "",
"outputPath" : "",
"forcingFreq" : "",
"forcingStart" : "",
"decisionsFile" : "",
"outputControlFile" : "",
"globalHruParamFile" : "",
"globalGruParamFile" : "",
"attributeFile" : "",
"trialParamFile" : "",
"forcingListFile" : "",
"initConditionFile" : "",
"outFilePrefix" : "",
"vegTableFile" : "",
"soilTableFile" : "",
"generalTableFile" : "",
"noahmpTableFile" : "",
"outputCSV": False,
"csvPath": ""
}
......
#! /bin/bash
export PROJECT_DIR=/Users/kyleklenk/SUMMA-Projects/Summa-Actors
export NA_TEST=/home/local/kck540/NA_Summa_Test
export SUMMA=/Users/kyleklenk/SUMMA-Projects/summa
export PROJECT_DIR=/home/local/kck540/SUMMA-Projects/Summa-Distributed/Summa-Actors
export GLADWELL=/gladwell
docker run -d -it --name SUMMA-Actors --mount type=bind,source=${PROJECT_DIR},target=/Summa-Actors \
--mount type=bind,source=${SUMMA},target=/SUMMA summa-actors:latest
# --mount type=bind,source=${NA_TEST},target=/NA_Test \
# \
\ No newline at end of file
--mount type=bind,source=${GLADWELL},target=/gladwell summa-actors:latest
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment