-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflight_dynamics_books.html
More file actions
78 lines (60 loc) · 2.23 KB
/
Copy pathflight_dynamics_books.html
File metadata and controls
78 lines (60 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<!---------------------------------------------------------------------
-- file : flight_dynamics_books.html
-- purpose : Page for website Piet Lammertse
-----------------------------------------------------------------------
-- history :
-- 2025-11-24 new
---------------------------------------------------------------------->
<head>
<meta charset = "UTF-8"
name = "viewport"
content = "width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href = "text.css">
<link rel = "stylesheet" href = "menu.css">
<title> Piet Lammertse on flight dynamics books </title>
</head>
<body>
<!-- HAMBURGER MENU ------------------------------------------->
<nav class="dropdown-menu">
<!-- responsive hamburger button needs menu.js at end -->
<button class = "nav-toggle"
aria-label = "Toggle navigation menu"
aria-expanded = "false">
<span></span> <span></span> <span></span>
</button>
<!-- TOP BAR MENU --------------------------------------------->
<ul>
<li> <a href = "index.html">
Home </a> </li>
</ul>
</nav>
<!-- PAGE TEXT ------------------------------------------------>
<h2> Books on flight dynamics ( stability and control ) </h2>
<p> TBW.
</p>
<!--
*****************************************************
<p> Another classic at the time was McRuer, Ashkenas et al.
In retrospect, maybe I like that one better.
There are many others, like McCormick etc.
</p>
<p> I wish we had used one of these classics in our classes.
I only got to know them much later.
</p>
<p> I recently looked into Etkin for model data and eigenvectors of actual aircraft.
I remembered his models were in the non-dimensional form,
with a peculiar non-dimensional time derivative he called <b> Dc </b>,
based on the airplane's chord <b>c</b>,
which he also used for the asymmetric part of the system equations
as a first step towards computer calculation.
</p>
-->
<!-- FOOTER ------------------------------------------------------->
<br> <br>
<div class="footer"> P. Lammertse, 2025 </div>
<!-- needed for hamburger menu, must be at end of body -->
<script src="menu.js"></script>
</body>
</html>