Showing posts with label high altitude balloon. Show all posts
Showing posts with label high altitude balloon. Show all posts

Friday, January 6, 2017

HAB Balloon Inflation



After some initial rookie mistakes I now may have a working balloon inflator. I mistakenly purchased online a filler kit of which the regulator was not the required Type 10 for Australian gas cylinders, so of course when my gas cylinder arrived this morning the regulator wouldn't fit. With little time remaining I hit the web and found several places that I wish I had found earlier.

Blimp and Cloudbuster Inflator #32681 - Each
Conwin’s Inflator
Several party balloon places provide filling implements for balloons they call cloud busters. A company in Sydney Qualtex distributes an inflator but only sells through its distributors. If you have the time you may be able to ask your local part shop if they can order one for you.

I didn't want to wait for an order to be placed so I decided to make my own inflator, with the nozzle I already had. I just needed to find a new regulator.

I was stuck trying to decide on which regulator would be the easiest to modify for my purpose.

I could have opted for the standard balloon inflator pictured on the right, but I wasn't sure if I would be able to find a brass fitting with a hose nipple in time, But I'm sure this would have worked Also I'm uncertain as to what the flow rate would be.

I finally decided on a regulator that had a variable flow rate and dials, I was able to connect a hose to the provided nozzle and onto my inflator nozzle.

My setup
Filler nozzle fits the balloon
The setup looks good, but honestly I'm not confident as its a little off what I was after.  The nozzle on the regulator was for only a 5mm hose, so I don't know if this will give a great flow rate. I also hope that the hose will be durable enough not to burst. I'm sure I will find out soon.

I also pulled my balloon out of its bag to ensure that the filler nozzle actually was the right size for my balloon.  Thankfully it fitted perfectly.




Sunday, November 17, 2013

High Altitude Baloons

Thought I would look into some of various High Altitude Balloon available on the market to hopefully help me decide what I need to obtain.

My initial reading tells me I need a balloon capable of lifting my weighted payload high into the upper atmosphere. Getting the wrong balloon could lead to a low altitude burst and spoil the fun early.

I have seen a number of other HAB projects use Hwoyee Balloons but I'm sure there are many others.

Other sites :-

Kaymont Balloons - Totex Balloons


Several of the balloon websites sell different styles of balloons. Most designed for meteorigolical purposes.

Ceiling Balloons - Smaller compared to other weather balloons and is usually use to measure cloud height.
Pilot Balloons - Are usually used to measure wind speed and direction. Usually rise to 15,000 - 40,000 feet depending on the ascent rate and payload.
Sounding Balloons - These are the larger of the weather style balloons and have been known to reach heights in excess of 130,000 feet.

Kaymont Balloons suggest several balloons on their website. Such as HAB-600 for first time HAB'ers up to the HAB-3000 for higher burst altitudes.



Monday, December 17, 2012

APRS Tracking

After some minor hurdles I now seem to have my OpenTracker USB working correctly. So I am a lot closer to having a tracker ready for extreme testing.

Current setup contains a Garmin GPS-18x-PC connected directly into the Open Tracker via the serial connector. The Open Tracker then connects into a Yaesu VX-7R handheld.   The GPS and Tracker are connected to a bank of AA Batteries supplying 12volts, whilst the handheld uses its own battery.

Initial tests have been using the same AA's for several months with tests over that time being for several hours. I have been monitoring the voltage over this time dropping from 12volts , down to 9 volts and this morning on a drive to work , the voltage was at 7 volts. All the while the tracker and GPS were still operating. I am still only using standard AA's so nothing like what will be in the final version, but so far happy that the battery should last the trip.  I do hope to connect a few more devices up to the same power source such as a data logger, so this may test this power supply some more.

I have also discovered that the GPS seems to take time to obtain a GPS fix, this seems to add delay to the initial transmission. I need to nut this out further to ensure that it is just a GPS visibility problem as when the GPS was in clear view of the sky I couldn't reproduce the problem.  But want to ensure all is good for launch day otherwise its a waste of battery power waiting for a GPS fix before launch.




Friday, November 30, 2012

Opentracker USB take 2

After damaging the original radio mic cable that came with my tracker, I was starting to think that I may have damaged something in the tracker itself. Nothing I tried seemed to make the tracker key up my handheld. However, a couple of days ago my replacement mic cable arrived and I finally found some time to play with it.

Initially I wired up the cables as per the original , however nothing worked. I discovered that the mic cable was wired differently and needed to swap a few cables around. This seemed to do the trick and I am now TXing again. Phew...

Now that I am TXing again, I haven't yet seem my callsign appear on aprs.fi So again I was wondering if something wasn't right. So to test this out I downloaded some APRS tracking software that runs using  my PC's soundcard. After a few tweaks, like changing the baud rate to 1200, i had success. The application decoded my handhelds signal and I was able to read the coordinates. It accurate to about 5 meters, which probably isn't to bad seeing the GPS unit is on the window and probably not seeing a full sky.

So with a big smile on my face, I can finally after many weeks of downtime move on to get the tracker into a more portable form. Would be nice to see my callsign on APRS.fi to double confirm that everything is ok.


Sunday, October 28, 2012

CHDK coding on my IXY Digital 70

Decided to have a play around with CHDK scripts available for my camera, and saw that the coding was very easy to follow. So I decided to create my own using some minor pieces from the example scripts provided on the CHDK wiki.

CHDK Screen

I wanted a script that would continuously take photo's for the duration of the flight and would require minimal fiddling around to start. By this I wanted to reduce/remove  any button clicks that may result in a setting being changed pre-launch that could jeopardize the mission.

Below is the code I have started with. It has the following features.  Note that it works with my Canon IXY Digital 70 and may not suit all camera's.

  • Sets a 1st shot delay. No point going all snap happy with the box still on the ground.
  • Variable shot interval
  • Logging of camera internal temperature and battery voltage to SD card.
    • Saw this as a backup temp data logger for the flight
  • Disable flash.
    • Couldn't find a single command for this so had to create a loop that pressed the flash button until it was off.
  • Disables LCD screen.
    • Read in the script manual, that the screen automatically resumes when you take a picture. For the screen to be turned off you must also allow for the picture to be written to SD card otherwise the screen will just come back on again. I saw this happening so added the 'sleep 500' to give it enough time to save.

Happy for any comments and tips, as its my first CHDK script so I'm sure there may be improvements I can make.


<davCam.bas>


@title DavCam
@param a interval (sec)
@default a 12
@param d Delay 1st Shot (sec)
@default d 20
@param n fileNum
@default n 1

if a<5 then a=5
a=a*1000
if d<1 then d=1
d=d*1000

print "Script will run"
print "until interrupted"
gosub "disFlash"
playsound 1 
sleep d
cls

print_screen n
print get_time 4;"/";get_time 3;"/";get_time 5;" ";get_time 2;":";get_time 1;":";get_time 0
print " "
print "Time,Optics Temp,CCD Temp,BattmV"

o = get_day_seconds

:main
    gosub "getData"
    gosub "takePic"
    set_backlight 0
    sleep a
    rem set_backlight 1
goto "main"

:takePic
    set_zoom 0
    do
        get_zoom z
    until z = 0
    shoot
    sleep 500
    return

:getData
    print (get_day_seconds - o);",";get_temperature 0;",";get_temperature 1;",";get_vbatt;
    return

:disFlash
    f=get_flash_mode
    while f<1
    click "right"
f=get_flash_mode
sleep 500
    wend
    print get_flash_mode
    return

:restore
    set_backlight 1
    end

So far I have set the camera to launch the script when powered on. So hopefully when the launch commences its a matter of pressing one button and that's it.

I haven't looked into exposure settings yet, as I don't really know what will be best for high altitudes. So maybe people reading this may have some ideas.


Friday, October 19, 2012

Garmin GPS18 PC - First test

It took a couple of weeks to arrive but my Garmin GPS18 was finally delivered. I couldn't wait to test it out, but don't have a GPS tracker yet, so had to use my laptop.

The GPS pictured below comes with a cig lighter plug and a sticker stating it will work with 8v - 30v.. I plan on removing the cig lighter plug and connecting directly to a portable power source. So I will need to run a few tests to determine what sort of battery I need. Obviously I need something that will last the duration of the flight and the recovery phase.



The serial connection will allow direct attachment to the GPS Tracker when I receive it, but for my first test it needs to connect to my laptop. As modern technology would have it my laptop doesn't have any serial ports. But this isn't a problem as I have a serial to USB adaptor which does the conversion.

Successfully downloaded the Garmin Web updater software and was able to update the firmware. So far so good. I then searched for some GPS software to test things out and found OziExplorer which I have used many years ago with a previous Garmin.

Had to set the GPS type and comm port details, as well as untick the USB GPS box, then I was in action. Had the GPS sitting inside on the window, so GPS signal was at first low, but after a few minutes the GPS updated and I had a signal fix.   Phew , it works...


Will hunt for a GPS Data Logging app so that I can just log the raw data, Maybe go for a drive around with it connected to the laptop and see what it picks up.

Wednesday, October 17, 2012

Camera Trials - Installing CHDK on IXY Digital 70CHDK Menu

Been really eager to get into some testing and recently received an E-Bay purchase of a Canon IXY Digital 70 camera. So now that I have it I plan to mod it with the CHDK tool and see what its capable of. Camera was really cheap but will be a great initial est unit. It may make the flight if the tests are good.


Here are the steps I am taking to get the CHDK tool working on the camera. May come in handy for other experimenters.

1. I followed the FAQ on the CHDK site, which gets you to create an empty ver.req or vers.req on the cameras SD card. With the SD card inserted I just hold the Func and Disp buttons and the version is displayed.  Though I did do this first I then also found another tool that does all the work for you.

Found a tool called ACID on the FAQ page which just with a simple photo it will tell you what you need to run CHDK. This is what I ended up doing.

After running ACID I simply took a photo with the camera and dragged it into the App and got the below results.

My results running ACID


 Ticked the download stable CHDK full build and clicked the Download stable CHDK. The app then downloads and extracts into a Stable CHDK folder into the apps working directory.

2. Next I read the Preparing SD Card FAQ which gives more detail and a few other methods, but really all I did was copy the files downloaded to the SD card, in playback mode , choose firmware upgrade from the camera's playback menu. It then asks for confirmation to upgrade and it was that easy.

Following the upgrade I was able to press the printer button and the CHDK menu appears

CHDK Menu
First steps complete.  Now to have a play around and check out some scripts to see what this puppy can do  :-)

Edit :- Since doing some testing I have realized that you need to make the SD card bootable so that the CHDK tool will be available when you first turn the camera on.





Monday, October 15, 2012

Congratulations Felix

Congratulations to Felix Baumgartner and his team with the successful supersonic dive from a High altitude balloon. Can't image the time and effort that would have gone into the planning and organisation of such a fee. Makes my balloon project look petty.

Red Bull Stratos