Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Directly use micro_manager in two-scale- tutorial #533

Merged
merged 1 commit into from
May 3, 2024
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
6 changes: 3 additions & 3 deletions two-scale-heat-conduction/micro-dumux/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ usage() { echo "Usage: cmd [-s] [-p n]" 1>&2; exit 1; }
# Check if no input argument was provided
if [ -z "$*" ] ; then
echo "No input argument provided. Micro Manager is launched in serial"
python3 run_micro_manager.py params.input
micro_manager micro-manager-config.json
fi

while getopts ":sp" opt; do
case ${opt} in
s)
python3 run_micro_manager.py params.input
micro_manager micro-manager-config.json
;;
p)
mpiexec -n "$2" python3 run_micro_manager.py params.input
mpiexec -n "$2" micro_manager micro-manager-config.json
;;
*)
usage
Expand Down
9 changes: 0 additions & 9 deletions two-scale-heat-conduction/micro-dumux/run_micro_manager.py

This file was deleted.

6 changes: 3 additions & 3 deletions two-scale-heat-conduction/micro-nutils/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ pip install -r requirements.txt
# Check if no input argument was provided
if [ -z "$*" ] ; then
echo "No input argument provided. Micro Manager is launched in serial"
python3 run_micro_manager.py
micro_manager micro-manager-config.json
fi

while getopts ":sp" opt; do
case ${opt} in
s)
python3 run_micro_manager.py
micro_manager micro-manager-config.json
;;
p)
mpiexec -n "$2" python3 run_micro_manager.py
mpiexec -n "$2" micro_manager micro-manager-config.json
;;
*)
usage
Expand Down
9 changes: 0 additions & 9 deletions two-scale-heat-conduction/micro-nutils/run_micro_manager.py

This file was deleted.