747SP

Everything in connection with developing aircraft for FlightGear
Octal450
Posts: 2185
Joined: Sun Oct 18, 2015 2:47 am

Re: 747SP

Postby Octal450 » Thu Mar 10, 2016 7:34 pm

Update: The autopilot is now somewhat working! You can fly the plane from point A to point B now!

Pushed to GIT!

Martien: The undercarridge wheels that rotate turn the wrong way, and the FDM has some funny support in this!

User avatar
Martien van der P.
Posts: 144
Joined: Thu Sep 17, 2015 6:33 pm
Location: The Netherlands

Re: 747SP

Postby Martien van der P. » Fri Mar 11, 2016 12:50 pm

it0uchpods, that's quite easy to fix, replace these parts:

Code: Select all

<animation>
 <type>rotate</type>
 <condition>
  <less-than>
   <property>position/altitude-agl-ft</property>
   <!-- weight sensor -->
   <value>30.0</value>
  </less-than>
 </condition>
 <object-name>GearBodyLeftWheels</object-name>
 <property>gear/gear[2]/steering-norm</property>
 <factor>-13</factor>
 <center>
  <x-m>5.2655</x-m>
  <y-m>-1.5</y-m>
  <z-m>-2.48</z-m>
 </center>
 <axis>
  <x>0</x>
  <y>0</y>
  <z>1</z>
 </axis>
</animation>

Code: Select all

<animation>
 <type>rotate</type>
 <condition>
  <less-than>
   <property>position/altitude-agl-ft</property>
   <!-- weight sensor -->
   <value>30.0</value>
  </less-than>
 </condition>
 <object-name>GearBodyRightWheels</object-name>
 <property>gear/gear[3]/steering-norm</property>
 <factor>-13</factor>
 <center>
  <x-m>5.2655</x-m>
  <y-m>1.5</y-m>
  <z-m>-2.48</z-m>
 </center>
 <axis>
  <x>0</x>
  <y>0</y>
  <z>1</z>
 </axis>
</animation>

by these (actually only the z axis needs to be changed from 1 to -1):

Code: Select all

<animation>
 <type>rotate</type>
 <condition>
  <less-than>
   <property>position/altitude-agl-ft</property>
   <!-- weight sensor -->
   <value>30.0</value>
  </less-than>
 </condition>
 <object-name>GearBodyLeftWheels</object-name>
 <property>gear/gear[2]/steering-norm</property>
 <factor>-13</factor>
 <center>
  <x-m>5.2655</x-m>
  <y-m>-1.5</y-m>
  <z-m>-2.48</z-m>
 </center>
 <axis>
  <x>0</x>
  <y>0</y>
  <z>-1</z>
 </axis>
</animation>

Code: Select all

<animation>
 <type>rotate</type>
 <condition>
  <less-than>
   <property>position/altitude-agl-ft</property>
   <!-- weight sensor -->
   <value>30.0</value>
  </less-than>
 </condition>
 <object-name>GearBodyRightWheels</object-name>
 <property>gear/gear[3]/steering-norm</property>
 <factor>-13</factor>
 <center>
  <x-m>5.2655</x-m>
  <y-m>1.5</y-m>
  <z-m>-2.48</z-m>
 </center>
 <axis>
  <x>0</x>
  <y>0</y>
  <z>-1</z>
 </axis>
</animation>

Btw: Could you still make a screenshot from the wing connection, so I could solve the problem?

Octal450
Posts: 2185
Joined: Sun Oct 18, 2015 2:47 am

Re: 747SP

Postby Octal450 » Fri Mar 11, 2016 12:57 pm

Martien van der P. wrote:it0uchpods, that's quite easy to fix, replace these parts:

Code: Select all

<animation>
 <type>rotate</type>
 <condition>
  <less-than>
   <property>position/altitude-agl-ft</property>
   <!-- weight sensor -->
   <value>30.0</value>
  </less-than>
 </condition>
 <object-name>GearBodyLeftWheels</object-name>
 <property>gear/gear[2]/steering-norm</property>
 <factor>-13</factor>
 <center>
  <x-m>5.2655</x-m>
  <y-m>-1.5</y-m>
  <z-m>-2.48</z-m>
 </center>
 <axis>
  <x>0</x>
  <y>0</y>
  <z>1</z>
 </axis>
</animation>

Code: Select all

<animation>
 <type>rotate</type>
 <condition>
  <less-than>
   <property>position/altitude-agl-ft</property>
   <!-- weight sensor -->
   <value>30.0</value>
  </less-than>
 </condition>
 <object-name>GearBodyRightWheels</object-name>
 <property>gear/gear[3]/steering-norm</property>
 <factor>-13</factor>
 <center>
  <x-m>5.2655</x-m>
  <y-m>1.5</y-m>
  <z-m>-2.48</z-m>
 </center>
 <axis>
  <x>0</x>
  <y>0</y>
  <z>1</z>
 </axis>
</animation>

by these (actually only the z axis needs to be changed from 1 to -1):

Code: Select all

<animation>
 <type>rotate</type>
 <condition>
  <less-than>
   <property>position/altitude-agl-ft</property>
   <!-- weight sensor -->
   <value>30.0</value>
  </less-than>
 </condition>
 <object-name>GearBodyLeftWheels</object-name>
 <property>gear/gear[2]/steering-norm</property>
 <factor>-13</factor>
 <center>
  <x-m>5.2655</x-m>
  <y-m>-1.5</y-m>
  <z-m>-2.48</z-m>
 </center>
 <axis>
  <x>0</x>
  <y>0</y>
  <z>-1</z>
 </axis>
</animation>

Code: Select all

<animation>
 <type>rotate</type>
 <condition>
  <less-than>
   <property>position/altitude-agl-ft</property>
   <!-- weight sensor -->
   <value>30.0</value>
  </less-than>
 </condition>
 <object-name>GearBodyRightWheels</object-name>
 <property>gear/gear[3]/steering-norm</property>
 <factor>-13</factor>
 <center>
  <x-m>5.2655</x-m>
  <y-m>1.5</y-m>
  <z-m>-2.48</z-m>
 </center>
 <axis>
  <x>0</x>
  <y>0</y>
  <z>-1</z>
 </axis>
</animation>

Btw: Could you still make a screenshot from the wing connection, so I could solve the problem?


Oh I thought that was in the model (sometimes I'm an idiot)

I will grab the screenshot as soon as possible.

Thanks!

Octal450
Posts: 2185
Joined: Sun Oct 18, 2015 2:47 am

Re: 747SP

Postby Octal450 » Fri Mar 11, 2016 3:54 pm

Attention: Do to the FDM being switched over to YASIM, there is a chance that the aircraft will be rebuilt. The cockpit, model, and their related files will be transferred, as to not lose any work done. As far as I am aware the only changes are:

3D Model and its XML files
-set files
Cockpit and its related files
autopilot
Liveries and UVmap

Please advise if anything changed, as I may redo most of the aircraft.

At the current time, there are 5 models available:

747SP JT9D - Analog style cockpit with JT9D engines, but with EHSI and LNAV capable autopilot.
747SP RB211 - Analog style cockpit with RB211 engines, but with EHSI and LNAV capable autopilot.
747SP JT9D EFIS - Upgrade avionics version, with JT9D Engines. Cockpit loosely based off of Honeywell VIA 2000 Avionics.
747SP RB211 EFIS - Upgrade avionics version, with RB211 Engines. Cockpit loosely based off of Honeywell VIA 2000 Avionics.
747SP SOFIA - Nasa SOFIA aircraft, EFIS cockpit loosely based off of Honeywell VIA 2000 Avionics.

Octal450
Posts: 2185
Joined: Sun Oct 18, 2015 2:47 am

Re: 747SP

Postby Octal450 » Sat Mar 12, 2016 5:11 pm

From it0uchpods Hanger: 747SP Revision 0.04 SNAPSHOT A:
Autopilot panel installed and almost fully working: All models.

Fully working new features:
Further EFIS cockpit development
Glareshield MCP:
    ALT HOLD button (Switches ALT FLCH ON or OFF)
    VS HOLD button (Switches VS ON or OFF)
    HDG HOLD button (Switches heading select/hold ON or OFF)
    SPD button (Switches Speed With Throttle on)
    AT OFF button (Switches Autothrottle Off)
    HDG knob (Adjust selected heading)
    VS wheel (Adjust Vertical Speed)
    ALT knob (Adjust FLCH altitude)
    SPD knob (Adjust autothrottle speed)

Known issues:
Autopilot VS Display INOP
Autopilot VS Active LED INOP
Autopilot ILS flying INOP

Image
Last edited by Octal450 on Tue Mar 15, 2016 4:18 pm, edited 1 time in total.

Octal450
Posts: 2185
Joined: Sun Oct 18, 2015 2:47 am

Re: 747SP

Postby Octal450 » Tue Mar 15, 2016 4:15 pm

Development by me is halted as of now, sorry.

Read:

http://www.thejabberwocky.net/viewtopic.php?f=40&p=5586#p5586

User avatar
Martien van der P.
Posts: 144
Joined: Thu Sep 17, 2015 6:33 pm
Location: The Netherlands

Re: 747SP

Postby Martien van der P. » Wed Mar 16, 2016 9:13 pm

Maybe I could continue the work on the 747SP over about two weeks, again bussy times for me.

Octal450
Posts: 2185
Joined: Sun Oct 18, 2015 2:47 am

Re: 747SP

Postby Octal450 » Thu Mar 17, 2016 3:35 pm

Martien van der P. wrote:Maybe I could continue the work on the 747SP over about two weeks, again bussy times for me.


Yes go ahead. Until I get my personal life sorted I will not be able to develop to much. You should have push access to my repo, if not, I can always push for you.

Octal450
Posts: 2185
Joined: Sun Oct 18, 2015 2:47 am

Re: 747SP

Postby Octal450 » Fri Jul 29, 2016 11:03 pm

THIS PLANE WILL BE REWORKED 100%!

Based off 747-8i, I modify the FDM, and change the model, cockpit and so on to our model. The 747-200 is just to underdeveloped for me. They do alot of things I hate!


Return to “Aircraft Development”

Who is online

Users browsing this forum: No registered users and 65 guests