#!/bin/bash

# Plot the components of the master ligcturves in master_lightcurves/figures.
python lightcurves.py plot master_lightcurves/*.ftr

# 'simple' simulations (no systematics or starspot signals).
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/simple_noplanet/cadence_25s/ --components random granulation oscillations
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/simple_inner/cadence_25s/ --components random granulation oscillations --transit inner
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/simple_outer/cadence_25s/ --components random granulation oscillations --transit outer
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/simple_inner_ecc/cadence_25s/ --components random granulation oscillations --transit inner_ecc
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/simple_outer_ecc/cadence_25s/ --components random granulation oscillations --transit outer_ecc

# 'full' simulations (including all stellar and instrumental signals).
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/full_noplanet/cadence_25s/ --components random granulation oscillations systematics spots
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/full_inner/cadence_25s/ --components random granulation oscillations systematics spots --transit inner
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/full_outer/cadence_25s/ --components random granulation oscillations systematics spots --transit outer
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/full_inner_ecc/cadence_25s/ --components random granulation oscillations systematics spots --transit inner_ecc
python lightcurves.py generate master_lightcurves/*.ftr lightcurves/full_outer_ecc/cadence_25s/ --components random granulation oscillations systematics spots --transit outer_ecc
