{% extends "base.html" %} {% block content %}

Limb Darkening Calculator


The Limb Darkening Calculator calculates limb-darkening coefficients for a specified stellar model, plotting results versus intensity ratio and wavelength. It uses high spectral resolution stellar atmospheric models, which are a neccesisty given JWST's expected precision.

{{ form.hidden_tag() }} {% include 'target_resolve.html' %}
\(T_\text{eff}\)
{{ form.teff(value=form.teff.data, size=10, rows=1, class='form-control') }}
K
The stellar effective temperature ({{ form.teff.validators[1].min }} - {{ form.teff.validators[1].max }})
\(\log (g)\)
{{ form.logg(value=form.logg.data, size=10, placeholder="3 - 6", rows=1, class='form-control') }}
dex
The logarithm of the stellar surface gravity ({{ form.logg.validators[1].min }} - {{ form.logg.validators[1].max }})
\([\text{Fe}/\text{H}]\)
{{ form.feh(value=form.feh.data, size=10, placeholder="-0.5 - +0.5", rows=1, class='form-control') }}
dex
The logarithm of the stellar metallicity ({{ form.feh.validators[1].min }} - {{ form.feh.validators[1].max }})
Minimum \(\mu\)
{{ form.mu_min(size=10, placeholder="0 - 1", rows=1, class='form-control') }}
The minimum angle to consider when fitting the LD profile
{% for error in form.teff.errors[:1] %}

{{ error }}

{% endfor %} {% for error in form.logg.errors[:1] %}

{{ error }}

{% endfor %} {% for error in form.feh.errors[:1] %}

{{ error }}

{% endfor %} {% for error in form.mu_min.errors[:1] %}

{{ error }}

{% endfor %}

{% for subfield in form.modeldir %}
{% if subfield.label.text == 'Kurucz ATLAS9' %} {{ subfield(style='margin-left:0px;', id='atlas9', checked='checked') }}{{ subfield.label }} {% else %} {{ subfield(style='margin-left:0px;', id='aces') }}{{ subfield.label }} {% endif %}
{% endfor %}
{% for error in form.modeldir.errors %} {{ error }} {% endfor %} {{ form.modelgrid_submit(id='modelgridsubmit', style="visibility: hidden;") }}

{{ form.filter_submit(id='filtersubmit', style="visibility: hidden;") }}
\(\lambda_\text{min}\)
{{ form.wave_min(value=form.wave_min.data, size=10, rows=1, class='form-control') }}
\(\mu\)m
The minimum wavelength to use
\(\lambda_\text{max}\)
{{ form.wave_max(value=form.wave_max.data, size=10, rows=1, class='form-control') }}
\(\mu\)m
The maximum wavelength to use
# channels
{{ form.n_bins(value=form.n_bins.data, size=10, rows=1, class='form-control') }}
The number of channels to use (for grisms)
{% for error in form.bandpass.errors %}

{{ error }}

{% endfor %} {% for error in form.wave_min.errors %}

{{ error }}

{% endfor %} {% for error in form.wave_max.errors %}

{{ error }}

{% endfor %} {% for error in form.n_bins.errors %}

{{ error }}

{% endfor %}

{% for box in form.profiles %}
{% if box.label.text == 'quadratic' %} {{ box(style='margin-right:-10px;', checked='checked') }}{{ box.label }} {% else %} {{ box(style='margin-right:-10px;') }}{{ box.label }} {% endif %}
{% endfor %}

{% for error in form.profiles.errors %} {{ error }} {% endfor %}

{{ form.calculate_submit(class="btn btn-success") }} This can take up to 20 seconds! Please be patient.

{% endblock %}