Welcome to Flightinfo.com

  • Register now and join the discussion
  • Friendliest aviation Ccmmunity on the web
  • Modern site for PC's, Phones, Tablets - no 3rd party apps required
  • Ask questions, help others, promote aviation
  • Share the passion for aviation
  • Invite everyone to Flightinfo.com and let's have fun

Flight Computers - which one?

Welcome to Flightinfo.com

  • Register now and join the discussion
  • Modern secure site, no 3rd party apps required
  • Invite your friends
  • Share the passion of aviation
  • Friendliest aviation community on the web
Vector4fun said:
Some of you new guys make this all sound so complicated.

My Skyhawk carries me, the wife, and all the bags that fit,

Or three normal adults,

Or four adults and half fuel.

Unless I have a fuel leak, it runs for 4+30 hours on full tanks, which I never test because I have a 3 hr bladder, max.

It flies 100 kts mas o menos

Anybody who got thru 9th grade can figure those numbers in their head.

(JAFI, you didn't see this.... :D )
That's precisely why there are so many unused electronic flight computers stashed away in dresser drawers.
 
I use my graphing calculator (TI-83). You can likely find programs off the internet to enter into your calculator that do aviation related calculations. I programmed mine to do temperature conversions and density altitude. I could put more in but probably wouldn't use them. So, anyway for the same price you can have a device that is actually useful.
 
hm.. i got a Ti-83+ ...

what cable would i need to get stuff from my 'puta to the calculator?
 
I have the Sporty's E6B. It is easy to use.

I don't like the ASA, version. With only two nav arrows, it can be quite inconvienent...........
 
mattpilot said:
hm.. i got a Ti-83+ ...

what cable would i need to get stuff from my 'puta to the calculator?

Usually the store that sells TI calculators will also sell the cable that goes with it (it should say on the box what models it is for.)

However, you could just enter the programs yourself without the cable--that's what I did. The manual for the calculator will tell you how to do that. It's a little awkward at first but then you get used to it. I wrote the programs myself but I did get the formulas online.

I will post the code for the temperature converter below, if you want I'll also post density altitude and wind correction angle/groundspeed. The words that are not in all caps come from various menus, most of them PRGM except for "Fix 2" and "Float" which come from MODE. The -> is the STO key.

Code:
:ClrHome
:Fix 2
:Disp "1 = *C TO *F"
:Disp "2 = *F TO *C"
:Disp ""
:0->W
:While W < 1 or W > 2
:Input "ENTER 1 OR 2: ", W
:End
:ClrHome
:If W=1
:Then
:Disp "ENTER TEMP"
:Input "DEGREES C:", T
:T*1.8+32->N
:Disp ""
:Disp "FARENHEIT:"
:Output(4,11,N)
:Else
:Disp "ENTER TEMP"
:Input "DEGREES F:", T
:(T-32)/1.8->C
:Disp ""
:Disp "CELCIUS: "
:Output(4,11,C)
:End
:Float

When executed the program would look like this:

1 = *C TO *F
2 = *F TO *C

ENTER 1 OR 2: 1

ENTER TEMP
DEGREES C: 15

FARENHEIT: 59.00
 

Latest posts

Latest resources

Back
Top