This repository includes software to analyze the GRAVITY-VLTI data of the AGB Mira star R Car.

1. RCar - GRAVITY

This section contains a series of scripts (in the form of a Jupyter notebook) used for analyzing GRAVITY-VLTI data of the M-type AGB star R Car (see Rosales-Guzman et al. (2023) ). The Jupyter notebook is divided into the following 3 parts. To run the codes, just download the repository and open the Jupyter notebook RCar_analysis.ipynb to star working with it using the following command:


>> user@users_pc ~ % Jupyter notebook RCar_analysis.ipynb

Required packages (Python > 3.0):

  1. Astropy
  2. emcee
  3. lmfit
  4. matplotlib
  5. numpy
  6. Open CV
  7. scipy
  8. sklearn
  9. oitools.py (provided)

MCMC fit to the V2 across the pseudo continuum

To obtain the angular size of R Car across the K-band, we applied a geometrical model of a uniform disk (UD) to the V2 data. The visibility function of our models is given by the following equation (Berger & Segransan (2007)):

\[ V_{\mathrm{UD}}(u,v) = 2(\mathrm{F_r})\frac{J_1(\pi \rho \Theta_\mathrm{UD} )}{\pi \rho \Theta_{\mathrm{UD}}}\ \]

where \(\rho = \sqrt{u^2+ v^2}\), u and v are the spatial frequencies sampled by the interferometric observations, J1 is the first order Bessel function, ΘUD and Fr are the angular diameter of the uniform disk profile and a scaling factor that accounts for the over-resolved flux in the observations, respectively. To fit the data, we used a Monte-Carlo Markov-Chain (MCMC) algorithm based on the Python package emcee (Foreman et al., 2013). We let 250 walkers evolve for 150 steps using the data of each spectral bin independently. The results of this code are shown as three plots (Figs. 1, 2, and 3).

fringes_webb

Figure 1. Best-fit to the $V^2$ from the MCMC. The data are shown with red dots and the model with the blue line. The values corresponding to the best model are also shown in the plot.

fringes_webb

Figure 2. Positions of each walker as a function of the number of steps in the chain.

fringes_webb

Figure 3. The corner plot shows all the one and two dimensional projections of the posterior probability distributions of our parameters D (or $\Theta_{UD}$) and $F_r$. The marginalized distribution for each parameter is shown in the histograms along the diagonal. The marginalized two dimensional distribution is also plotted.

Single-layer model to fit the \(V^2\) across the first and second CO bandheads

The MOLsphere model, used to calculate the size, temperature, and optical thickness of the CO layer consists of a stellar disk with a compact layer around it. The star is modeled by a stellar surface of radius \(R_*\) which emits as a black-body at a temperature \(\mathrm{T_{*}}\). It is surrounded by a compact spherical layer of radius \(\mathrm{R_{L}}\) that absorbs the radiation emitted by the star and re-emits it like a black-body. The MOLsphere is characterized by its temperature \(\mathrm{T_{L}}\), radius \(\mathrm{R_L}\) and its optical depth \(\tau_{\lambda}\). The region between the stellar photosphere and the layer is assumed to be empty (See the figure for a skecth of the model). The analytical expression of the model is given by:

fringes_webb

where \(I_\lambda^r = I_{\lambda}^r(\mathrm{T_{*}} , \mathrm{T_L}, \mathrm{R_*}, \mathrm{R_L}, \tau_{\lambda})\), \(\mathrm{T_*}\) and \(\mathrm{T_L}\) are the temperatures of the photosphere and of the CO layer, respectively; \(\mathrm{R_*}\) and \(\mathrm{R_L}\) are the angular radius of the star and the layer, respectively; \(\tau_\lambda\) is the optical depth of the molecular layer at wavelength \(\lambda\); \(B_\lambda(\mathrm{T})\) is the Planck function (at wavelength \(\lambda\) and temperature T); and \(\beta\) is the angle between the radius vector and the line-of-sight so that \(\cos\beta = \sqrt{1-(\mathrm{r}/\mathrm{R_L})^2}\).

For the fitting, we adopted a \(\mathrm{T_{*}}\)=2800 K and \(\mathrm{R_{*}}\)=5 mas (Monnier et al., 2014; McDonald et al., 2012). We use the disk estimation reported in the H- band because it is considerably less affected from molecular contribution, in contrast with the K-band where molecules like CO, \(H_{2}O\), and OH among others (see e.g. Wittkowski et al., 2018; Paladini 2011) are present over the entire band. The unknown parameters are then \(\mathrm{T_L}\), \(\mathrm{R_L}\) and \(\tau_L\). We performed a two-step process to estimate these parameters. As first step, for each pair of \(\mathrm{T_L}\) and \(\mathrm{R_L}\), we performed a least-squares minimization to find the best-fit value of \(\tau_L\) that reproduces the spectrum \(F_{\lambda}^{\mathrm{R Car}}\). The next step consisted of using an MCMC method based on the Python library emcee to estimate the best combinations of \(\mathrm{T_L}\), \(\mathrm{R_L}\), and \(\tau_L\) that reproduce the \(V^2\).

To account for the over-resolved flux when modeling the \(V^2\) data, we added a scaling factor Fr. This value was estimated simultaneously with the other parameters in the model.

fringes_webb

Figure 4. Illustration of the single-layer model. The yellow disk represents the star, and the orange ring represents the layer. The parameters in the image are as described in the text above.

Figs. 5 and 6 are generated by the single-layer model part of the notebook.

fringes_webb

Figure 5. Best-fit to the V2 using the Single-layer model. The green dots correspond to the data and the purple ones to the fit (see the labels on the plot). The best-fit parameters are shown in the top right corner of the figure.

fringes_webb

Figure 6. Corner plot of all the one and two dimensional projections of the posterior probability distributions of our parameters TL, RL and Fr. As shown in Fig. 3, the marginalized distribution for each parameter is located in the histograms along the diagonal.

2. Bootstrapp method for image reconstruction

To build new data samples from the original one, we employed the bootstrap technique. The samples were created by keeping the original number of data points unaletered, but allowwing random sampling with replacement. This created some data sets where some points have higher weights than in the original data set, and some others with zero weights. This algorithm also produces slight changes in the u-v plane, which allows us to trace the impact of the u-v coverage on the reconstructed images, without loosing the statistical significance of the original number of data points (see Fig. 7). According to Babu & Singh 1983, the statistical moments such as mean, variance and standard deviation of the bootstrapped samples are good approximations to the statistical moments of the original data sets. Finally, since each bootstrapped data set is different, we will have slightly different reconstructed images.

fringes_webb

Figure 7. From left to right: $V^2$ and CPs as a function of the Spatial Frequency, and UV coverage for a sample of ten bootstrapped data sets. Each color corresponds to a different bootstrapped data set.

3. Principal Component Analysis (PCA) to understand the structure of R Car

To have a more precise characterization of the asymmetries in the reconstructed images of the CO band-heads, we used the Principal Component Analysis (PCA) described by Medeiros et al., 2018. Those authors demonstrate that the visibilities of the Principal Components are equal to the Principal Components of the visibilities. This method is useful to trace the changes across a set of images that have the largest effect on the visibility (amplitude and -closure- phase) profile. In our case, we estimate the most significant structural changes of the observed asymmetric structures across wavelength for each of the observed epochs. The following procedure was applied to the ensemble of wavelength dependent images per epoch to extract their Principal Components.

For the PCA analysis, we normalize each data set by subtracting the corresponding mean image and dividing by their standard deviation image across the wavelength range. To perform the PCA analysis, we used the CASSINI-PCA package. This software allows to compute the covariance matrix of the data set and to transform it into the space of the principal components. This allows us to determine the eigenvectors (or eigen-images, in our case) and their corresponding eigenvalues. Since we only have seven images per data set, and the possible number of components must be smaller or equal than the number of images in the data set, we decided to only keep the first four principal components. From our tests, we observed that those components explain, at least, the 93\% of the variance in the data sets.

fringes_webb

Figure 8. First four Principal Components for the January epoch for the 1st CO band head. The relative scale of the structures in the eigen-images is displayed with a colorbar at the bottom of each panel. Only the central 20 mas of the eigen-images are shown on each panel. The white contours correspond to the mean image across wavelength (per given data set) and they represent 10, 30, 50, 70, 90, 95, 97, and 99 % of the intensity's peak.

fringes_webb

Figure 9. Representative example of the CPs versus spatial frequencies of the data set that corresponds to the 1st CO band-head at 2.2946 μm (gray squares). The colored dots show the CPs from the recovered images obtained with different numbers of Principal Components (see label on the plot).

Disclaimer

All the scripts that compose this repository are part of the A&A article Imaging the innermost gaseous layers of the Mira star R Car with GRAVITY-VLTI from Rosales-Guzman et al. For enquiries and/or contributions please contact jarosales@astro.unam.mx, who is a PhD student associated with this project.