Transmit computed ground pressure and acceleration values
[fw/altos] / aoview / aoview_state.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "aoview.h"
19 #include <math.h>
20
21 static double   pad_lat_total;
22 static double   pad_lon_total;
23 static int      pad_alt_total;
24 static int      npad_gps;
25 static int      prev_tick;
26 static double   prev_accel;
27 static double   pad_lat;
28 static double   pad_lon;
29 static double   pad_alt;
30 static double   min_pres;
31 static double   min_accel;
32
33 #define NUM_PAD_SAMPLES 10
34
35 static void
36 aoview_great_circle (double start_lat, double start_lon,
37                      double end_lat, double end_lon,
38                      double *dist, double *bearing)
39 {
40         double rad = M_PI / 180;
41         double earth_radius = 6371.2;
42         double lat1 = rad * start_lat;
43         double lon1 = -rad * start_lon;
44         double lat2 = rad * end_lat;
45         double lon2 = -rad * end_lon;
46
47         double d = acos(sin(lat1)*sin(lat2)+cos(lat1)*cos(lat2)*cos(lon1-lon2));
48         double argacos = (sin(lat2)-sin(lat1)*cos(d))/(sin(d)*cos(lat1));
49         double crs;
50         if (sin(lon2-lon1) < 0)
51                 crs = acos(argacos);
52         else
53                 crs = 2 * M_PI - acos(argacos);
54         *dist = d * earth_radius;
55         *bearing = crs * 180/M_PI;
56 }
57
58 static void
59 aoview_state_add_deg(char *label, double deg)
60 {
61         double  int_part;
62         double  min;
63
64         int_part = floor (deg);
65         min = (deg - int_part) * 60.0;
66         aoview_table_add_row(label, "%d°%lf'",
67                              (int) int_part, min);
68
69 }
70
71 void
72 aoview_state_notify(struct aostate *state)
73 {
74         int     altitude;
75         double  accel;
76         int     ticks;
77         double  dist;
78         double  bearing;
79         double  temp;
80         double  velocity;
81         double  battery;
82         double  drogue_sense, main_sense;
83         double  max_accel;
84
85         if (!strcmp(state->state, "pad")) {
86                 if (state->locked && npad_gps < NUM_PAD_SAMPLES) {
87                         pad_lat_total += state->lat;
88                         pad_lon_total += state->lon;
89                         pad_alt_total += state->alt;
90                         npad_gps++;
91                 }
92                 if (state->locked && npad_gps <= NUM_PAD_SAMPLES) {
93                         pad_lat = pad_lat_total / npad_gps;
94                         pad_lon = pad_lon_total / npad_gps;
95                         pad_alt = pad_alt_total / npad_gps;
96                 }
97                 min_pres = state->ground_pres;
98                 min_accel = state->ground_accel;
99         }
100         if (state->flight_pres < min_pres)
101                 min_pres = state->flight_pres;
102         if (state->flight_accel < min_accel)
103                 min_accel = state->flight_accel;
104         altitude = aoview_pres_to_altitude(state->flight_pres) - aoview_pres_to_altitude(state->ground_pres);
105         accel = (state->ground_accel - state->flight_accel) / 27.0;
106         velocity = state->flight_vel / 2700.0;
107         max_accel = (state->ground_accel - min_accel) / 27.0;
108         ticks = state->tick - prev_tick;
109         temp = ((state->temp / 32767.0 * 3.3) - 0.5) / 0.01;
110         battery = (state->batt / 32767.0 * 5.0);
111         drogue_sense = (state->drogue / 32767.0 * 15.0);
112         main_sense = (state->main / 32767.0 * 15.0);
113
114         prev_accel = accel;
115         prev_tick = state->tick;
116         aoview_table_start();
117
118         if (npad_gps >= NUM_PAD_SAMPLES)
119                 aoview_table_add_row("Ground state", "ready");
120         else
121                 aoview_table_add_row("Ground state", "waiting for gps (%d)",
122                                      NUM_PAD_SAMPLES - npad_gps);
123         aoview_table_add_row("Rocket state", "%s", state->state);
124         aoview_table_add_row("Callsign", "%s", state->callsign);
125         aoview_table_add_row("Rocket serial", "%d", state->serial);
126
127         aoview_table_add_row("RSSI", "%ddBm", state->rssi);
128         aoview_table_add_row("Height", "%dm", altitude);
129         aoview_table_add_row("Max height", "%dm",
130                              aoview_pres_to_altitude(min_pres) -
131                              aoview_pres_to_altitude(state->ground_pres));
132         aoview_table_add_row("Acceleration", "%gm/s²", accel);
133         aoview_table_add_row("Max acceleration", "%gm/s²", max_accel);
134         aoview_table_add_row("Velocity", "%gm/s", velocity);
135         aoview_table_add_row("Temperature", "%g°C", temp);
136         aoview_table_add_row("Battery", "%gV", battery);
137         aoview_table_add_row("Drogue", "%gV", drogue_sense);
138         aoview_table_add_row("Main", "%gV", main_sense);
139         aoview_table_add_row("Pad altitude", "%dm", aoview_pres_to_altitude(state->ground_pres));
140         aoview_table_add_row("Satellites", "%d", state->nsat);
141         if (state->locked) {
142                 aoview_state_add_deg("Latitude", state->lat);
143                 aoview_state_add_deg("Longitude", state->lon);
144                 aoview_table_add_row("GPS alt", "%d", state->alt);
145                 aoview_table_add_row("GPS time", "%02d:%02d:%02d",
146                                      state->gps_time.hour,
147                                      state->gps_time.minute,
148                                      state->gps_time.second);
149                 aoview_great_circle(pad_lat, pad_lon, state->lat, state->lon,
150                                     &dist, &bearing);
151                 aoview_table_add_row("Distance from pad", "%gm", dist * 1000);
152                 aoview_table_add_row("Direction from pad", "%g°", bearing);
153         } else {
154                 aoview_table_add_row("GPS", "unlocked");
155         }
156         if (npad_gps) {
157                 aoview_state_add_deg("Pad latitude", pad_lat);
158                 aoview_state_add_deg("Pad longitude", pad_lon);
159                 aoview_table_add_row("Pad GPS alt", "%gm", pad_alt);
160         }
161         aoview_table_finish();
162 }
163
164 void
165 aoview_state_new(void)
166 {
167         pad_lat_total = 0;
168         pad_lon_total = 0;
169         pad_alt_total = 0;
170         npad_gps = 0;
171         prev_tick = 0;
172         prev_accel = 0;
173         pad_lat = 0;
174         pad_lon = 0;
175         pad_alt = 0;
176         min_pres = 32767;
177         min_accel = 32767;
178 }
179
180 void
181 aoview_state_init(GladeXML *xml)
182 {
183         aoview_state_new();
184 }