projects:aerosol_code
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projects:aerosol_code [2008/02/24 09:37] – laurenceb | projects:aerosol_code [2008/07/19 23:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
This is in python, you can find a detailed guide on installing python on the NGW100 [[http:// | This is in python, you can find a detailed guide on installing python on the NGW100 [[http:// | ||
- | |||
<code python> | <code python> | ||
# | # | ||
+ | ## | ||
+ | |||
import reed_solomon | import reed_solomon | ||
import serial | import serial | ||
import math | import math | ||
import time | import time | ||
+ | import os | ||
TRUE=1 | TRUE=1 | ||
FALSE=0 | FALSE=0 | ||
- | mynumber=#ha you really | + | DEG2RAD=math.pi/ |
- | default_target=40 | + | class updatest: |
+ | pass | ||
+ | mynumber=" | ||
+ | default_target_pressure=40 | ||
+ | limit=[200, | ||
+ | max_flight_time=7000 | ||
callsign=" | callsign=" | ||
- | global | + | logname=" |
- | global | + | Roottwotwomgovercda = (2*9.81*2/ |
- | global Iterations | + | iterations=0 |
- | global Roottwomgovercda | + | Jxpoints=[] |
- | + | Jypoints=[] | |
+ | updatestuff=updatest() | ||
+ | |||
+ | |||
+ | |||
def gps_status(): | def gps_status(): | ||
print ' | print ' | ||
- | gpspos_parts[0]='' | + | gpspos_parts=['' |
while not gpspos_parts[0]==' | while not gpspos_parts[0]==' | ||
gpspos=ser_gr.readline() | gpspos=ser_gr.readline() | ||
+ | print " | ||
gpspos_parts = gpspos.split(',' | gpspos_parts = gpspos.split(',' | ||
- | if ((gpspos_parts[6]==' | + | if ((gpspos_parts[6]==' |
print 'GPS fix' , gpspos_parts[6] , 'ie valid' | print 'GPS fix' , gpspos_parts[6] , 'ie valid' | ||
- | gpsstatus=TRUE | + | status=TRUE |
else: | else: | ||
print 'GPS fix' , gpspos_parts[6] , 'ie not valid' | print 'GPS fix' , gpspos_parts[6] , 'ie not valid' | ||
status=FALSE | status=FALSE | ||
return status | return status | ||
+ | |||
def gps_data(): | def gps_data(): | ||
+ | ser_gr.flushInput() | ||
print ' | print ' | ||
- | gpspos_parts[0]='' | + | gpspos_parts=['' |
while not gpspos_parts[0]==' | while not gpspos_parts[0]==' | ||
gpspos=ser_gr.readline() | gpspos=ser_gr.readline() | ||
gpspos_parts = gpspos.split(',' | gpspos_parts = gpspos.split(',' | ||
gpstime=3600*float(gpspos_parts[1][0: | gpstime=3600*float(gpspos_parts[1][0: | ||
- | latitude=float(gpspos_parts[2][0: | + | latitude=float(gpspos_parts[2][0: |
if gpspos_parts[3]==" | if gpspos_parts[3]==" | ||
latitude=-latitude | latitude=-latitude | ||
Line 50: | Line 62: | ||
if gpspos_parts[5]==" | if gpspos_parts[5]==" | ||
longitude=-longitude | longitude=-longitude | ||
+ | if gpspos_parts[9]=='': | ||
+ | gpspos_parts[9]=' | ||
altitude=float(gpspos_parts[9]) | altitude=float(gpspos_parts[9]) | ||
+ | #print gpstime, | ||
return gpstime, | return gpstime, | ||
+ | |||
def db_stats(): | def db_stats(): | ||
+ | ser_daughter.flushInput() | ||
ser_daughter.write(" | ser_daughter.write(" | ||
V1=ser_daughter.readline() | V1=ser_daughter.readline() | ||
Line 62: | Line 78: | ||
ser_daughter.write(" | ser_daughter.write(" | ||
IC=ser_daughter.readline() | IC=ser_daughter.readline() | ||
- | ser_daughter.write(" | + | #ser_daughter.write(" |
- | VB=ser_daughter.readline() | + | #VB=ser_daughter.readline() |
ser_daughter.write(" | ser_daughter.write(" | ||
PD=ser_daughter.readline() | PD=ser_daughter.readline() | ||
ser_daughter.write(" | ser_daughter.write(" | ||
- | TS=ser_daugher.readline() | + | TS=ser_daughter.readline() |
- | return V1,V2,V3,IC,VB,PD | + | return V1[: |
- | + | ||
- | def HV_enable(n); | + | def HV_enable(n): |
stringy=' | stringy=' | ||
ser_daughter.write(stringy) | ser_daughter.write(stringy) | ||
print ser_daughter.readline() | print ser_daughter.readline() | ||
- | + | ||
- | def Set_pressure_target(P); | + | def Set_pressure_target(P): |
ser_daughter.write(' | ser_daughter.write(' | ||
+ | |||
+ | def air_density(alt): | ||
+ | if (alt < 11000.0): | ||
+ | # below 11Km - Troposphere | ||
+ | temp = 15.04 - (0.00649 * alt) | ||
+ | pres = 101.29 *(((temp + 273.1) / 288.08)**5.256) | ||
+ | else: | ||
+ | if (alt < 25000.0): | ||
+ | # between 11Km and 25Km - lower Stratosphere | ||
+ | temp = -56.46 | ||
+ | pres = 22.65 * math.exp(1.73 - ( 0.000157 * alt)) | ||
+ | else: | ||
+ | # above 25Km - upper Stratosphere | ||
+ | temp = -131.21 + (0.00299 * alt) | ||
+ | pres = 2.488 *(((temp + 273.1) / 216.6)**-11.388) | ||
+ | return(pres / (0.2869 * (temp + 273.1))) | ||
+ | |||
+ | |||
def Updatepredict(Seconds, | def Updatepredict(Seconds, | ||
- | global Predictedn | + | Deltae=East-updatestuff.Oldeast |
- | global Predictede | + | Deltan=North-updatestuff.Oldnorth |
- | global Oldeast | + | Deltaa=Altitude-updatestuff.Oldaltitude |
- | global Oldnorth | + | Deltat=Seconds-updatestuff.Oldseconds |
- | global Oldseconds | + | Averagealt=(updatestuff.Oldaltitude+Altitude)/ |
- | global Oldaltitude | + | |
- | if Iterations==0: | + | |
- | Predictedn=North | + | |
- | Predictede=East | + | |
- | Oldeast=East | + | |
- | Oldnorth=North | + | |
- | Oldaltitude=Altitude | + | |
- | Oldseconds=Seconds | + | |
- | Deltae=East-Oldeast | + | |
- | Deltan=North-Oldnorth | + | |
- | Deltaa=Altitude-Oldaltitude | + | |
- | Deltat=Seconds-Oldseconds | + | |
- | Averagealt=(Oldaltitude+Altitude)/ | + | |
- | Oldeast=East | + | |
- | Oldnorth=North | + | |
- | Oldaltitude=Altitude | + | |
- | Oldseconds=Seconds | + | |
if Deltaa> | if Deltaa> | ||
- | K=Roottwomgovercda*0.90909*math.exp(Averagealt/16000) #we now have the velocity of decent | + | K=Roottwotwomgovercda*(air_density(Averagealt)**-0.5) #we now have the velocity of decent |
print " | print " | ||
K=Deltaa/ | K=Deltaa/ | ||
Line 108: | Line 124: | ||
K=K/ | K=K/ | ||
print "Layer weighting=", | print "Layer weighting=", | ||
- | K=K+1 | + | updatestuff.Predictedn+=(K+1)*Deltan |
- | Predictedn+=K*Deltan | + | updatestuff.Predictede+=Deltae*( (K*math.cos(((North |
- | Predictede+=K*Deltae | + | updatestuff.Oldeast=East |
- | print " | + | updatestuff.Oldnorth=North |
- | print " | + | updatestuff.Oldaltitude=Altitude |
- | return Predictedn, | + | updatestuff.Oldseconds=Seconds |
- | + | print " | |
+ | print " | ||
+ | return | ||
+ | |||
+ | |||
def are_we_inside(gpstime, | def are_we_inside(gpstime, | ||
count=False | count=False | ||
- | for g in range(len(Jxpoints)-1): | + | print " |
+ | for g in range(len(Jxpoints)): | ||
if g==len(Jxpoints)-1: | if g==len(Jxpoints)-1: | ||
gplus=0 | gplus=0 | ||
else: | else: | ||
gplus=g+1 | gplus=g+1 | ||
- | if ((Jypoints[g]> | + | if ((Jypoints[g]> |
count=not count | count=not count | ||
+ | print " | ||
print 'we are inside=', | print 'we are inside=', | ||
return count | return count | ||
+ | |||
def load_kml(filepath): | def load_kml(filepath): | ||
xpoints=[] | xpoints=[] | ||
Line 143: | Line 164: | ||
ypoints+=[float(line_split[1])] | ypoints+=[float(line_split[1])] | ||
return xpoints, | return xpoints, | ||
- | + | ||
- | def send_sms(s, | + | def send_sms(s, |
target=str(target) | target=str(target) | ||
- | smscen=str(smscen) | + | if not len(target)==12: |
- | if not (len(target)==12 | + | print " |
- | print " | + | |
return -1 | return -1 | ||
if len(s)> | if len(s)> | ||
Line 169: | Line 189: | ||
Bitstring.append(0) | Bitstring.append(0) | ||
print " | print " | ||
- | stringy=" | + | stringy=" |
- | print stringy | + | #print stringy |
- | #ser_phone.write(stringy) | + | ser_phone.write(stringy) |
- | #print ser_phone.readline() | + | print ser_phone.readline() |
- | stringy=" | + | ser_phone.readline() |
- | for g in range(6): | + | print ser_phone.readline() # the "> " is recieved |
- | stringy+=(smscen[2*g+1]) | + | stringy=" |
- | stringy+=(smscen[2*g]) | + | |
- | stringy+="11000C91" | + | |
for g in range(6): | for g in range(6): | ||
stringy+=(target[2*g+1]) | stringy+=(target[2*g+1]) | ||
stringy+=(target[2*g]) | stringy+=(target[2*g]) | ||
- | stringy+=" | + | stringy+=" |
- | stringy+=" | + | stringy+=" |
for G in Bitstring: | for G in Bitstring: | ||
- | stringy+=" | + | stringy+=" |
- | stringy+=chr(026) | + | stringy+=chr(26) |
- | # | + | ser_phone.write(stringy) |
- | #print ser_phone.readline() | + | for n in range(4): |
- | print stringy | + | print ser_phone.readline() |
+ | # print stringy | ||
return 0 | return 0 | ||
+ | |||
def get_smscen(): | def get_smscen(): | ||
- | ser_phone.write(" | + | ser_phone.write(" |
+ | ser_phone.readline() | ||
s=ser_phone.readline() | s=ser_phone.readline() | ||
s=s.split('"' | s=s.split('"' | ||
- | return s[1:] | + | return |
+ | |||
def cutdown(): | def cutdown(): | ||
+ | ser_gr.write(" | ||
shutdown() | shutdown() | ||
- | system(TODO cuttwo) #payload release | + | os.system("echo 0 > / |
time.sleep(6) | time.sleep(6) | ||
- | system(TODO offtwo) #and we are on the way down | + | os.system("echo 1 > / |
print " | print " | ||
+ | |||
def shutdown(): | def shutdown(): | ||
HV_enable(0) | HV_enable(0) | ||
Set_pressure_target(0) #pump off | Set_pressure_target(0) #pump off | ||
time.sleep(1) | time.sleep(1) | ||
- | system(TODO cutone) #cut plunger | + | os.system("echo 0 > / |
time.sleep(3) | time.sleep(3) | ||
- | system(TODO offtwo) | + | os.system("echo 1 > / |
print " | print " | ||
- | + | ser_gr.write(" | |
- | + | ||
- | print 'AOPP aerosol experiment running' | + | try: |
- | ser_gr=serial.Serial('/ | + | print 'AOPP aerosol experiment running' |
- | ser_daughter=serial.Serial('/ | + | # |
- | ser_phone=serial.Serial('/ | + | log=open(" |
- | print ' | + | ser_gr=serial.Serial('/ |
- | ser_gr.write(" | + | # |
- | reed_solomon.setup_rs() | + | ser_daughter=serial.Serial('/ |
- | ser_gr.write(reed_solomon.encode_string(" | + | # |
- | while not gps_status: | + | ser_phone=serial.Serial('/ |
- | ser_gr.write(" | + | # |
- | print 'ok, gps is ready, we are at:' | + | print ' |
- | ser_gr.write(" | + | ser_gr.write(" |
- | print gps_data | + | #log.write(" |
- | print 'now probing daughterboard' | + | reed_solomon.setup_rs() |
- | print db_stats() | + | ser_gr.write(reed_solomon.encode_string(" |
- | print ' | + | # |
- | HV_enable(1) | + | # while not gps_status(): |
- | print 'HV1 on, probing board' | + | # ser_gr.write(" |
- | print db_stats() | + | #log.write(" |
- | print ' | + | print 'ok, gps is ready, we are at:' |
- | for x in [2,3]: | + | ser_gr.write(" |
- | time.sleep(1) | + | #log.write("GPS locked" |
- | HV_enable(x) | + | print |
- | print | + | print ' |
- | print 'ok, now testing the pump @ 20%' | + | |
- | Set_pressure_target(20) | + | |
- | for i in range(20): | + | |
print db_stats() | print db_stats() | ||
+ | print ' | ||
+ | HV_enable(1) | ||
+ | print 'HV1 on, probing board' | ||
time.sleep(1) | time.sleep(1) | ||
- | Set_pressure_target(0) | ||
- | for i in range(6): | ||
print db_stats() | print db_stats() | ||
- | time.sleep(1) | + | print ' |
- | print ' | + | for x in [2,3]: |
- | print ' | + | HV_enable(x) |
- | Jxpoints, | + | time.sleep(1) |
- | print Jxpoints, | + | print 'HV channel' |
- | print ' | + | HV_enable(0) |
- | ser_phone.write(" | + | print 'ok, now testing the pump @ 20%' |
- | print ser_phone.readline() | + | Set_pressure_target(20) |
- | smscen=get_smscen() | + | for i in range(20): |
- | send_sms(" | + | print db_stats() |
- | print ' | + | time.sleep(1) |
- | Set_pressure_target(default_target) | + | Set_pressure_target(0) |
- | print 'ok launch the fucking balloon' | + | print ' |
- | count=0 | + | for i in range(6): |
- | iterations=0 | + | print db_stats() |
- | cut_down='' | + | time.sleep(1) |
- | system_vector=gps_data() | + | print ' |
- | maxaltitude=system_vector[3] | + | print ' |
- | HV_enable(1) | + | Jxpoints, |
- | while 1: | + | print Jxpoints, |
- | print 'in loop' | + | print ' |
- | iterations+=1 | + | ser_phone.write(" |
+ | print ser_phone.readline() | ||
+ | print ser_phone.readline() | ||
+ | #smscen=get_smscen() | ||
+ | send_sms(" | ||
+ | ser_daughter.flushInput() | ||
+ | ser_phone.flushInput() | ||
system_vector=gps_data() | system_vector=gps_data() | ||
- | daughter_board=db_stats() | + | updatestuff.Predictedn=system_vector[1] |
- | altitude=system_vector[3] | + | updatestuff.Predictede=system_vector[2] |
- | datastring=str(system_vector)+str(daughter_board)+cut_down | + | updatestuff.Oldeast=system_vector[2] |
- | ser_gr.write(reed_solomon.encode_string(callsign+datastring))) #all our telemetery over the radio link | + | updatestuff.Oldnorth=system_vector[1] |
- | if count=2: | + | updatestuff.Oldaltitude=system_vector[3] |
- | send_sms(datastring, | + | updatestuff.Oldseconds=system_vector[0] |
- | count=0 | + | count=0 |
- | count+=1 | + | calibrate=0 |
- | if !are_we_inside([0]+Updatepredict(system_vector)+[0]): | + | layercounter=0 |
- | print " | + | cut_down='' |
- | cutdown() | + | system_vector=gps_data() |
- | cut_down=' | + | maxaltitude=system_vector[3] |
- | if system_vector[0]-startuptime> | + | startuptime=system_vector[0] |
- | print "time cutdown" | + | HV=0 |
- | cutdown() | + | pump=FALSE |
- | cut_down=' | + | print 'ok launch the balloon' |
- | if daughter_board[4]< | + | while 1: |
- | print " | + | print 'in loop' |
- | cutdown() | + | system_vector=gps_data() |
- | cut_down=' | + | daughter_board=db_stats() |
- | if system_vector[3]-maxaltitude< | + | datastring = ',' |
- | print " | + | datastring+=str(daughter_board)+cut_down |
- | shutdown() | + | print datastring |
- | cut_down=' | + | log.write(datastring+" |
- | if system_vector[3]> | + | ser_gr.write(reed_solomon.encode_string(callsign+datastring)) |
- | maxaltitude=system_vector[3] | + | # |
- | if system_vector[3]> | + | # |
- | if system_vector[3]<limit[2]: | + | #print t |
+ | #print reed_solomon.decode_string(t, | ||
+ | if count==2: | ||
+ | send_sms(datastring, | ||
+ | count=0 | ||
+ | os.system(" | ||
+ | count+=1 | ||
+ | if calibrate==30: | ||
+ | ser_daughter.write(" | ||
+ | calibrate=0 | ||
+ | calibrate+=1 | ||
+ | if cut_down=='': | ||
+ | if system_vector[3]/ | ||
+ | layercounter+=1 #we move up a layer | ||
+ | up=Updatepredict(*system_vector) | ||
+ | log.write(str(up)+" | ||
+ | if not are_we_inside([0], | ||
+ | print " | ||
+ | log.write(" | ||
+ | cutdown() | ||
+ | cut_down=' | ||
+ | if system_vector[0]-startuptime> | ||
+ | print "time cutdown" | ||
+ | log.write(" | ||
+ | cutdown() | ||
+ | cut_down=' | ||
+ | #if daughter_board[4]< | ||
+ | # print " | ||
+ | # | ||
+ | # cutdown() | ||
+ | # cut_down=' | ||
+ | if system_vector[3]-maxaltitude< | ||
+ | print " | ||
+ | log.write(" | ||
+ | shutdown() | ||
+ | cut_down=' | ||
+ | if system_vector[3]> | ||
+ | maxaltitude=system_vector[3] | ||
+ | if system_vector[3]> | ||
+ | print ' | ||
+ | HV_enable(1) | ||
+ | Set_pressure_target(default_target_pressure) | ||
+ | log.write(" | ||
+ | pump=TRUE | ||
+ | HV=1 | ||
+ | if system_vector[3]>limit[1] and HV==1: #set the right HV channel for the altitude | ||
HV_enable(2) | HV_enable(2) | ||
- | else | + | log.write(" |
+ | HV=2 | ||
+ | if system_vector[3]> | ||
HV_enable(3) | HV_enable(3) | ||
- | + | log.write(" | |
- | + | HV=3 | |
- | + | time.sleep(10) | |
- | + | iterations+=1 | |
- | + | finally: | |
- | + | log.close() | |
- | </ | + | # |
+ | ser_phone.close() | ||
+ | ser_gr.close() | ||
+ | ser_daughter.close() | ||
+ | print " |
projects/aerosol_code.1203845830.txt.gz · Last modified: 2008/07/19 23:31 (external edit)