Skip to content

Commit 178a917

Browse files
B737 data structure
1 parent 62e041f commit 178a917

File tree

4 files changed

+4872
-1
lines changed

4 files changed

+4872
-1
lines changed

develop.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ These are the areas that are under development, including their status, and what
187187
| Performance | Additional performance methods needed, landing and takeoff complete. |
188188
| Payload Range Diagrams | Completed methods.|
189189
| **Environmental Impact** ||
190-
| Subsonic Noise | DC-10 based correlations implemented. New methods in development. |
190+
| Subsonic Noise | DC-10 based correlations implemented. Noise component method implemented for airframe and engine noise based on empirical and semi-empirical data. |
191191
| Supersonic Boom | Not started, consider sBOOM, or SUBoom that could be open source.|
192192
| Emissions - NOx |No correlations yet.|
193193
| Emissions - CO2 |No correlations yet.|

guides/b737.html

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<style type="text/css">
4+
5+
.node {
6+
cursor: pointer;
7+
}
8+
9+
.overlay{
10+
background-color:steelblue;
11+
}
12+
13+
.node circle {
14+
fill: steelblue;
15+
stroke: red;
16+
stroke-width: 1.5px;
17+
}
18+
19+
.node terminal {
20+
fill: #6B9BC3;
21+
stroke: #6B9BC3;
22+
stroke-width: 1.5px;
23+
}
24+
25+
.node text {
26+
font-size:20px;
27+
font-family:Arial, Gadget, sans-serif;
28+
fill:#fff;
29+
}
30+
31+
.link {
32+
fill: none;
33+
stroke: #6B9BC3;
34+
stroke-width: 1.5px;
35+
}
36+
37+
.templink {
38+
fill: none;
39+
stroke: red;
40+
stroke-width: 3px;
41+
}
42+
43+
.ghostCircle.show{
44+
display:block;
45+
}
46+
47+
.ghostCircle, .activeDrag .ghostCircle{
48+
display: none;
49+
}
50+
51+
</style>
52+
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
53+
<script src="http://d3js.org/d3.v3.min.js"></script>
54+
<script src="b737.js"></script>
55+
<body>
56+
<div id="tree-container"></div>
57+
</body>
58+
</html>

0 commit comments

Comments
 (0)