Skip to content

specifics/aero-structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

aero-structures

Resources for analyzing aerospace (i.e. aircraft, rocket, spacecraft) structures for aerospace engineers.

Scope

This page provides resources for the analysis aircraft structures using classical methods developed by prominent engineering minds such as Elmer F. Bruhn, Michael Niu, Warren Young (aka Raymond J. Roark), and Sighard F. Hoerner. This page also includes applications of these analysis methods in Python. Finite element methods are mentioned to provide context, but are otherwise not within the scope of this page

Ultimately, my objective is to:

  • Create a portal for standard structural analysis methods used in the aerospace industry
  • Help you learn how to save time with examples of how I automate and optimize routine analysis with Python
  • Provide you with a template to document your own engineering processes & analysis tools in a meaningful way

Note: To keep this document free of implicit endorsement, there are no links to Amazon, Google, etc. They're easy enough for you to use on your own to find the materials you want.

Disclaimer: All content on this page is provided on a strictly informational basis. The contributors to this page cannot assume any responsibility, in any manner whatsoever, for the use readers make of the information presented herein, or the devices, systems, or calculations resulting therefrom. It is the responsibility of the reader to determine if the data and information provided are in agreement with the latest design allowables.

Rationale

Analysis engineers face two different, but interrelated challenges when working

  1. Communicate analysis and findings to their colleagues, managers, and clients in a way that effectively conveys information to the intended audience.
  2. Internally documenting the numerous analyses, processes, and tools used throughout a project in a meaningful and accessible way for later reference, often by engineers other than the original ones who developed them.

There have been a number of times where I completed a project, and some months or even years later started another, similar project. When I refer to the old project files, I find that it's disorganized at best, often missing key pieces of information that aren't immediately obvious. This isn't intensional, of course -- it's simply the result of the engineer being forced to sacrifice some level of documentation to get work product out the door, which is an unfortunate reality of schedule-driven projects.

This means I have to spend a significant amount of time re-developing processes and tools to ensure that all the relevant parts are in place to succeed in the new project. As projects scale in complexity, this mobilization cost becomes greater, and it's worth taking steps in an attempt to reduce it. This page is a first step in documenting analysis tools that I frequently use, and hopefully serve as a template for you to do the same.

New graduates will encounter moments in their career where they ask themselves, "Why didn't I learn this in school?" during their formative years as an EIT. My hope is that some of these resources will accelerate the learning process, and potentially save inexperienced engineers from committing serious but preventable mistakes.

Another, more aerospace-specific problem has been happening for several decades now. While there are many resources for aerospace engineering, much of it is scattered about disparate places around the net (e.g. countless threads on Eng-Tips), or locked behind proprietary sources like the Boeing Design Manual. The aerospace industry has a lot of "tribal" knowledge that becomes lost when veteran engineers, technicians, mechanics, and fabricators retire or pass away without disseminating their decades of experience and knowledge to the next generation. There's simply no replacement for this knowledge, and very little of it makes it into modern aerospace texts, let alone university lecture halls. Even when this knowledge is documented in company design manuals, in the end they are only manuals and do not effectively replace an experienced mentor.

⇪ Top


Table of Contents

Hide/Show

⇪ Top


Symbols & Abbreviations

Show/Hide
Nomenclature Definition
AN Army-Navy Standard
FEA Finite Element Analysis
FEM Finite Element Model
IDE Integrated Development Environment; e.g. Spyder, JupyterLab, Sublime Text
MIL Military; see MS
MMPDS Metallic Materials Properties Development and Standardization; see Universal References
MS, MIL-STD Military Standard
PEP Python Enhancement Proposal; e.g. PEP8

Universal References

These references are universal in that they are frequently used by aerospace design engineers to conduct analysis during the preliminary and detail design phases. While FEA is a powerful analysis tool, it comes with a lot of costs and overhead that isn't practical or necessary for a lot of engineering problems. In many cases a problem can be solved using a straightforward analysis process out of one of these texts, and if necessary, automated using a Python script. A common glib in engineering goes: "Someone a lot smarter than me figured this out 50 years ago." — which is really just another way of saying "Don't re-invent the wheel."

Students beware: Most of these resources are not suitable for learning topic/course material for the first time.

Metallic Materials Properties Development and Standardization (MMPDS)

MMPDS is a database of statistically-verified strength data for common aerospace materials and fasteners, which serves as the basis for design manuals in nearly every aerospace company. While a new version of MMPDS with updated data gets released every year or so, older versions remain valid for aerospace design work. MMPDS-01 is available for free from the National Technical Reports Library (U.S. Dept. of Commerce).

Note: For aerospace design, MMPDS supersedes MIL Handbook. MMPDS-01 contains data equivalent to MIL-HDBK-5J.

"Analysis and Design of Airplane Structures" by Elmer F. Bruhn

Considered by many to be 'the Bible' of flight vehicle analysis, Professor Bruhn detailed empirical design methods and calculation processes for aircraft structures that were used for practically every aircraft design from the 1940s and onward, until the advent of FEA and computer-driven numerical methods in the mid-1970s. This book no longer appears to be published, so if you find a copy, buy it.

"Airframe Structural Design: Practical Design Information and Data on Aircraft Structures" by Michael Niu

Niu was the Senior R&D Engineer at Lockheed Martin and Stress Engineer at Boeing Co. during the development of the 727 and 747. With over 30 years of experience, Niu wrote about nearly every detail design consideration required for flight vehicle design. This text contains helpful diagrams and practical examples from his work, backed by empirical data & charts that can be referenced for various stress coefficients for specific types of analysis.

"Roark's Formulas for Stress and Strain" by Warren C. Young & Richard G. Budynas

Known better under his pen name Raymond J. Roark, Professor Young draws upon more than four decades of academic research in mechanics of materials and mechanical engineering to produce one of the most commonly referenced engineering books of all time. While not aerospace-specific, Roark's is invaluable for the analysis and detail design of many types of mechanical loading problems.

"Fluid-Dynamic Lift" and "Fluid-Dynamic Drag" by Sighard F. Hoerner

Following World War 2, the aerodynamics field exploded with pioneers and researchers like Dr. Hoerner leading the field. In the same way that Professor Bruhn's text is go-to reference for the analysis of flight vehicle structures, Hoerner's books are absolutely fundamental for aerodynamic analysis of all kinds.

For all your MIL-spec needs. Preferable over unofficial sites like EverySpec. Document ID is something like MIL-HDBK-5, or you can search using comma-separated strings.

NTRS contains a vast wealth of information dating back to the early days of NASA, when they were known as the National Advisory Committee for Aeronautics (NACA) from 1915 to 1958. Major topics of interest include both aeronautics and aerospace research, such as NACA airfoil test data; aerodynamic test data; flight vehicle design manuals; and design manuals on rocket staging, propellants, etc.

When searching NTRS, I recommend having a very specific query on a design or analysis problem — there's a decent chance that someone at NASA has already done the legwork for you. An example of a good query is buckling thin shell and double slotted flap. I also suggest filtering the Document Type to only contain "Technical Reports", which will only show NASA design manuals and technical memos.

Documents of interest on various topics:


Python References

This section assumes that you have zero programming knowledge. Your goal here is to go from Hello world! to what Chris Moffitt calls the "plateau of productivity".

Many people who start coding for the first time get stuck in the "trough of disillusionment" stage of learning, and struggle to break out of it. I pushed a boulder up this same hill many times, only to fall back into the trough and give up for a while... but after numerous tries and lots of encouragement from my friends, learning partners, and the Python community, I got past the rut and now routinely develop my own engineering tools. It has absolutely been worth all the effort — not only in the time Python has saved me, but also in the sense of accomplishment.

Randall Munroe (xkcd) came up with a handy chart for figuring out whether or not it's worth spending your time automating a given task.

Why Python?

  • It's easy to learn and a great first coding language.
  • It's a mature language with a vibrant, active open-source community. There are thousands of useful libraries that tend to be well-documented.
  • It's used for many applications such as scientific computing, web development, data analysis, and machine learning.
  • It can be extended into C/C++ for embedded computing applications.

Beginner-Novice

Whether you're learning to code for the first time or an experienced programmer looking to add Python to your repertoir of languages, these resources will get you up and running quickly. The very first thing you'll want to do is download the Anaconda distribution of Python 3, and start up an IDE of your choice for one of the resources below. I recommend JupyterLab or Spyder

Learning Python for the First Time

There are five main resources recommended by the Python community, all of them free. You only need to choose one and stick with it, but as we are all blessed with different minds, you'll want to try several to see which is more suited to your learning style. As one of my professors once told me, "Find a voice that speaks to you."

  1. Automate the Boring Stuff with Python by Al Sweigart
  2. Dive into Python 3 by Mark Pilgrim
  3. Think Python by Allen B. Downey
  4. Python 101 (ebook version here) by Michael Driscoll
  5. The Official Python Tutorial by the Python Software Foundation

All of them cover the basics of Python, but don't completely overlap with each other in the topics they cover. The main difference is that 1 & 2 get you off the ground faster, giving you the knowledge to start writing practical programs very quickly, while 3-5 take longer to get through, but are more comprehensive and focus on helping you build a solid foundation in Python. It's completely fine to go with one of the faster resources and fill in the gaps later as you need to.

I like "Automate the Boring Stuff with Python" the best, which took me about 50 hours (and numerous tries) to get through. At some point early on, you'll start to get the itch to write real programs. That's perfectly normal, and I encourage you to start applying what you've learned using a project-based approach. Finding problems and coming up with a solution in Python is the best way to remember and apply the concepts you've learned — and ultimately get better at programming — rather than spending all your time reading and watching videos.

One resource you should avoid is "Learn Python the Hard Way" by Zed Shaw, mainly because it's outdated.

As you learn Python, you'll start to understand why styling and whitespace are important. David Goodger's "Code Like a Pythonista" and similarly PEP8 are important companions to have so that you get into the habit writing readable code. While you can afford to skip over some bits of the Python language to learn later, you can never afford to write crappy code because it can (and will) come back to bite you later. The most confused engineer is frequently the same person who wrote the code, looking at it months or years later.

As SICP wisely stated:

[...] a computer language is not just a way of getting a computer to perform operations but rather [...] it is a novel formal medium for expressing ideas about methodology. Thus, programs must be written for people to read, and only incidentally for machines to execute.

Or as The Zen of Python simply says: Readability counts.

PB Python is a monthly-ish blog by Chris Moffitt (@chris1610) where he talks about how to apply Python in an everyday business setting. This is the best resource I've found for contextualizing how Python can be used as a powerful tool for enhancing or eliminating tasks that are normally done using Excel or Word. It's also a great place to get started with pandas (Python Data Analysis Library) for the first time, which should be of interest for Test/Instrumentation Engineers and Flight Test Analysts.

Head into the PB Python Archive and start with the article from 5 October 2014, "Using Sets for Data Analysis". As you move forward, go through the articles in chronological order. Chris does a fantastic job of building upon each one until you have a formidable set of tools to tackle a variety of problems!

Note: For planning purposes, each PBpy exercise can take 1-2 hours to get through, depending on the topic and your skill level.

Regular expressions are a powerful tool, but can be hard to dive into while learning Python. You should practically consider it as a separate language. This regex tester and repository is a great resource that can get the regex you need into your Python applications, while also explaining how the specific regex works.

"Learning Python, 5th Ed." by Mark Lutz

This text is perhaps the most comprehensive resource for beginner Python users, and covers some topics that aren't in any of the Learning Python for the First Time resources, such as interfacing Python with C/C++. This is of particular interest for engineers that work with embedded systems that require C/C++, or anyone that desires the computational power of C/C++ while keeping the ease of development in Python.

Since this book is an absolute behemoth of over 1,600 pages, I recommend it mainly as a companion reference for looking up concepts & examples that aren't explained thoroughly by any of the free resources. For even more exercises, Mark Lutz made his live course materials available for free.

"Python in a Nutshell" by Martelli-Ravenscroft-Holden


Intermediate-Advanced

By the time you've completed some programming projects on your own, you'll probably need some resources to reach the next skill level as a Python developer. The books in this section will help correct some of the bad habits you've undoubtedly picked up while learning Python, and fill in any knowledge gaps while also delving into more advanced programming methods. "Fluent Python" is a solid and frequently recommended text that you can't go wrong with, but each of these books has something different to offer depending on what your learning goals are.

Full Stack Python is a landing point for intermediate Python learners looking for a specific focus or application. This open book includes a wealth of resources for getting into web development, data analysis, security, and application deployment, which can be helpful for coming up with projects and learning goals beyond mastering the language.

"Fluent Python: Clear, Concise, and Effective Programming" by Luciano Ramalho

"Effective Python: 59 Specific Ways to Write Better Python" by Brett Slatkin

From the author of "Effective Python" on the differences from "Python Cookbook":

Author of Effective Python here. I think they're very different books! David Beazley is awesome and a wonderful educator. He's always the best speaker at PyCon. I'd say: the Cookbook is a powerful and thorough reference, the Effective books are short and scenario driven.

"Python Cookbook" by David Beazley and Brian K. Jones

"High Performance Python: Practical Performant Programming for Humans" by Micha Gorelick and Ian Ozsvald

"The Hacker's Guide to Python" by Julien Danjou


Releases

No releases published

Packages

No packages published