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

adjusted parameters that were incorrect

parent 9846c011
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,8 @@ RUN apt-get update -y && apt-get upgrade -y && \ ...@@ -16,7 +16,8 @@ RUN apt-get update -y && apt-get upgrade -y && \
python3-pip \ python3-pip \
zlib1g zlib1g-dev \ zlib1g zlib1g-dev \
python3-testresources python-is-python3 \ python3-testresources python-is-python3 \
bc bc \
screen
# Install network tools - (ping, traceroute, etc.) # Install network tools - (ping, traceroute, etc.)
RUN apt-get -y install iputils-ping libssl-dev RUN apt-get -y install iputils-ping libssl-dev
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# It will also mount the top level project directory into the container # It will also mount the top level project directory into the container
# This uses the host computers file system to store the data # This uses the host computers file system to store the data
SOURCE_DIR=/mnt/c/Users/kylec/Projects/Cardiac_Projects/openCARP-Actors/ SOURCE_DIR=/u1/kck540/Projects/cardiac/openCARP-Actors
TARGET_DIR=/code/ TARGET_DIR=/code/openCARP-Actors
docker run -itd --mount type=bind,source=$SOURCE_DIR,target=$TARGET_DIR opencarp-actors docker run -itd --mount source=$SOURCE_DIR,target=$TARGET_DIR opencarp-actors
\ No newline at end of file \ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# global parameters # global parameters
output_dir = "/code/openCARP-Actors/simulations/output/" output_dir = "/code/openCARP-Actors/simulations/output/"
results_file = "results.csv" results_file = "results.csv"
tolerance = 1 tolerance = 1000
# s1 parameters # s1 parameters
s1_min = 1.0e7 s1_min = 1.0e7
...@@ -14,7 +14,7 @@ s2_min = 1.0e8 ...@@ -14,7 +14,7 @@ s2_min = 1.0e8
s2_max = 3.0e8 s2_max = 3.0e8
s2_interval_min = 185 s2_interval_min = 185
s2_interval_max = 205 s2_interval_max = 205
s2_interval_increment = 1000 s2_interval_increment = 1
[petsc] [petsc]
......
...@@ -47,7 +47,7 @@ stimulus[1].zd = 100.0 ...@@ -47,7 +47,7 @@ stimulus[1].zd = 100.0
################# Simulation parameters ################# ################# Simulation parameters #################
bidomain = 1 bidomain = 1
tend = 300. tend = 70.
spacedt = 1.0 spacedt = 1.0
timedt = 1.0 timedt = 1.0
parab_solve = 1 parab_solve = 1
......
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