From 8f2c80ae48d2b83e1f9525d24507b23cef23ab38 Mon Sep 17 00:00:00 2001 From: Evan Bauer <18405113+evbauer@users.noreply.github.com> Date: Fri, 13 May 2022 15:42:11 -0400 Subject: [PATCH] update for r22.05.1 --- README.md | 9 +++++---- linux_dockerMESA.sh | 6 ++++-- mac_dockerMESA.sh | 6 ++++-- win_dockerMESA.sh | 6 ++++-- win_home_dockerMESA.sh | 6 ++++-- 5 files changed, 21 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 5fb8646..b0e7786 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ One solution is MESA-Web (http://mesa-web.asu.edu/), an excellent online interfa * Students with class projects * Windows users -This is not intended to replace native installation of MESA for all users, and those who wish to pursue advanced MESA modeling are encouraged to follow the instructions at https://docs.mesastar.org/en/release-r21.12.1/installation.html. Some advanced performance features such as rate caching are not available through this Docker interface. +This is not intended to replace native installation of MESA for all users, and those who wish to pursue advanced MESA modeling are encouraged to follow the instructions at https://docs.mesastar.org/en/release-r22.05.1/installation.html. Some advanced performance features such as rate caching are not available through this Docker interface. @@ -127,7 +127,7 @@ To test that everything is working, you might want to follow these steps for a q ./mk ./rn -You should see the `pgstar` windows pop up on your screen and display the evolution of the model. For more info on getting started with MESA now that you have it installed and ready to run, see https://docs.mesastar.org/en/release-r21.12.1/quickstart.html#using-mesa. +You should see the `pgstar` windows pop up on your screen and display the evolution of the model. For more info on getting started with MESA now that you have it installed and ready to run, see https://docs.mesastar.org/en/release-r22.05.1/quickstart.html#using-mesa. Since the `~/docker_work` directory is mounted, you can access and edit any of your local working files by navigating to them through the `MESA-Docker/docker_work` folder on your OS. In the above example, you can edit `tutorial/inlist_project` to change the input parameters for the run in your preferred text editor, or open `tutorial/LOGS/history.data` to see some of the output from the run. @@ -153,7 +153,8 @@ New containers should be built soon after there is an official release announcem in the MESA-Docker repository. If you want to run with a MESA version other than the latest public release, use the optional argument `-v` along with one of the supported version numbers: -* r21.12.1 (latest, default) +* r22.05.1 (latest, default) +* r21.12.1 * 15140 * 12778 * 12115 @@ -178,7 +179,7 @@ Docker will automatically cache the (several GB) image the first time you call t This will show you all the images and how much space they are taking up. You should be able to remove the MESA-Docker image with the command - docker rmi evbauer/mesa_lean:r21.12.1.01 + docker rmi evbauer/mesa_lean:r22.05.1.01 ### Windows 10 Home diff --git a/linux_dockerMESA.sh b/linux_dockerMESA.sh index a5337f2..9f586fa 100755 --- a/linux_dockerMESA.sh +++ b/linux_dockerMESA.sh @@ -3,11 +3,11 @@ usage="$(basename "$0") [-h] [-v num] options: -h show this help text - -v MESA version number. r21.12.1 (default), 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793." + -v MESA version number. r22.05.1 (default), r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793." OPTIND=1 # Reset in case getopts has been used previously in the shell. # Initialize variables: -version=r21.12.1 +version=r22.05.1 while getopts "hv:" opt; do case "$opt" in h) echo "$usage" @@ -43,6 +43,8 @@ case "$version" in ;; r21.12.1) tag=r21.12.1.01 ;; + r22.05.1) tag=r22.05.1.01 + ;; esac #echo $tag diff --git a/mac_dockerMESA.sh b/mac_dockerMESA.sh index 6628e26..4511c43 100755 --- a/mac_dockerMESA.sh +++ b/mac_dockerMESA.sh @@ -3,11 +3,11 @@ usage="$(basename "$0") [-h] [-v num] options: -h show this help text - -v MESA version number. r21.12.1 (default), 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793." + -v MESA version number. r22.05.1 (default), r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793." OPTIND=1 # Reset in case getopts has been used previously in the shell. # Initialize variables: -version=r21.12.1 +version=r22.05.1 while getopts "hv:" opt; do case "$opt" in h) echo "$usage" @@ -43,6 +43,8 @@ case "$version" in ;; r21.12.1) tag=r21.12.1.01 ;; + r22.05.1) tag=r22.05.1.01 + ;; esac #echo $tag diff --git a/win_dockerMESA.sh b/win_dockerMESA.sh index f6957ae..8abd6dd 100755 --- a/win_dockerMESA.sh +++ b/win_dockerMESA.sh @@ -18,11 +18,11 @@ fi usage="$(basename "$0") [-h] [-v num] options: -h show this help text - -v MESA version number. r21.12.1 (default), 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793." + -v MESA version number. r22.05.1 (default), r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793." OPTIND=1 # Reset in case getopts has been used previously in the shell. # Initialize variables: -version=r21.12.1 +version=r22.05.1 while getopts "hv:" opt; do case "$opt" in h) echo "$usage" @@ -58,6 +58,8 @@ case "$version" in ;; r21.12.1) tag=r21.12.1.01 ;; + r22.05.1) tag=r22.05.1.01 + ;; esac #echo $tag diff --git a/win_home_dockerMESA.sh b/win_home_dockerMESA.sh index b80e4b0..bd3adb1 100755 --- a/win_home_dockerMESA.sh +++ b/win_home_dockerMESA.sh @@ -19,12 +19,12 @@ fi usage="$(basename "$0") [-h] [-v num] [-d let] options: -h show this help text - -v MESA version number. r21.12.1 (default), 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793. + -v MESA version number. r22.05.1 (default), r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793. -d letter for drive to install on. Default is C." OPTIND=1 # Reset in case getopts has been used previously in the shell. # Initialize variables: -version=r21.12.1 +version=r22.05.1 # default drive letter: install_drive=C @@ -65,6 +65,8 @@ case "$version" in ;; r21.12.1) tag=r21.12.1.01 ;; + r22.05.1) tag=r22.05.1.01 + ;; esac #echo $tag