forked from adamgreig/cusf-burst-calc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
new_flow.dot
24 lines (23 loc) · 931 Bytes
/
new_flow.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
digraph logicflow {
"Input" [shape=box];
"Output" [shape=diamond];
"Intermediate" [shape=ellipse];
"Balloon Mass (kg)" [shape=box];
"Payload Mass (kg)" [shape=box];
"Target Ascent Rate (m/s)" [shape=box];
"Target Burst Altitude (m)" [shape=box];
"Ascent Rate (m/s)" [shape=diamond];
"Burst Altitude (m)" [shape=diamond];
"Time to Burst (s)" [shape=diamond];
"Gross Lift (kg)" [shape=diamond];
node [shape=ellipse];
"Target Ascent Rate (m/s)" -> "Launch Diameter (m)";
"Target Burst Altitude (m)" -> "Launch Diameter (m)";
"Balloon Mass (kg)" -> "Launch Diameter (m)";
"Payload Mass (kg)" -> "Launch Diameter (m)";
"Launch Diameter (m)" -> "Ascent Rate (m/s)";
"Launch Diameter (m)" -> "Burst Altitude (m)";
"Ascent Rate (m/s)" -> "Time to Burst (s)";
"Burst Altitude (m)" -> "Time to Burst (s)";
"Launch Diameter (m)" -> "Gross Lift (kg)";
}