Skip to content

Commit 674acc0

Browse files
committed
update for r24.03.1
1 parent 6c87110 commit 674acc0

5 files changed

+21
-12
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ One solution is MESA-Web (http://user.astro.wisc.edu/~townsend/static.php?ref=me
1515
* Students with class projects
1616
* Windows users
1717

18-
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-r23.05.1/installation.html. Some advanced performance features such as rate caching are not available through this Docker interface.
18+
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-r24.03.1/installation.html. Some advanced performance features such as rate caching are not available through this Docker interface.
1919

2020

2121

@@ -127,7 +127,7 @@ To test that everything is working, you might want to follow these steps for a q
127127
./mk
128128
./rn
129129

130-
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-r23.05.1/quickstart.html#using-mesa.
130+
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-r24.03.1/quickstart.html#using-mesa.
131131

132132
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.
133133

@@ -153,7 +153,8 @@ New containers should be built soon after there is an official release announcem
153153
in the MESA-Docker repository.
154154

155155
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:
156-
* r23.05.1 (latest, default)
156+
* r24.03.1 (latest, default)
157+
* r23.05.1
157158
* r22.11.1
158159
* r22.05.1
159160
* r21.12.1
@@ -181,7 +182,7 @@ Docker will automatically cache the (several GB) image the first time you call t
181182

182183
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
183184

184-
docker rmi evbauer/mesa_lean:r23.05.1.01
185+
docker rmi evbauer/mesa_lean:r24.03.1.01
185186

186187
### Windows 10 Home
187188

linux_dockerMESA.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
usage="$(basename "$0") [-h] [-v num]
44
options:
55
-h show this help text
6-
-v MESA version number. r23.05.1 (default), r22.11.1, r22.05.1, r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793."
6+
-v MESA version number. r24.03.1 (default), r23.05.1, r22.11.1, r22.05.1, r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793."
77

88
OPTIND=1 # Reset in case getopts has been used previously in the shell.
99
# Initialize variables:
10-
version=r23.05.1
10+
version=r24.03.1
1111
while getopts "hv:" opt; do
1212
case "$opt" in
1313
h) echo "$usage"
@@ -49,6 +49,8 @@ case "$version" in
4949
;;
5050
r23.05.1) tag=r23.05.1.01
5151
;;
52+
r24.03.1) tag=r24.03.1.01
53+
;;
5254
esac
5355

5456
#echo $tag

mac_dockerMESA.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
usage="$(basename "$0") [-h] [-v num]
44
options:
55
-h show this help text
6-
-v MESA version number. r23.05.1 (default), r22.11.1, r22.05.1, r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793."
6+
-v MESA version number. r24.03.1 (default), r23.05.1, r22.11.1, r22.05.1, r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793."
77

88
OPTIND=1 # Reset in case getopts has been used previously in the shell.
99
# Initialize variables:
10-
version=r23.05.1
10+
version=r24.03.1
1111
while getopts "hv:" opt; do
1212
case "$opt" in
1313
h) echo "$usage"
@@ -49,6 +49,8 @@ case "$version" in
4949
;;
5050
r23.05.1) tag=r23.05.1.01
5151
;;
52+
r24.03.1) tag=r24.03.1.01
53+
;;
5254
esac
5355

5456
#echo $tag

win_dockerMESA.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ fi
1818
usage="$(basename "$0") [-h] [-v num]
1919
options:
2020
-h show this help text
21-
-v MESA version number. r23.05.1 (default), r22.11.1, r22.05.1, r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793."
21+
-v MESA version number. r24.03.1 (default), r23.05.1, r22.11.1, r22.05.1, r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793."
2222

2323
OPTIND=1 # Reset in case getopts has been used previously in the shell.
2424
# Initialize variables:
25-
version=r23.05.1
25+
version=r24.03.1
2626
while getopts "hv:" opt; do
2727
case "$opt" in
2828
h) echo "$usage"
@@ -64,6 +64,8 @@ case "$version" in
6464
;;
6565
r23.05.1) tag=r23.05.1.01
6666
;;
67+
r24.03.1) tag=r24.03.1.01
68+
;;
6769
esac
6870

6971
#echo $tag

win_home_dockerMESA.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ fi
1919
usage="$(basename "$0") [-h] [-v num] [-d let]
2020
options:
2121
-h show this help text
22-
-v MESA version number. r23.05.1 (default), r22.11.1, r22.05.1, r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793.
22+
-v MESA version number. r24.03.1 (default), r23.05.1, r22.11.1, r22.05.1, r21.12.1, 15140, 12778, 12115, 11701, 11554, 11532, 10398, 10108, 10000, or 9793.
2323
-d letter for drive to install on. Default is C."
2424

2525
OPTIND=1 # Reset in case getopts has been used previously in the shell.
2626
# Initialize variables:
27-
version=r23.05.1
27+
version=r24.03.1
2828
# default drive letter:
2929
install_drive=C
3030

@@ -71,6 +71,8 @@ case "$version" in
7171
;;
7272
r23.05.1) tag=r23.05.1.01
7373
;;
74+
r24.03.1) tag=r24.03.1.01
75+
;;
7476
esac
7577

7678
#echo $tag

0 commit comments

Comments
 (0)