Metadata-Version: 2.1
Name: pymoog
Version: 0.0.1
Summary: The python wrapper to run LTE spectra synthesis code MOOG.
Home-page: https://github.com/MingjieJian/ir_ldr
Author: Mingjie Jian, Pranav Satheesh and Kruthi Krishna
Author-email: ssaajianmingjie@gmail.com
License: UNKNOWN
Description: # pymoog
        
        [![Documentation Status](https://readthedocs.org/projects/pymoog/badge/?version=latest)](https://pymoog.readthedocs.io/en/latest/?badge=latest)
        
        > We present you a black-box.
        
        `pymoog` is a python3 wrapper for running the LTE spectrum synthesis part of the code [MOOG](https://www.as.utexas.edu/~chris/moog.html) by Chris Sneden.
        The synthetic spectra from optical to near infrared region of the model stars in Kurucz model ATLAS can be generated by `pymoog` in a few commands.
        This package can be run in Linux or Mac system.
        
        ![](demo_sun/spectra.png)
        *Part of the infrared observed (from [BASS2000](http://bass2000.obspm.fr/solar_spect.php)) and synthetic solar spectra by MOOG*
        
        There is also [a stand-alone version](https://github.com/MingjieJian/moog_nosm) of the MOOG used in this package.
        
        ## Installation
        
        ### Install gfortran compilar
        
        [gfortran](https://gcc.gnu.org/wiki/GFortran) is a free Fortran compiler as a part of GCC.
        Although it is possible to use other Fortran compiler to compile MOOG, using gfortran is (to my experience) the mose easy one and thus pymoog requires gcc to be installed before pip install. 
        
        - Check whether gfortran is installed in your computer
        
        Type `gfortran` in the terminal; if you get:
        
        ```
        gfortran: fatal error: no input files
        compilation terminated.
        ```
        
        then gfortran is already installed and please go to [Install pymoog](#install-pumoog). 
        
        If you get:
        
        ```
        command not found: gfortran
        ```
        
        then you need to install gfortran.
        
        - Linux: `sudo apt install gcc`
        
        -  Windows: please use [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/) and follow the instruction for Linux.
        
        - Mac: please refer to [this post](https://discussions.apple.com/thread/8336714); the main point is using `brew` to install (`brew install gcc`).
        I have no experience on using Mac so I haven't test it. 
        
        ### <a name="install-pymoog"></a>Install pymog
        
        - `clone` this repository and `cd` into the corresponding folder;
        - `pip install .`
         
        
        ## Tutorial
        
        Once you are done with the installation, you can use the `pymoog` package now on your code!
        
        For tutorial, Please refer to [this notebook](docs/Tutorial.ipynb).
        
        Documentation is available in [here](https://pymoog.readthedocs.io/en/latest/).
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Framework :: IPython
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Scientific/Engineering :: Astronomy
Description-Content-Type: text/markdown
