Skip to content

Commit

Permalink
Initial import of MESA r15140
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwab committed Dec 16, 2020
0 parents commit 13fe30d
Show file tree
Hide file tree
Showing 4,788 changed files with 3,223,738 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# 3 space indentation
[*.f90]
indent_style = space
indent_size = 3
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.gz filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.mod filter=lfs diff=lfs merge=lfs -text
80 changes: 80 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
## Compilation
build.log
.depend
.order
*.a
**/make/*.f
**/make/*.f90
**/make/*.mod
**/make/*.smod
*.o
*.so
/lib/
/include/


## Debugging/Profiling
gmon.out
callgrind.out*
massif.out*
valgrind.out*


## Diffs/Patches
*.orig
*.patch
*.rej


## Documentation
/dox/


## Executables
*.x


## Output
**/LOGS/
**/LOGS1/
**/LOGS2/
**/photos/
**/png/


## Restarts
.restart
restart_photo


## Testing
**/test/diff.txt
**/test/plotter
**/test/sample
**/test/tester
**/test/test_quietly
**/test/test_quietly.txt
**/test/tmp.txt


## Test Suite
.running
checks.md5
err.txt
mem-rn.txt
mem-re.txt
out.txt
final.mod
final_check.mod
final_check_diff.txt
final_profile.data
final_profile_check.data
test_results.yml
testhub.yml


## Misc
._*
.DS_Store
.mesa_temp_cache/
TAGS
14 changes: 14 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/source/conf.py

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
8 changes: 8 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# By default, Bill owns all code.
* @bill-paxton

star/private/eps_mdot.f90 @adamjermyn
auto_diff/* @adamjermyn
Loading

0 comments on commit 13fe30d

Please sign in to comment.