Board index FlightGear Development Aircraft

Airbus A320neo (A319,A320,A321)

Questions and discussion about creating aircraft. Flight dynamics, 3d models, cockpits, systems, animation, textures.

Re: Airbus A320neo (A319,A320,A321)

Postby bicyus » Wed Apr 04, 2012 10:58 am

Boeing, test the new version

Airbus A320neo V2.2 Beta 2C

- New 3D sound updated
- New sparks efect on Belly landings (gears up)

Give me feedback on how Aircraft sounds now, and get a try on belly landings with out gears, you'll see sparks comming from engines ;-)
User avatar
bicyus
 
Posts: 116
Joined: Fri Nov 25, 2011 4:11 pm
Location: Bilbao
Callsign: Bicyus
Version: 2.6
OS: Ubuntu Linux

Re: Airbus A320neo (A319,A320,A321)

Postby bicyus » Thu Apr 05, 2012 6:58 pm

Update
Navigation Display:
- ARC Mode NAV bugs Corrected
- Flight track Path added ARC + ROSE
- Aircraft Align bug added ARC + ROSE
- New Mask
- Ground Terrain Radar added & fixed from 787-8

https://gitorious.org/airbus-aircraft/a320neo/archive-tarball/master
User avatar
bicyus
 
Posts: 116
Joined: Fri Nov 25, 2011 4:11 pm
Location: Bilbao
Callsign: Bicyus
Version: 2.6
OS: Ubuntu Linux

Re: Airbus A320neo (A319,A320,A321)

Postby omega95 » Fri Apr 06, 2012 5:14 am

bicyus wrote in Thu Apr 05, 2012 6:58 pm:- Ground Terrain Radar added & fixed from 787-8


Cool, btw what do you mean by 'fixed'... If it turns out better than the positional ground radar in the 787, I'd love to replace the 787 ground radar. :)

Oh and I also tested the A320neo from git (pulled yesterday) and it's a pretty awesome aircraft now... But then the FDM acts kinda weird when you pitch down to much... And I couldn't get the fly-by-wire working properly either... I did a couple of tests and logged some properties.. Also found the relation b/w gspeed, g-force and pitch-rate. I'll try out a different fly-by-wire system for the neo soon. :D

EDIT : http://flightgear.org/forums/viewtopic.php?f=4&t=15947
Merlion Virtual Airlines - the experience of a flight time...
Get high quality aircraft, airports, video tutorials or development tools from my hangar.
omega95
 
Posts: 1222
Joined: Sat Jul 30, 2011 1:59 am
Location: -unknown-
Callsign: MIA0001, OM-EGA
IRC name: omega95
Version: 2.12 git
OS: Ubuntu 13.04

Re: Airbus A320neo (A319,A320,A321)

Postby Sorcerer » Fri Apr 06, 2012 12:03 pm

Hi,

great updates :)

But one thing that is still missing is some navigational data like waypoint, distance and eta.
I added this information in the currently empty page-NAV.xml

page-NAV.xml
Code: Select all
<?xml version="1.0"?>
<PropertyList>
    <name>NAV</name>
    <w-base>256</w-base>
    <h-base>256</h-base>
    <layers>

   <!-- right top corner, line 1: display waypoint id and bearing  -->
   <layer> 
            <name>Waypoint ID</name>
            <type>text</type>
            <font>arial_black</font>
            <point-size>8</point-size>
            <color>
                <red>1.0</red>
                <green>1.0</green>
                <blue>1.0</blue>
            </color>
            <chunks>
                <chunk>
                    <type>text-value</type>
                    <property>autopilot/route-manager/wp/id</property>
                </chunk>
            </chunks>
            <transformations>
                <transformation>
                    <type>x-shift</type>
                    <offset>40</offset>
                </transformation>
                <transformation>
                    <type>y-shift</type>
                    <offset>115</offset>
                </transformation>
            </transformations>
        </layer>
   <layer>
            <name>Waypoint Bearing</name>
            <type>text</type>
            <font>arial_black</font>
            <point-size>7</point-size>
            <color>
                <red>0.0</red>
                <green>1.0</green>
                <blue>0.0</blue>
            </color>
            <chunks>
                <chunk>
                    <type>number-value</type>
                    <property>autopilot/route-manager/wp/bearing-deg</property>
          <format>%3.0f</format>
                </chunk>
            </chunks>
            <transformations>
                <transformation>
                    <type>x-shift</type>
                    <offset>100</offset>
                </transformation>
                <transformation>
                    <type>y-shift</type>
                    <offset>115</offset>
                </transformation>
            </transformations>
        </layer>

   <!-- right top corner, line 2: display distance to waypoint and the unit (NM)  -->
   <layer>
            <name>Waypoint Distance</name>
            <type>text</type>
            <font>arial_black</font>
            <point-size>7</point-size>
            <color>
                <red>0.0</red>
                <green>1.0</green>
                <blue>0.0</blue>
            </color>
            <chunks>
                <chunk>
                    <type>number-value</type>
                    <property>autopilot/route-manager/wp/dist</property>
                    <format>%4.0f</format>
                </chunk>
            </chunks>
            <transformations>
                <transformation>
                    <type>x-shift</type>
                    <offset>75</offset>
                </transformation>
                <transformation>
                    <type>y-shift</type>
                    <offset>100</offset>
                </transformation>
            </transformations>
        </layer>
   <layer>
            <name>Waypoint Distance Unit (NM)</name>
            <type>text</type>
            <font>arial_black</font>
            <point-size>7</point-size>
            <color>
                <red>0.5</red>
      <green>1.0</green>
      <blue>1.0</blue>
            </color>
            <chunks>
      <chunk>
                   <type>literal</type>
                   <text> NM</text>
                </chunk>
            </chunks>
            <transformations>
                <transformation>
                    <type>x-shift</type>
                    <offset>100</offset>
                </transformation>
                <transformation>
                    <type>y-shift</type>
                    <offset>100</offset>
                </transformation>
            </transformations>
        </layer>


   <!-- right top corner, line 3: display ETA to waypoint  -->
        <layer>
            <name>ETA</name>
            <type>text</type>
            <font>arial_black</font>
            <point-size>7</point-size>
            <color>
                <red>0.0</red>
                <green>1.0</green>
                <blue>0.0</blue>
            </color>
            <chunks>
                <chunk>
                    <type>text-value</type>
                    <property>autopilot/route-manager/wp/eta</property>
          <format>%s</format>
                </chunk>
            </chunks>
            <transformations>
                <transformation>
                    <type>x-shift</type>
                    <offset>100</offset>
                </transformation>
                <transformation>
                    <type>y-shift</type>
                    <offset>85</offset>
                </transformation>
            </transformations>
        </layer>
    </layers>
</PropertyList>


This should also be added to the ARC mode like in the real airbus (video on the previous page at 3:25)
Sorcerer
 
Posts: 3
Joined: Sat Mar 17, 2012 6:13 pm
Location: Germany
Callsign: Sorc
Version: 2.6
OS: Ubuntu

Re: Airbus A320neo (A319,A320,A321)

Postby omega95 » Fri Apr 06, 2012 5:12 pm

My Jabiru J-170 and Boeing 787-8 projects are on hold till I get any info on camera view (and terrain view) to texture from Rembrandt, so I'm re-visiting the A320neo project. :D

I mean big time, I started working on a new flightdeck and'll soon do some nasal stuff, systems (like hydraulics, maybe a new electrical, pneumatics, fuel etc.) and of-course, the airbus mCDU soon..

Here're a couple of shots of the main cockpit panel so far, started work on this about an hour ago. :)

Image
Image
Image

About time the Airbus A320/A330/A340 cockpit got some serious attention. :P
Merlion Virtual Airlines - the experience of a flight time...
Get high quality aircraft, airports, video tutorials or development tools from my hangar.
omega95
 
Posts: 1222
Joined: Sat Jul 30, 2011 1:59 am
Location: -unknown-
Callsign: MIA0001, OM-EGA
IRC name: omega95
Version: 2.12 git
OS: Ubuntu 13.04

Re: Airbus A320neo (A319,A320,A321)

Postby bicyus » Fri Apr 06, 2012 8:09 pm

omega95 wrote in Fri Apr 06, 2012 5:14 am:[Cool, btw what do you mean by 'fixed'... If it turns out better than the positional ground radar in the 787, I'd love to replace the 787 ground radar. :)


Omega95, the Aircraft was on bottom left, in the terrain that was represented. I fix it so the A/C is in the Bottom/Center position of the represented Field.
https://gitorious.org/fg-boeing-787-8/fg-boeing-787-8-main/commit/db9b273cad7e2d5a9d88a801e4a0b51917e10236

And that cockpit looks AWESOME!!!! ;-)

Sorcerer:

your right, Page-NAV.xml Updated! ;-)
User avatar
bicyus
 
Posts: 116
Joined: Fri Nov 25, 2011 4:11 pm
Location: Bilbao
Callsign: Bicyus
Version: 2.6
OS: Ubuntu Linux

Re: Airbus A320neo (A319,A320,A321)

Postby omega95 » Sat Apr 07, 2012 11:06 am

Image
Merlion Virtual Airlines - the experience of a flight time...
Get high quality aircraft, airports, video tutorials or development tools from my hangar.
omega95
 
Posts: 1222
Joined: Sat Jul 30, 2011 1:59 am
Location: -unknown-
Callsign: MIA0001, OM-EGA
IRC name: omega95
Version: 2.12 git
OS: Ubuntu 13.04

Re: Airbus A320neo (A319,A320,A321)

Postby omega95 » Sat Apr 07, 2012 1:46 pm

Image

Image
Merlion Virtual Airlines - the experience of a flight time...
Get high quality aircraft, airports, video tutorials or development tools from my hangar.
omega95
 
Posts: 1222
Joined: Sat Jul 30, 2011 1:59 am
Location: -unknown-
Callsign: MIA0001, OM-EGA
IRC name: omega95
Version: 2.12 git
OS: Ubuntu 13.04

Re: Airbus A320neo (A319,A320,A321)

Postby Muffinman » Sat Apr 07, 2012 2:19 pm

Lookin' good Omega!! :D :) :o :shock: :mrgreen:
My personal livery collection. Specializing in Star Alliance and oneworld airlines and logojets.
User avatar
Muffinman
 
Posts: 520
Joined: Mon Mar 07, 2011 10:34 pm
Location: KRDU
Callsign: N626CM
Version: 2020.1.3
OS: Windows 10

Re: Airbus A320neo (A319,A320,A321)

Postby omega95 » Sat Apr 07, 2012 4:02 pm

Muffinman wrote in Sat Apr 07, 2012 2:19 pm:Lookin' good Omega!! (5 smilies here)


Thanks :)

And some more work...

Image
Merlion Virtual Airlines - the experience of a flight time...
Get high quality aircraft, airports, video tutorials or development tools from my hangar.
omega95
 
Posts: 1222
Joined: Sat Jul 30, 2011 1:59 am
Location: -unknown-
Callsign: MIA0001, OM-EGA
IRC name: omega95
Version: 2.12 git
OS: Ubuntu 13.04

Re: Airbus A320neo (A319,A320,A321)

Postby bicyus » Sun Apr 08, 2012 11:56 am

GO GO GO!!! ;-)

Looking very good Omega95!

just hopping it is poly optimized ;-) i'm going to need a new Graphic card! :D my computer is getting old!

Keep Going mate!
I'm on Airbus FBW, mixing you work and mine. ;-)
User avatar
bicyus
 
Posts: 116
Joined: Fri Nov 25, 2011 4:11 pm
Location: Bilbao
Callsign: Bicyus
Version: 2.6
OS: Ubuntu Linux

A320neo Licensing

Postby bicyus » Sun Apr 08, 2012 12:25 pm

Hi Guys,

As on every "open" project, many people has worked on "A320neo". But surprisely it doesn't have any license.

I would like the airplane to be added to FG-DATA so it is published in next release, for that we need to be GPL license.

So, is there any objections on releasing as GPL? if there is any, please come up. otherwise i'll go ahead.

I'm adding an Authors.txt too.

Thanks ;-)
User avatar
bicyus
 
Posts: 116
Joined: Fri Nov 25, 2011 4:11 pm
Location: Bilbao
Callsign: Bicyus
Version: 2.6
OS: Ubuntu Linux

Re: Airbus A320neo (A319,A320,A321)

Postby Figaro » Sun Apr 08, 2012 1:28 pm

Well considering it's practically all evolved from the A320-family in FG, I see no reason why not.
User avatar
Figaro
 
Posts: 1312
Joined: Fri Feb 25, 2011 10:23 pm
Callsign: 4L-FIG
OS: Ubuntu/Win10

Re: Airbus A320neo (A319,A320,A321)

Postby omega95 » Sun Apr 08, 2012 3:04 pm

Jon, can you give me a brief idea of what systems already exist (the XML stuff you've done) so that I can work on remaining nasal systems for the aircraft. :)
Merlion Virtual Airlines - the experience of a flight time...
Get high quality aircraft, airports, video tutorials or development tools from my hangar.
omega95
 
Posts: 1222
Joined: Sat Jul 30, 2011 1:59 am
Location: -unknown-
Callsign: MIA0001, OM-EGA
IRC name: omega95
Version: 2.12 git
OS: Ubuntu 13.04

Re: Airbus A320neo (A319,A320,A321)

Postby bicyus » Sun Apr 08, 2012 5:09 pm

- fuel is fully done on JSBsim (but electrical part missing, like pumps only work on electrical power)
maybe adjust Engines FDM for fuel consumtion.
Add a Jetison valve switch, just the switch, it's already on system but don't know were this is done on Airbus. Maybe on CDU?

- electrical, should need a review, engine1 generator not working (RAT MISSING)

- Hidraulic... what is that? xD to be done i think (blue, green, yellow systems)
- CDU/FMGU (we sould wait for 787-8 framwork or something like that)
- ND needs some work, for Waypoints or Radar TCAS, actualy in only use the WXRADAR image.

it would be grate to have something like Co-Pilot from 787-8 and that Announce for every system

INTERESTING: ECAM Actions and Alarm Systems, we need something new here.
User avatar
bicyus
 
Posts: 116
Joined: Fri Nov 25, 2011 4:11 pm
Location: Bilbao
Callsign: Bicyus
Version: 2.6
OS: Ubuntu Linux

PreviousNext

Return to Aircraft

Who is online

Users browsing this forum: No registered users and 16 guests