Board index FlightGear Development Aircraft

Boeing 777-300 by SP-WKA

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

Re: Boeing 777-300 by SP-WKA

Postby Sweetgrapes » Fri Nov 18, 2011 11:01 pm

Nice plane, but seems you have done pretty much nothing on the FDM, so the plane sucks to fly. Deafinately add that to your to do list. And how about a cabin? Even the 200 doesn`t have one.
"A bird can`t damage an engine, but an engine can damage a bird."
User avatar
Sweetgrapes
 
Posts: 564
Joined: Mon Dec 13, 2010 9:27 pm
Location: Tallinn, Estonia
Callsign: Wingtip or MIA0049
OS: Windows 7 64-bit

Re: Boeing 777-300 by SP-WKA

Postby SP-WKA » Sat Nov 19, 2011 12:33 am

could you help me with this?
SP-WKA
 
Posts: 48
Joined: Sun Sep 04, 2011 7:56 pm

Re: Boeing 777-300 by SP-WKA

Postby ameya123 » Tue Nov 22, 2011 9:47 am

Sorry bro, but I don't see any knob above the information screen.
ameya123
 
Posts: 43
Joined: Wed Sep 14, 2011 1:45 pm

Re: Boeing 777-300 by SP-WKA

Postby SP-WKA » Tue Nov 22, 2011 8:28 pm

there are 4 knobs, left from ap panel, you need the lower left one.
SP-WKA
 
Posts: 48
Joined: Sun Sep 04, 2011 7:56 pm

Re: Boeing 777-300 by SP-WKA

Postby ameya123 » Wed Nov 23, 2011 5:14 am

okay ill try and let you know. thanks
ameya123
 
Posts: 43
Joined: Wed Sep 14, 2011 1:45 pm

Re: Boeing 777-300 by SP-WKA

Postby SP-WKA » Thu Nov 24, 2011 5:02 am

updated!
SP-WKA
 
Posts: 48
Joined: Sun Sep 04, 2011 7:56 pm

Re: Boeing 777-300 by SP-WKA

Postby ameya123 » Thu Nov 24, 2011 10:03 am

SP-WKA wrote in Thu Nov 24, 2011 5:02 am:updated!


Hi Bro

The updates that you make, are they for both 300 and ER or for a specific one.

Thanks

A
ameya123
 
Posts: 43
Joined: Wed Sep 14, 2011 1:45 pm

Re: Boeing 777-300 by SP-WKA

Postby SP-WKA » Fri Nov 25, 2011 6:32 am

ameya123 wrote in Thu Nov 24, 2011 10:03 am:(...) updates that you make, are they for both 300 and ER or for a specific one.


both :-)
SP-WKA
 
Posts: 48
Joined: Sun Sep 04, 2011 7:56 pm

Re: Boeing 777-300 by SP-WKA

Postby antoniogonzalez » Wed Nov 30, 2011 3:39 pm

For me, inserting this code in the autopilot (777-autopilot.xml), in the Lateral Modes, after the HDG HOLD and before the LNAV1, seems to solve the problem of the LNAV:

Code: Select all
 <filter>
    <name>LNAV waypoint error computer/normalizer</name>
    <debug>false</debug>
    <enable>
      <prop>instrumentation/afds/ap-modes/roll-mode</prop>
      <value>LNAV</value>
    </enable>
    <type>gain</type>
    <input>
      <prop>/autopilot/route-manager/wp/bearing-deg</prop>
      <offset>
        <property>/orientation/heading-magnetic-deg</property>
        <scale>-1.0</scale>
      </offset>
    </input>
    <output>autopilot/internal/waypoint-bearing-error-deg</output>
    <period>
      <min>-180</min>
      <max>180</max>
    </period>
    <gain>1.0</gain>
  </filter>


One thing more:

You have also to change one line of the NAV1 in the Lateral Modes of the autopilot.

Instead of:
Code: Select all
 <prop>/autopilot/internal/nav1-heading-error-deg</prop>


Write:

Code: Select all
 <prop>/autopilot/internal/waypoint-bearing-error-deg</prop>
Last edited by antoniogonzalez on Wed Nov 30, 2011 10:25 pm, edited 1 time in total.
antoniogonzalez
 
Posts: 22
Joined: Sat May 07, 2011 2:40 pm

Re: Boeing 777-300 by SP-WKA

Postby SP-WKA » Wed Nov 30, 2011 5:28 pm

i will test this! danke

edit: rgr that captain :-)
SP-WKA
 
Posts: 48
Joined: Sun Sep 04, 2011 7:56 pm

Re: Boeing 777-300 by SP-WKA

Postby antoniogonzalez » Thu Dec 01, 2011 11:52 am

The manual spoilers (Ctrl-B) do not work.

I think that there is a solution. You have to make a change in both files:

- 777-300ER.set.xml
- 777-300.set.xml

Instead of:

Code: Select all
</key>
  <key n="2">
  <name>Ctrl-B</name>
  <desc>FUBAR 3</desc>
  <binding>
   <command>property-toggle</command>
   <property>/foo/bar</property>
  </binding>
 </key>


Write:

Code: Select all
</key>
  <key n="2">
  <name>Ctrl-B</name>
  <desc>FUBAR 3</desc>
  <binding>
   <command>property-toggle</command>
   <property>/controls/flight/speedbrake</property>
  </binding>
 </key>
antoniogonzalez
 
Posts: 22
Joined: Sat May 07, 2011 2:40 pm

Re: Boeing 777-300 by SP-WKA

Postby SP-WKA » Fri Dec 02, 2011 6:20 am

antoniogonzalez wrote in Thu Dec 01, 2011 11:52 am:The manual spoilers (Ctrl-B) do not work.


"this is a feature, not a bug"
SP-WKA
 
Posts: 48
Joined: Sun Sep 04, 2011 7:56 pm

Re: Boeing 777-300 by SP-WKA

Postby Figaro » Fri Dec 02, 2011 6:51 am

It IS a rather annoying feature. :|

Cheers,
User avatar
Figaro
 
Posts: 1312
Joined: Fri Feb 25, 2011 10:23 pm
Callsign: 4L-FIG
OS: Ubuntu/Win10

Re: Boeing 777-300 by SP-WKA

Postby antoniogonzalez » Fri Dec 02, 2011 8:19 am

SP-WKA wrote: "this is a feature, not a bug"


I see. Nevertheless, the Help menu says you can use Ctrl-B... Would't be useful to have it?
antoniogonzalez
 
Posts: 22
Joined: Sat May 07, 2011 2:40 pm

Re: Boeing 777-300 by SP-WKA

Postby antoniogonzalez » Fri Dec 02, 2011 9:07 am

One more little thing. When in 777-300ER, you can only see the liveries of 777-300.

There reason is that the 777-300ER is using the system.nas of the 777-300. To change this go to

777-300ER-set.xml, line 880.

Instead of:

Code: Select all
<file>Aircraft/777-300/Nasal/systems.nas</file>


Write this:

Code: Select all
<file>Aircraft/777-300/Nasal/systems-ER.nas</file>


Sorry for so many posts! I like this plane very much!
antoniogonzalez
 
Posts: 22
Joined: Sat May 07, 2011 2:40 pm

PreviousNext

Return to Aircraft

Who is online

Users browsing this forum: No registered users and 4 guests