Skip to main content

G3000 Instrument Setup

Choosing Screens

The G3000 has three types of display screens: PFD, MFD, and GTC. Each screen is implemented as a separate JS/HTML instrument. For the system to function properly, at least one PFD and exactly one MFD must be included in an airplane. GTCs are not strictly required, but without them users will have no way of interacting with many of the features of the G3000.

Up to two PFDs, one MFD, and an arbitrary number of GTCs are supported.

note

Each additional instrument above the minimum complement carries extra performance and memory requirements. Keep this in mind when choosing which display screens to implement in your airplane.

panel.cfg

To set up your aircraft's panel.cfg for the G3000, add one VCockpit entry for each GDU (PFD or MFD) and GTC. Load the following HTML files for each type of instrument:

  • PFD: NavSystems/WTG3000/PFD/WTG3000_PFD.html
  • MFD: NavSystems/WTG3000/MFD/WTG3000_MFD.html
  • GTC: NavSystems/WTG3000/GTC/WTG3000_GTC.html

Each PFD and GTC instrument must be indexed (even if there is only one such instrument in your aircraft). PFD instruments can have an index of 1 or 2. GTC instruments can have indexes 1, 2, 3, ... etc. The MFD instrument should not be indexed.

Each instrument should also be defined with a specific window size:

InstrumentWidth (px)Height (px)
PFD1280800
MFD1280800
GTC (horizontal)1280768
GTC (vertical)480640

Here is an example of a full set of G3000 VCockpit entries, with two PFDs, one MFD, and two horizontal GTCs (note that the texture names are arbitrary; you are free to use names that are different from the ones in this example):

[VCockpit01]
size_mm=1280,800
pixel_size=1280,800
texture=PFD_L
background_color=42,42,40
htmlgauge00=NavSystems/WTG3000/PFD/WTG3000_PFD.html?Index=1, 0,0,1280,800

[VCockpit02]
size_mm=1280,800
pixel_size=1280,800
texture=PFD_R
background_color=42,42,40
htmlgauge00=NavSystems/WTG3000/PFD/WTG3000_PFD.html?Index=2, 0,0,1280,800

[VCockpit03]
size_mm=1280,800
pixel_size=1280,800
texture=MFD
background_color=42,42,40
htmlgauge00=NavSystems/WTG3000/MFD/WTG3000_MFD.html, 0,0,1280,800

[VCockpit04]
size_mm=1280,768
pixel_size=1280,768
texture=GTC_L
background_color=42,42,40
htmlgauge00=NavSystems/WTG3000/GTC/WTG3000_GTC.html?Index=1, 0,0,1280,768

[VCockpit05]
size_mm=1280,768
pixel_size=1280,768
texture=GTC_R
background_color=42,42,40
htmlgauge00=NavSystems/WTG3000/GTC/WTG3000_GTC.html?Index=2, 0,0,1280,768