Click here to Skip to main content
15,886,518 members
Articles / Programming Languages / C#

C# Avionic Instrument Controls

Rate me:
Please Sign up or sign in to vote.
4.91/5 (72 votes)
17 Jul 2008CPOL2 min read 336.8K   25.2K   197   63
The aim of this C# project is to purpose six aircraft cockpit instruments usable in forms as any other C# controls.
Image 1

Introduction

The aim of this C# project is to purpose six aircraft cockpit instruments usable in forms as any other C# controls and to define a generic instrument class in order to design any kind of dashboard instruments.

Description

The controls are built with bitmaps which are rotated, translated or scaled before to be displayed. The basic methods for rotate, translate and scale images are defined in the mother class. Each control then uses its dedicated parameters (related to a physical signification) in order to manipulates the images.

Aircraft Instruments

  • Air speed indicator: airspeed (kts)
  • Attitude Indicator: pitch (deg), roll (deg)
  • Altimeter: altitude (ft)
  • Turn Coordinator: turn rate (deg/min)
  • Vertical speed indicator: vertical speed (ft/min)
  • Heading indicator: heading (deg)

Details of the Key Functions

This section explains in detail the implementation of the basic functions defined in the InstrumentControl class.

Rotate Image

Implementation

The rotation of the image is divided in two main parts:

First, the rotation of the PaintEventArgs coordinate system around the upper left corner of the drawing area.

Second, the drawing of the image corrected by translation offset in order to display the image as if it has turned around a user defined point.

AvionicsControlDemo_RotationMainSteps.JPG

Let’s see step by step:

Step 0: Initial situation.

AvionicsControlDemo_RotationPhase0.JPG

Step 1: Rotate the PaintEventArgs coordinate system around the left upper corner of the paint area.

AvionicsControlDemo_RotationPhase1.JPG

Corresponding code sample:

C#
// Rotate image support
pe.Graphics.RotateTransform((float)(alpha * 180 / Math.PI));

Step 2: Draw the image and apply the translation correction.

AvionicsControlDemo_RotationPhase2.JPG

Corresponding code sample:

C#
// Display image
pe.Graphics.DrawImage(img, (ptImg.X + deltaX) * scaleFactor, (ptImg.Y + deltaY) * 
	scaleFactor, img.Width * scaleFactor, img.Height * scaleFactor);

Step 3 (Final step): Put the PainEventArgs coordinate system as found.

AvionicsControlDemo_RotationPhase3.JPG

Corresponding code sample:

C#
// Put image support as found
pe.Graphics.RotateTransform((float)(-alpha * 180 / Math.PI));

The key point in those operations is the calculation of the translation correction coefficients.

The next figure explains the geometrics considerations:

AvionicsControlDemo_RotationDetailedScheme.JPG

G0 is the user defined rotation center
G1 is the G0 position after the step 1.

The aim of this section is to identify the G1G0 translation and apply the corresponding offset in order to draw the rotation point as if it has not moved.

Then we work with the geometrics definitions:

a. AvionicsControlDemo_RotationCalcs1.JPG
b. AvionicsControlDemo_RotationCalcs2.JPG
c. AvionicsControlDemo_RotationCalcs3.JPG
d. AvionicsControlDemo_RotationCalcs4.JPG

As a result, the offset coefficients are:

AvionicsControlDemo_RotationCalcs5.JPG

The corresponding code sample is as follows:

C#
// Computed offset
deltaX = (float)(d * (Math.Cos(alpha - beta) - Math.Cos(alpha)* 
	Math.Cos(alpha + beta) - Math.Sin(alpha) * Math.Sin(alpha+ beta)));
deltaY = (float)(d * (Math.Sin(beta - alpha) + Math.Sin(alpha)* 
	Math.Cos(alpha + beta) - Math.Cos(alpha) * Math.Sin(alpha + beta)));

Parameters

  • "pe": The paint area event where the image will be displayed
  • "img": The image to display
  • "alpha": The angle of rotation in radian
  • "ptImg": The location of the left upper corner of the image to display in the paint area in nominal situation
  • "ptRot": The location of the rotation point in the paint area
  • "scaleFactor": Multiplication factor on the display image

AvionicsControlDemo_RotationFunctionParameters.JPG

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionC# avionic controls Pin
JPC0624020-Jun-11 3:31
JPC0624020-Jun-11 3:31 
Generalthank you Pin
yardloun4-Apr-11 4:56
yardloun4-Apr-11 4:56 
GeneralMy vote of 5 Pin
YEBM Knight8-Feb-11 3:14
YEBM Knight8-Feb-11 3:14 
GeneralGreat work - I am using these with the AR Drone Pin
shobley17-Oct-10 6:52
shobley17-Oct-10 6:52 
GeneralRe: Great work - I am using these with the AR Drone Pin
Destiny77718-Sep-12 8:43
Destiny77718-Sep-12 8:43 
Generali love the control I hope Pin
Jayson Ragasa16-May-10 2:23
Jayson Ragasa16-May-10 2:23 
GeneralWell done. Pin
Serhat20-Apr-10 20:47
Serhat20-Apr-10 20:47 
GeneralConnect up to FlightGear flight simulator Pin
steveyork28-Oct-09 6:25
steveyork28-Oct-09 6:25 
Hi All,

Thanks Guillaume for some great software. I have modified DemoWinow() to use a WinSock TCP/IP connection to direct network output of instrument data from the Flight Gear simulator. It works very well.

I have removed the user controls, added a few additional dials (e.g. for engine) and am in the process of mounting the display in a physical aircraft mockup that will include 2 degrees of freedom motion, with motors driven via x,y,z acceleration outputs from Flightgear.

Guillaume, if you read this, would it be ok to photo and publish the 'new' software?

I can be emailed thrugh this site.

Many thanks.
GeneralAdd to asp.net page Pin
girishdpatil24-Feb-09 20:09
girishdpatil24-Feb-09 20:09 
GeneralAdd to projects Pin
Frank Shearer20-Feb-09 14:28
Frank Shearer20-Feb-09 14:28 
GeneralRe: Add to projects Pin
alejos30-Mar-10 3:26
alejos30-Mar-10 3:26 
GeneralRe: Add to projects Pin
Serhat20-Apr-10 21:14
Serhat20-Apr-10 21:14 
GeneralRe: Add to projects Pin
Member 779617320-Apr-11 6:29
Member 779617320-Apr-11 6:29 
GeneralRe: Add to projects Pin
Member 779617320-Apr-11 11:30
Member 779617320-Apr-11 11:30 
GeneralTransform Pin
NicolasG25-Jul-08 10:59
NicolasG25-Jul-08 10:59 
GeneralRe: Transform Pin
DrGanjoo11-Nov-08 23:08
DrGanjoo11-Nov-08 23:08 
GeneralExcellent look and feel to these controls - well done Pin
BradOsterloo21-Jul-08 12:05
BradOsterloo21-Jul-08 12:05 
GeneralCool! Pin
bigals20-Jul-08 13:55
bigals20-Jul-08 13:55 
GeneralRe: Cool! Pin
Destiny7779-Oct-12 17:41
Destiny7779-Oct-12 17:41 
GeneralFantastic job.... But there is something missing... Pin
Bill SerGio, The Infomercial King18-Jul-08 7:11
Bill SerGio, The Infomercial King18-Jul-08 7:11 
GeneralRe: Fantastic job.... But there is something missing... Pin
andre1234518-Jul-08 8:53
andre1234518-Jul-08 8:53 
GeneralRe: Fantastic job.... But there is something missing... Pin
Bill SerGio, The Infomercial King18-Jul-08 9:55
Bill SerGio, The Infomercial King18-Jul-08 9:55 
GeneralRe: Fantastic job.... But there is something missing... Shudder? Pin
Destiny77718-Sep-12 8:46
Destiny77718-Sep-12 8:46 
GeneralRe: Fantastic job.... But there is something missing... Shudder? Pin
Bill SerGio, The Infomercial King18-Sep-12 10:14
Bill SerGio, The Infomercial King18-Sep-12 10:14 
GeneralRe: Fantastic job.... But there is something missing... Shudder? Pin
Destiny7779-Oct-12 17:38
Destiny7779-Oct-12 17:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.