The image you see below is the result of the curve analysis showing slopes and times from the static test.
The following code displays a graph of the integral of the thrust force and time for the rocket motor which is known as the rocket motor's IMPULSE. The data used to determine the slopes of the thrust curve was experimentally determined using a Vernier Force Probe and a LabPro interface. The data was then put into this LB program and produced the image you see when the program was run.
'A-8 Estes Rocket Motor Thrust Integration Ver 1.0'This program uses static test thrust curve data to draw an thrust-time integration of the'Estes A-8 rocket engine.nomainwinWindowWidth=500WindowHeight=500graphicbox#w.g,10,10,480,400open"Rocket Motor Force*time Integration"forwindowas#w
#w,"trapclose [quit]"#w.g," down ; size 1"for tt =0to .7 step 0.002'The following times and slopes were determined by using Vernier logger pro and static test dataif tt <=.7 then th =-35.79*tt +25.58if tt <= .65 then th =-0.0229* tt +2.362if tt <=0.395then th =-10.9*tt +6.662if tt <=0.27then th =-151.3*tt +44.54if tt <=0.225then th =53.49*tt +-2.049if tt <0.035then th =0.0#w.g,"up ; goto "; tt *400/0.8; " "; 400-th /10*400; " ; down ; goto "; tt *400/0.8; " 400"next tt
wait[quit]close#w
end
The following code displays a graph of the integral of the thrust force and time for the rocket motor which is known as the rocket motor's IMPULSE. The data used to determine the slopes of the thrust curve was experimentally determined using a Vernier Force Probe and a LabPro interface. The data was then put into this LB program and produced the image you see when the program was run.