RSSAmplifier

Blog

blog.nodraak.fr

Recent content on blog.nodraak.fr

blog.nodraak.frRSS feed ↗18 posts

Latest posts

Launch Windows - How is Matthias Maurer going to join Thomas Pesquet's Halloween party?

This article is a transcript of my talk 'Launch Windows - How is Matthias Maurer going to join Thomas Pesquet's Halloween party?' given on the 2021-11-03 at PTS on our weekly 'PTS lunch & learn' event. The source of the slides are available on my Github. Introduction NASA’s Crew-3 Mission The leftmost person is Matthias Maurer. He is a German astronaut, and joined the ESA astronaut corp in…

GPS trace collection and edition with OpenGPSTracker and Viking

I don’t really have a bucket list, but I do have a list of things I want to do: I keep a short list of things to focus on and make progress. I review and update this list yearly or so. Since some time, I have been thinking about running a marathon, and this item has finally made it to this year’s focus list. After reading a couple training plans, I prepared my own, fitting my schedule…

Moon lander project: thrust vectoring with a PID controller

The goal of my Moon lander guidance software series is to learn and gain some experience with an end-to-end aerospace software project, especially on the topic of GNC. I have already written a few articles sharing my findings: for instance, this one about guidance. Today I want to talk about control. I will use the engine gimbal controller of my Moon lander1 project to explain how to design, tune…

Dimensional analysis in Rust: how not to crash "Mars Climate Orbiter"

Software is complicated: ensuring that old features keep working, while holding the bugs away, is an every day’s fight. Thankfully, there are many (too often unknown) gems, either built in the language/compiler or as third-party libraries. Some time ago, I introduced SymPy, which allows one to use symbolic maths in Python, and do things such as solving equations or integrating functions. In…

How I'm learning Spanish and German

After finishing my studies in France, I wanted to enjoy the possibility of traveling and working in 26 countries without passport or laborious paperwork. The aerospace industry in France is also very international, and I consider it an asset to have lived in different countries and be able to speak various languages. Flag of Europe - Wikipedia, Public domain For these reasons, I searched outside…

Moon lander project: PID-based vs TGO-based guidance

As part of my Moon lander guidance software, I am making several small prototypes for each subsystems, in order to test ideas, learn and choose the best option. While I progress on the overall project, I have already learned a lot of things and wanted to share some of them. In this article, I will talk about how to control the altitude and vertical velocity of a spacecraft in order to guide it to…

Symbolic maths in Python: Attacking a castle with SymPy

While working on my Moon lander guidance software, I am making several small prototypes to test ideas. One of them involves testing several control laws (of the acceleration), which implies quite a lot of manual calculations (to integrate to obtain the velocity and position). Doing these calculations by hand is tedious and error prone, and I thought about using a symbolic math program. Usually, a…

Software quality notes: nested "for" loops considered harmful

While working on Exomars as a software engineer, I was notified an issue to fix. I thought it was an interesting one, and spent some moments to think about how it could have been prevented in the first place. I care about code quality, and always try to build reliable software. For this purpose, I do not believe in rockstar developers (we are all fallible humans), but rather in (automatically…

Moon lander project: preliminary study of the guidance software

I have always struggled during my control theory classes, and almost failed one (out of the three I attended). With this history, some people would have developed a hatred for this subject, but I personally felt in love with it: I have always found it magical to be able to control physical things with software. I love making a pile of silicon1 do things by itself, and developing control algorithms…

Hello World with Rust and WebAssembly

For the second part of my Rust & WebAssembly journey, I will write a basic hello world project. Note: you can jump to the demo by clicking here. This will give me the opportunity to demonstrate how to write a simple Wasm module in Rust. I will focus on a simple frontend and ignore the backend: no complicated GET or POST requests, no websockets, etc. This article will present how to build a simple…

Introduction to Rust and WebAssembly

In this article, I would like to talk about two technologies I’ve been playing with recently: the Rust programming language and the WebAssembly standard. I’ll start by presenting each of these two technologies and which problems they are trying to solve. Then, I’ll explain what are the advantages of a Rust-powered Wasm module, and why it can be useful. Finally, I’ll provide…

"Too much precision" bug

I am currently working on the Rosalind Franklin rover, part of the Exomars 2022 mission to Mars. I develop a software layer to integrate the autonomous navigation algorithms (developed by CNES) with the hardware rover (built by Airbus). CNES has been working on image processing algorithms to give some autonomy to robots. Their expertise is being used, among other projects, in Exomars. Airbus is…

Calculating the distance to the Moon

On 13th sept 2019, Pauline Acalin, a spaceflight photojournalist, posted two pictures of the Moon, taken 8.5 hours apart. Scott Manley commented “I should try measuring the distance to the Moon with this”. That’s was more than enough to get me started to attempt to do exactly this. After months of procrastination, here is finally an article with my findings and the detailed steps…

Flying to the moon with Apollo

About 50 years ago, humans landed on the Moon for the first time. I initially wanted to write on this subject because I like rockets and space, but this anniversary is a nice coincidence. Going to the Moon is not an easy endeavor. It requires an outstanding number of subsystems and components to work flawlessly, and many maneuvers to execute right as planned. Each time a rocket takes off, an…

Future space articles

This article is a little teasing on future articles that I might write. After two articles on Kubernetes, I am going to switch to aerospace themed articles. Nonetheless, they will probably be fairly focused on software. Since a few years, I am getting more interested in space. Of course, I watched Scott Manley’s videos, played KSP, etc. But nowadays I like to design missions or spacecrafts…

Kubernetes: why all this hype?

Since a few years, Docker and Kubernetes are very hot topics. Theses two technologies, and many other related technologies, are growing quickly. My goal in this article is to explain why Kubernetes is such a big deal. I will explain what is so important when maintaining software in production, that Kubernetes helps having. Before diving into technical details, and for those who don’t know…

How to design a Kubernetes cluster

TL;DR: There is no best architecture, it all depends on your requirements and resources Clusters with 1 to 3 nodes are good for testing, but for production you should have at least 5 nodes Feel free to do differently as I say Introduction Since its launch in 2015, Kubernetes is the new bitcoin and every company wants to migrate all its infrastructure (which is obviously made of hundreds of…

Hello, world!

I’ve been thinking about starting a blog since a long time, and I finally took the time to think about it and set up one. The only thing missing now is content! Let me introduce myself and what my plans for this blog are (ie. what you might find here if you come back later). I will also quickly present the tech stack I am using, but I will probably make a more complete description in an…