Archive for 2018

Installing Debian on Lenovo Thinkpad Carbon X-1 (Gen 6)

Posted December 17, 2018 By grigoris

It is exciting to have a new machine, such the Lenovo Thinkpad X-1, but the process for setting it up can be a bit tedious. So this is a small guide what worked or didn’t through my small experience in installing Debian linux. [Just for the fun of it I proceeded with the installation of Win which was really easy with all vocal commands! But they wouldn’t live long … ]

BIOS boot

I started by downloading the net/CD image for Debian 9 (‘stretch’) and putting it to a USB key. I plugged the key at the laptop and started the booting process. First problem: even though it could see the USB and it showed the Debian distro it wouldn’t start. I couldn’t figure out at all why up to the point that I noticed that the new hardware has new BIOS technology called UEFI (yes … I hadn’t installed anything for a looong time!). I went to BIOS > Startup > UEFI/Legacy Boot which was ‘UEFI only’ and I changed the CSM Support to ‘Yes’. But this alone was not enough. So, I changed the UEFI/Legacy Boot from ‘UEFI only’ to ‘Both’ [where I think it should be also to put ‘Legacy only’ if you plan to run on Linux only, but if Win are necessary then leave both].

Debian installation

Then the USB key would finally load and the installation could start. With the graphical installation of Debian the screen goes blank after some time of inactivity, which you can correct with a small movement of the mouse. But since I didn’t have any mouse connected I though that something was wrong. It took me a few iterations before I understand that, which I find ridiculous when you install an operating system. I think that the monitor should be on at all times! The installation went on without any other issues. After logging in the new system, I updated all packages.

Trackpoint/Trackpad issue

At the beginning the trackpad (touchpad) could work with some lag. The trackpoint didn’t work at all but I didn’t pay any serious attention to that. I installed the wifi driver (firmware-iwlwifi, for Intel chips) and after that the touchpad wouldn’t work at all. This is a known problem and many solutions are offered (updating to latest kernel 4.18 and to Debian testing didn’t work). However (and after some iterations of the installation process) I finally went to BIOS > Config > Keyboard/Mouse > Trackpoint and I ‘Disabled’ it. That way the touchpad works without any issue. [At this point it is not so urgent for me to fix this, but I will come back in the future].

Suspend mode

There is a know issue that certain BIOS version have serious problems to recover when suspending the laptop. I learned that the hard way: after suspending the laptop when I was trying to put my password over and over again, as every time it would accept only a few characters before it accepted that raised errors of incorrect password. I had to brutally shut it down (pressing the power button) but for whatever reason the x-server would start. So I had only text access and I couldn’t restarted it (of course I may have missed some more appropriate approaches). Anyway, I re-install Debian from scratch. In order to solve that I needed to update the BIOS.

BIOS update with fwupd

There is a new easy way to update firmware and BIOS through Linux by using the fwupd. After the fresh installation I set this as my first target before I install anything else. fwupd was at Debian repository so it was simply to install it. And the instruction are really easy to follow. Only do ‘fwupdmgr refresh’ to get the latest metadata for you firmware. But at this point it was failing to connect to the webpage (error message: “Failed to download https://s3.amazonaws.com/lvfsbucket/downloads/firmware.xml.gz.asc: Not Found”). The issue (Debian bug #912414) was simply a wrong site, which was easy to fix by going to the config file “/etc/fwupd.conf” and replace: “DownloadURI=https://s3.amazonaws.com/lvfsbucket/downloads/firmware.xml.gz” with the new site: “DownloadURI=https://cdn.fwupd.org/downloads/firmware.xml.gz”. That should do the work, right? NO! Because the version of fwupd installed in Debian 9 is 0.7 and according to Richard Hughsie: “LVFS will block old versions of fwupd for some firmware […] The ability to restrict firmware to specific versions of fwupd and the existing firmware version was added to fwupd in version 0.8.0. This functionality was added so that you could prevent the firmware being deployed if the upgrade was going to fail, either because: i. The old version of fwupd did not support the new hardware quirks, ii. If the upgraded-from firmware had broken upgrade functionality. Then, let’s upgrade fwupd by upgrading (at the same time it would be nice to have a fully fresh new system) and I switched the repositories to Debian 10 (testing, named ‘buster’), upgrading also the Linux kernel from 4.9 to 4.18. And indeed the fwupd now was working! Almost…

BIOS update with USB key

I run fwupd to get the latest BIOS version but it refused. The installed version was 1.25 while only those >1.27 are upgradable with fwupd. Now the only solution is the classic one, i.e. download the last Thinkpad BIOS update (bootable, for Windows) and install it directly from a USB. After having downloaded the .iso image I followed the instructions by Vivek Gite (with most important part the video showing what to do during the actual BIOS installation).

[In brief, using the El Torito boot image extractor (debian package name: genisoimage) do the following:
geteltorito -o bios.img n23ur13w.iso
sudo dd if=bios.img of=/dev/sdb1 bs=1M

Take care that you know exactly which device is the USB key you are going to write to, else you are going to delete data!
Then reboot and enter BIOS and boot from the USB. Select option 3 to verify that you have the right model (in case you press something and you cannot cancel just retype the model number) and then press 2 to start the actual BIOS update. This will run some things now and then when you reboot it will continue before it shows the booting screen.]

Crossing fingers and … booting again! phew… everything is working and indeed I have now the latest version (1.34).

As a (much) later version of the BIOS it should have fixed the issue with suspending mode. Did it work? So far I have experienced any critical issues. What I did noticed though is that that I could feel it a bit hot when suspending. I was going through the BIOS setting and I discovered that there is an option now with respect to the sleep state (I don’t know if it was present in the previous version): Config > Power > Sleep State, which has two options ‘Windows 10’ and ‘Linux’. I obviously picked the last one to optimize the performance and I think it is working now.

Python pip

Finally, the time that I would actually install what I need to start working has arrived! Since Python2.x and 3.x exist I was going to use pip only to install all necessary packages. I installed pip for both Python versions from the distro repositories. Checking the pip site I saw the following recommendation: “Ensure pip, setuptools, and wheel are up to date, by doing: python -m pip install –upgrade pip setuptools wheel”.

Well, first of all … DON’T DO IT! I missed the obvious warning sign above:

Warning
Be cautious if you’re using a Python install that’s managed by your operating system or another package manager. get-pip.py does not coordinate with those tools, and may leave your system in an inconsistent state. You can use python get-pip.py –prefix=/usr/local/ to install in /usr/local which is designed for locally-installed software.

By default the pip version provided by the Debian repositories is 9.x. When I did this upgrade I got the latest version of 18.x and I went on to install numpy, scipy, matplotlib. But when I started python to try out the installation nothing was working! Even worse:

pip install astropy
Traceback (most recent call last):
File "/usr/bin/pip3", line 9, in from pip import main
ImportError: cannot import name 'main'

What is going on now? Apparently is it not a good idea to upgrade with pip a system installation of pip, as then pip gets confused of which version to use exactly and, even worse, some scripts managed by apt may break (see e.g. the discussion in github issues #5447 and #5221). So the two important advice here are:
1. upgrade/install under user (with –user)
2. avoid running pip with sudo (which may affect root accessed files)

I found various ways to fix this over the internet, but I opted for a more … brutal way. I noticed that when installing Python packages from the repositories of the distribution everything is installed under the /usr/lib/python*.*/dist-packages/ while pip puts everything under /home/user/.local/lib/site-packages/. So, the idea was to remove (manually delete) everything under these directories. Then I could re-install pip and the Python packages and it should be clean from all errors. I did that but I continued to get errors, but probably that was because I didn’t re-source the terminal (so paths to the previous packages and scripts were still active). After a reboot I found everything working fine. [One note: after a fresh installation everything is new, such as the content of $PATH. When I installed jupyter and tried to run it I got an error “command not found”, obviously because I forgot to update the $PATH to include the ~/.local/bin/ directory, where binaries from pip are stored.]

 

Other resources

The above is a personal (certainly not the wisest) experience to install Debian 9/10 (stable/testing) to Thinkpad X-1. There are also more thorough and knowledgeable guides out there (which I have to check also for other issues), such as:
–> Installing Debian On Thinkpad X1 Carbon 5th Gen (previous generation)
–> Lenovo ThinkPad X1 Carbon (Gen 6) by Arch linux

New paper on rho Cas and its recent outburst in 2013

Posted December 11, 2018 By grigoris

A new outburst of the yellow hypergiant star Rho Cas

Michaela Kraus, Indrek Kolka, Anna Aret, Dieter H. Nickeler, Grigoris Maravelias, Tõnis Eenmäe, Alex Lobel, Valentina G. Klochkova

Yellow hypergiants are evolved massive stars that were suggested to be in post-red supergiant stage. Post-red supergiants that evolve back to the blue, hot side of the Hertzsprung-Russell diagram can intersect a temperature domain in which their atmospheres become unstable against pulsations (the Yellow Void or Yellow Wall), and the stars can experience outbursts with short, but violent mass eruptions. The yellow hypergiant Rho Cas is famous for its historical and recent outbursts, during which the star develops a cool, optically thick wind with a very brief but high mass-loss rate, causing a sudden drop in the light curve. Here we report on a new outburst of Rho Cas which occurred in 2013, accompanied by a temperature decrease of ~3000 K and a brightness drop of 0.6 mag. During the outburst TiO bands appear, together with many low excitation metallic atmospheric lines characteristic for a later spectral type. With this new outburst, it appears that the time interval between individual events decreases, which might indicate that Rho Cas is preparing for a major eruption that could help the star to pass through the Yellow Void. We also analysed the emission features that appear during phases of maximum brightness and find that they vary synchronous with the emission in the prominent [CaII] lines. We conclude that the occasionally detected emission in the spectra of Rho Cas, as well as certain asymmetries seen in the absorption lines of low to medium-excitation potential, are circumstellar in nature, and we discuss the possible origin of this material.

arXiv.org: 1812.03065

Building upon our previous ATel #12224 we managed to obtain an optical spectrum of the counterpart. The full text follows:

ATel #12237; G. Maravelias (NOA), V. Antoniou (TTU/SAO), K. Boutsia (LCO), A. Zezas (UoC/SAO), A. Z. Bonanos (NOA), F. Haberl (MPE), D. Hatzidimitriou (UoA/NOA)

on 21 Nov 2018; 23:36 UT /

In ATel #12224 we reported the Hα emission, derived from a wide-field photometric survey of the Small Magellanic Cloud (Maravelias et al. 2017, IAUS 329, 373; Maravelias et al. 2019, in prep.), of the proposed optical counterpart source [M2002] 20671 to the X-ray transient XTE J0052-723 pulsar (SXP 4.78; Swift J005139.2-721704; ATel #12209). In addition to this clear detection, the work of Bonanos et al. (2010, AJ, 140, 416) showed that the IR colors of this source ([2dFS]0811; J=15.54 mag, J-[3.6]=0.56 mag) are indicative of a “photometric” Be star, defined as sources with an intrinsic color of JIRSF-[3.6]>0.5 mag.

However, to confirm the nature of the counterpart optical spectroscopy is needed. We obtained optical spectra using the LDSS-3 spectrograph on the 6.5m Clay/Magellan telescope (Las Campanas Observatory). The observations were performed on Nov. 20, 2018, acquiring two exposures of 600s each with a 1″ slit using the VPH-All grism (resulting in a 2630 — 10859 Å wavelength range, at a nominal dispersion of 1.9 Å/pix). The spectrum shows a clear single-peaked Hα line in emission, with a corresponding equivalent width of -10.65±0.14 Å. This is the first optical spectroscopic confirmation of the presence of Hα in emission. We note that Hβ appears in emission as well.

The spectral classification was based on the blue part of the spectrum and the classification scheme used in Maravelias et al. (2014, MNRAS, 438, 2005). The presence of the OII+CIII 4640-4650 blend and the strong HeI 4471 line point to an early-type star (spectral type up to B2), which is consistent with the absence of the MgII 4481 line and the weak SiII 4552 triplet line. The HeII 4200 and 4686 lines, which are indicative of B0.5 and earlier-spectral types, are absent, thus pointing to later types.

Combining these criteria we constrain the optical classification to a B1-2e source (with an error of 0.5 subtype). This is consistent with the early-type B star classification proposed in ATel #12229, as well as the previous classification of B0-B3 by Evans et al. (2004, MNRAS, 351, 601; source ID [2dFS]0811).

Thus, we provide the first optical spectrum with Hα emission of the optical counterpart of XTE J0052-723, further confirming its Be/X-ray binary nature.

The ATel #12224 was released on 17 Nov 2018 (19:01 UT) regarding the identification of the proposed optical counterpart to the source XTE J0052-723 (SXP 4.78; Swift J005139.2-721704) as an Hα emitting OB star. The full text follows.

ATel #12224; G. Maravelias (NOA), V. Antoniou (TTU/SAO), A. Zezas (UoC/SAO), A. Strantzalis (UoA), D. Hatzidimitriou (UoA), F. Haberl (MPE)

on 17 Nov 2018; 19:01 UT /

ATel #12209 reported the detection of a new X-ray transient in the Small Magellanic Cloud (SMC), Swift J005139.2-721704, exhibiting outbursting activity. The system has been classified as a new SMC high-mass X-ray binary based on its identification with the B-type star [M2002]20671. NICER followed up this source immediately (ATel #12219), reporting an absorption-corrected luminosity of LX ~7×1037erg s-1 (0.5-8 keV; 60 kpc). Temporal analysis of NICER and Fermi/GBM observations (ATel #12222) identified Swift J005139.2-721704 with the known X-ray pulsar XTE J0052-723 (SXP 4.78). Evans et al. (2004, MNRAS, 353, 601) obtained a refined B0-3(III) spectral type for [M2002]20671 (= [2dFS]0811) based on optical spectroscopy, but they do not report Hα emission.

Here, we report the identification of the SMC star [M2002]20671, and thus XTE J0052-723, with an Hα emitting source, which confirms XTE J0052-723 as a Be/X-ray binary (Be-XRB) pulsar in the SMC. This source is identified in Hα and R-band observations covering the SMC almost completely (Maravelias et al. 2017, IAUS 329, 373) using the Wide Field Imager on the 2.2m MPG/ESO telescope at La Silla (16/17 November 2011) and the MOSAIC-II camera on the 4m Blanco telescope at Cerro Tololo (15/16 December 2011).

The Hα emitting source is found at RA=00:51:38.78 and DEC=-72:17:04.7 (better than 0.2″ relative astrometry with respect to the 2MASS catalog). It is located 2.2″ away from the Swift position (ATel #12209), with Hα and R-band magnitudes equal to 15.476±0.006 and 15.613±0.008, respectively. The resulting Hα-R color is -0.137±0.010 mag with an SNR~13 above the continuum and an Hα excess significance of ~6σ above the Hα-R baseline value. The only nearby source with significant Hα-R excess is much fainter (Hα and R ~22 mag), has a lower SNR (~4) and is located at a larger distance from the X-ray source (~6″).

Observations with the IMACS f/2 camera on the 6.5m Magellan Telescope (4 October 2004) give B=15.652±0.009 mag and I=15.524±0.017 mag (Strantzalis et al. 2018, IAUS 344, 453; Strantzalis et al. 2019, in prep.), compatible with an OB star.

All the identifications described above secure the nature of Swift J005139.2-721704 = XTE J0052-723 = SXP 4.78 as Be-XRB pulsar in the SMC.

Contributions to the XXXth General Assembly of IAU

Posted November 19, 2018 By grigoris

During the XXXth General Assembly of the International Astronomical Union (in Vienna, Austria) I participated in a number of different meetings. In particular:

1. A poster at the IAU Focus Meeting FM14 on IAU’s role on global astronomy outreach, the latest challenges and bridging different communities (August 23, 2018):

“A paradigm to develop new contributors to Astronomy”

G. Maravelias, E. Vourliotis, K. Marouda, I. Belias, E. Kardasis, P. Papadeas, J. D. Strikis, E. Vakalopoulos, O. Voutyras

One of the most regular activities of amateur clubs is scientific outreach, a paramount chan-
nel to disseminate scientific results. It is typically performed through talks given by both ex-
perts (professional astronomers) and non-experts to a diverse audience, including amateur as-
tronomers. However, this is a rather passive, one-way, approach. The advance of technology
has provided all the tools that can help the audience/amateurs to become more active in the
scientific output. What is often missing is the proper guidance. To address that within the
Greek amateur community the Hellenic Amateur Astronomy Association materialized a train-
ing program (free-of-charge and open-accessed) to develop scientific thought and the practical
capabilities for amateurs to produce valuable results. The program ran from November 2014 to
May 2015 focusing each session (month) to: the Sun, variable stars, comets, planets, artificial
satellites, meteors. A professional and/or an experienced amateur astronomer was leading each
session consisting of a theoretical part (highlights of the field, necessary observational tech-
niques) and a hands-on part (observations and data analysis). At least 50 unique participants
gained significant experience by following parts or the complete program.

arXiv: 1810.04562

2. A talk at the meeting of Division G: Stars and Stellar Physics (August 24 and 27, 2018)

“Rings around B[e] Supergiants”

G. Maravelias, M. Kraus, L. Cidale, M. Borges Fernandes, M. L. Arias, A. F. Torres

Massive stars affect strongly the insterstellar medium through their intense stellar winds and their rich chemically processed material as they evolve. In specific short-lived transition phases (e.g. B[e] Supergiants, Luminous Blue Variables, Yellow Hypergiants) the mass-loss becomes more enhanced and usually eruptive. This leads to the formation of a complex circumstellar environment, which is not always well understood. To improve our knowledge on these phases we examined the structures found around the B[e] supergiants for a sample of Galactic and Magellanic Cloud sources. Using high-resolution optical and near-infrared spectra, we examine a set of key emission features ([OI], [CaII], CO bandheads) to trace their physical conditions and kinematics in their formation regions. Assuming Keplerian rotation of the circumstellar material we find that each B[e] Supergiant is surrounded by a unique distribution of single and/or multiple equatorial rings. Moroever, we find that these structures seem to be more stable and long-lived around single stars rather than binaries that show significant spectroscopic and photometric variability.

3. A poster at the IAU Symposium 346 on High-mass X-ray binaries: illuminating the passage from massive binaries to merging compact objects (August 27 – 31, 2018)

Clarifying the population of HMXBs in the Small Magellanic Cloud

G. Maravelias, A. Zezas, V. Antoniou, D. Hatzidimitriou, F. Haberl

Almost all confirmed optical counterparts of HMXBs in the SMC are OB stars with equatorial decretion disks (OBe). These sources emit strongly in Balmer lines and standout when imaged through narrow-band Hα imaging. The lack of secure counterparts for a significant fraction of the HMXBs motivated us to search for more. Using the catalogs for OB/OBe stars (Maravelias et al. 2017) and for HMXBs (Haberl & Sturm 2016) we detect 70 optical counterparts (out of 104 covered by our survey). We provide the first identification of the optical counterpart to the source XTEJ0050-731. We verify that 17 previously uncertain optical counterparts are indeed the proper matches. Regarding 52 confirmed HMXBs (known optical counterparts with Hα emission), we detect 39 as OBe and another 13 as OB stars. This allows a direct estimation of the fraction of active OBe stars in HMXBs that show Hα emission at a given epoch to be at least ∼ 75% of their total HMXB population.

arXiv: 1811.10933

And a short note:
I had opted to present the poster works as e-posters, i.e. displayed as an electronic pdf/presentation on interactive monitors which would be placed at each poster halls. The motivation behind this was the fact that the posters could be uploaded before the official start of each session and be available over the whole (two-week) period. But there were some issues:
1. There were only two monitors at each hall, so if somebody else was talking over their poster you had to wait… and wait… and wait… It happened to me that I wanted to show my poster to a colleague but some other people were in front of the monitor for such a long time that it became obvious that it would be easier finally to show it through my laptop.
2. It was not finally that appealing to use as somebody would have to go and see the list of all posters and select each poster to see in detail. In other words you couldn’t browser the posters like what you do when you walk around in the poster session. It would have been much nicer to have the posters rolling somehow randomly in the monitors and continuously to widen their visibility.
3. Interactive it might have been but it was not easy to navigate (e.g. change the session and see another than the active one at that time), while in many cases there were a few bugs (zooming in that resulted in hiding some presentations, or crashing during the slide change).

XXXth General Assembly of IAU – week 2

Posted October 31, 2018 By grigoris

The second week of the XXXth GA started very early actually as they were actually 3 plenary talks of the IAU 346 Symposium on “High-mass X-ray binaries: illuminating the passage from massive binaries to merging compact objects” (which actually deserves a post of its own, if I ever manage to make…). After that, we had the second day of the Division Days where I had a talk (in Division G) on the B[e] Supergiants (see for more the post on my contributions to this GA).

Apart from the scientific part there were again a lot of people (with an important percentage being different from the first week) going around the exhibition and the various happenings. One of them was of course the General Assembly itself.

The booth of Officina Stellare.

Display of a telescope system from PlaneWave Instruments.

The booths of ESA, ESO, and of the IAU’s Office of Astronomy for Development (2nd week).

Exhibition “boxes” for the 100 years of the IAU.

Before any official discussion engagement at the General Assembly, there was a musical performance:

One of the key issues to discuss in this assembly was the suggestion to rename the Hubble law to Hubble-Lemaitre law. There was actually a lively discussion with arguments from both sides. An indicative voting was made but the final decision will be based on a more detailed poll sent to all members of the IAU.

Although not formally decided, the revised Hubble-Lemaitre law was presented.

Presenting the resolution for renaming the Hubble law to Hubble-Lemaitre law (during the IAU GA 2018, in Viena)

The, indicative, voting process for the Hubble-Lemaitre law.

Then, the assembly proceed with more bureaucratic issues (among which was also the approval of new members, such myself!). Last but not least, there was the announcement for the organizer of the IAU GA of 2024 (as for 2021 is Korea) which is South Africa (after a strong competition with Mexico). The GA resolved with some folklore dance and music.

Another voting process during the IAU General Assembly of 2018.

At the very end of the GA, kids and adults (mainly from the IAU’s Office of Astronomy for Development) were playing with this giant Earth-like balloon.

The final day ended a bit earlier than others allowing us a bit more more time to relax. After all it was almost two weeks of many conferences and meetings in parallel that had developed considerable tiredness. I was more than happy to return home the next day and rest a bit more over the weekend, and enjoy some of the promotional stuff (see below!).

A small collection of various promotional stuff (pins, stickers, etc) and my badge from the IAU GA 2018 (and I have actually forgotten to put some more…!).

Various stuff from the IAU GA. I actually won this t-shirt at the lottery of the Korean booth (!).

Dinner time during IAU2018

Conferences feed the brain … but the body needs fuel too! Enjoying some local Viennese cuisine and wine.

A FOSSCOMM talk on Openess in Astronomy

Posted October 22, 2018 By grigoris

On the previous weekend (October 13-14, 2018) the 11th Free and Open Source Software Communities Meeting was held in Heraklion of Crete (Greece). This is the Greek conference of the communities that develop free and open source software (such as Mozilla, Fegora, etc.). Although the meeting focuses on programmers and students it is open to all parties with a strong interest in open processes including other areas beyond just the software, such as hardware, society, economy, etc. Starting in 2008, it has been organized in 6 different cities so far (but not in Heraklion!), gathering a few hundred participants each time.

With such a diverse and different audience we (myself, Antonis Manousakis, and Eva Ntormousi) thought that it would be a great opportunity to present our (relatively biased) collected experience of these processed and applications from the modern research in Astronomy. So the title and the corresponding abstract was:

“Examples of openess in Astronomy”

Grigoris Maravelias, Antonis Manousakis, Eva Ntormousi

Traditionally Astronomy is a collaborative science in the sense that many researchers collaborate to observe a phenomenon, and they share their observations for further analysis and interpretation. Building upon this tradition many observatories today make available their observations so that modern astronomers have access to large datasets. Additionally, the technological advance of the instruments allows the observation of the Universe almost at the entire electromagnetic spectrum, even at the very recently confirmed gravitational waves. Thus, the modern astronomers are not only required to understand the Astrophysics behind these huge datasets but often they are called to develop the own necessary tools to conduct their research. Given the knowledge and the vast volume of data available today the collaborations are, more than ever, vital (especially with the forthcoming large projects that are currently built, e.g. 30m telescopes). In the framework of modern Astronomy we are going to present successful examples of how open approach has been applied.

While presenting openess in Astronomy, during the Free and Open Source Software Community Meeting of 2018 in Heraklion, Greece.

While presenting openess in Astronomy, during the Free and Open Source Software Community Meeting of 2018 in Heraklion, Greece. [Copyright 2018 Pierros Papadeas, CC BY-SA-NC]

Openess in Astronomy v1.0 (FOSSCOMM talk in pdf, in Greek)

This particular talk is released under the CC-BY-SA license, so we are going to provide all necessary material along with the presentation. Although in Greek, most probably an english version will become also available in the future.

 

UPDATE 2019/06/24:
– After some time  I managed to put all the material of this talk under a github repository: https://github.com/gmaravel/OpeningAstronomy This will the place where I will put everything related with this subject in an effort to promote more Openness in Astronomy. Although this talk is actually in Greek, I will updated with an English version also.

– The video from the talk itself (in Greek though…) is available now here: https://www.youtube.com/watch?v=BmYRb7U2s4A

 

In Zickgraf et al. 1989 (A&A, 220, 206) there is a comment on the density of the disk around the supergiant LHA 115-S 18. In Table 1 they provide (following Waters 1986) the mean particle density at r=R* for a number of sources: 3.2 x 1012, 2.6 x 1012, 4.6 x 1012, 1.7 x 1012 cm-3 for sources S 18, S 12, S 134, and R 126, respectively. Having calculated a maximum disk radius of 300R*, they calculate a mean density of few 109 cm-3. These values are consistent with both estimates from IR emission and by McGregor et al. (1988), who independently found densities of about 109 cm-3 from the CO first overtone emission in S 12, S 134, and R 66.

Kick-off meeting at a new position!

Posted September 10, 2018 By grigoris

Today it was my first day at the new job! It will be based at the Institute for Astronomy, Astrophysics, Space Applications and Remote Sensing (IAASARS) of the National Observatory of Athens (Greece).

I will be working with Alceste Bonanos, along with Ming Yang and Frank Tramper, in a project related to the “Episodic Mass Loss in Massive Stars: Key to Understanding the Explosive Early Universe” (ASSESS).

Although excited I am too tired to write something more now. But more will come in the future!

XXXth General Assembly of IAU – week 1

Posted August 26, 2018 By grigoris

The XXXth General Assembly of the IAU is held in Vienna, Austria, from Aug 20 to 31, 2018. The first week is finished now and tomorrow the second starts.

It is the biggest convention I have been so far with almost 3000 attendees, from all around the world literally. If I was to use only one world to describe it, ti would be “HUGE”! The Vienna International Center is great as it is neally easy to navigate and it can accommodate such an event. It is also very interesting and definitely uncommon to see exhibitors in astronomical conferences. You can find a large variety of booths from publishers, telescope/instrument companies, universities/telescopes/institutions advertising their projects, societies promoting their work, ESO and ESA, and an exhibition dedicated to the 100th anniversary of IAU. To all of these add the promotional stuff and gifts (from stickers to t-shirts and bags) and you get a rather different atmosphere sometimes.

A perspective of the exhibition.

A perspective of the exhibition.

The supernova - part of the 100th anniversary of the IAU.

The supernova – part of the 100th anniversary of the IAU.


LEGO models of some telescope facilities - part of the 100th anniversary of the IAU.

LEGO models of some telescope facilities – part of the 100th anniversary of the IAU.

Of course the main core is the various symposia and meetings. I came in Vienna on Tuesday (Aug 22) so as to take a look at the session on circumstellar environment around AGB stars (IAU Symposium 343: Why Galaxies Care About AGB Stars: A Continuing Challenge through Cosmic Time). Then, in the afternoon I went to the reception of the Focus Meeting 14: IAU’s role on global astronomy outreach, the latest challenges and bridging different communities, which was held at the Natural History Museum of Vienna. That was finally an amazing experience. Apart from getting to know fellow participants we got a free tour around the museum by its director. The museum exhibits an overwhelming collection, which represents only a small fraction of its collection (which is stored under the floors that are open to the public, and is accessible only to its scientists). On the next day (Thursday) the meeting took place, where I had an eposter representing the collective work we have done with the Hellenic Amateur Astronomy Association.

Then on Friday the Division G (Stars and Stellar Physics) Days, started, which I followed as much as possible, although I did tried to listen to other talks (the University of Vienna provided a very useful app to check the program and create your own agenda to easily follow whatever interests you most).

Another interesting week in starting tomorrow. I have a talk at the Division G Days and a poster contribution at the IAU Symposium 346: High-mass X-ray binaries: illuminating the passage from massive binaries to merging compact objects.

A fascinating comparison of what we knew in 1919 and in 2019 - Part of the 100th anniversary of the IAU.

A fascinating comparison of what we knew in 1919 and in 2019. It is amazing how our knowledge has advances. (Part of the 100th anniversary of the IAU.)