FSDeveloper Community

Go Back   FSDeveloper Community > Microsoft Flight Simulator development > Aircraft Design > Other

Other Use this forum for all aircraft design discussions that do not fit elsewhere

Reply
 
Thread Tools Display Modes
  #1  
Old 26 Feb 2012, 12:58
delivery guy's Avatar
delivery guy delivery guy is offline
  unitedstates
Location: California
Join Date: Jan 2010
Posts: 638
Electrical System

How can I create a update gauge or xml switch that will give the battery
amps with the engines off. i read a post how fsx has no alternate power source after the master battery is toggled off. But i don't care about the battery being off.
I want to sit and use ground gpu to keep the batteries alive....\

please help, on configuring a external gpu.

Last edited by delivery guy; 26 Feb 2012 at 13:04.
Reply With Quote
  #2  
Old 26 Feb 2012, 13:02
delivery guy's Avatar
delivery guy delivery guy is offline
  unitedstates
Location: California
Join Date: Jan 2010
Posts: 638
Another question. With my lights off, avionics off, engines off and hydraulics off. Where am i getting
25 amps of draw from?

heres my elec list:
Code:
avionics_bus       = 0, 5 , 15.0
avionics           = 1, 5 , 18.0
pitot_heat         = 2, 5 , 20.0
marker_beacon      = 0, 10 , 8.0
fuel_pump          = 4, 5 , 17.0
starter1           = 4, 20, 20.0
hydraulic_pump     = 4, 20, 20.0
light_nav          = 0, 2 , 17.0
light_beacon       = 0, 2 , 17.0
light_landing      = 0, 12 , 17.0
light_taxi         = 0, 10 , 17.0
light_strobe       = 0, 5 , 15.0
light_panel        = 0, 2 , 8.0
light_cabin        = 0, 2 , 8.0
light_recognition  = 0, 2 , 8.0
Reply With Quote
  #3  
Old 27 Feb 2012, 11:28
n4gix n4gix is offline
  unitedstates
Location: Hammond, Indiana
Join Date: Sep 2006
Posts: 8,528
Commands to start Ground Power:

Code:
(>K:APU_STARTER) 1 (>K:APU_GENERATOR_SWITCH_SET)
Commands to stop Ground Power:

Code:
0 (>K:APU_GENERATOR_SWITCH_SET) (>K:APU_OFF_SWITCH)
__________________
Bill Leaming
3d Modeler Max/GMax
C & XML Gauge Programmer
Eaglesoft Development Group
http://eaglesoftdg.com

Intel® Core™ i7-3770k 4.2GHz - Crucial 16GB DDR3 - Dual Radeon HD770 1GB DDR5 (Crossfire) - Eco II Watercooling - Win7 64bit
Intel® Core™ i7-2600k 3.4GHz - Crucial 4GB DDR3 - NVIDIA GeForce GTX550Ti 1GB - Win7 64bit
Intel® Core™ i7-860 2.8GHz - Crucial 8GB DDR3 - NVIDIA GeForce GTS240 1GB - Win8 64bit
NOTE: Unless explicitly stated otherwise, everything written by my hand is MY opinion. I do NOT speak for any company, real or imagined...
Reply With Quote
  #4  
Old 27 Feb 2012, 14:20
delivery guy's Avatar
delivery guy delivery guy is offline
  unitedstates
Location: California
Join Date: Jan 2010
Posts: 638
Thanks Bill, i added the Aux code to the Aircraft.cfg, since this is not a jet.
But still fails to start. Yesterday i used all 4 apu variables and events and nothing. By the way today i only have 5 amps draw with everything off.

[Auxiliary Power Unit]
available = 1

I added a custom tool tip to watch the battery and the amps....So when the apu starts the battery will stay at 24.0 volts?

I read this posting you made Bill. I am lost on what it is saying to do, although i do understand it's a few different versions.
http://www.fsdeveloper.com/wiki/inde...action=history

Any ideas?

Last edited by delivery guy; 27 Feb 2012 at 14:37.
Reply With Quote
  #5  
Old 28 Feb 2012, 06:31
delivery guy's Avatar
delivery guy delivery guy is offline
  unitedstates
Location: California
Join Date: Jan 2010
Posts: 638
Solved with simple question

Thank you bill. I replaced my L:var switch with your code and it works, giving me
91.1 amps. Yesterday i tried using your code in an update and left my L:var using just APU_START.


SIMPLE QUESTION.........HERE!

I have another question. This bell's generator is an APU and it runs on fuel? Or is the generator using external power?

I have been using google books on the bell 205 manual. I will read more in this area tonight...

Thanks DG,

Last edited by delivery guy; 28 Feb 2012 at 10:06.
Reply With Quote
  #6  
Old 28 Feb 2012, 13:02
n4gix n4gix is offline
  unitedstates
Location: Hammond, Indiana
Join Date: Sep 2006
Posts: 8,528
The FSX "APU" doesn't actually use any of the a/c's fuel at all. It's as though it's nuclear powered or something...

Note that it will take 5 to 10 seconds after sending the (>K:APU_STARTER) before electrical power will appear.
__________________
Bill Leaming
3d Modeler Max/GMax
C & XML Gauge Programmer
Eaglesoft Development Group
http://eaglesoftdg.com

Intel® Core™ i7-3770k 4.2GHz - Crucial 16GB DDR3 - Dual Radeon HD770 1GB DDR5 (Crossfire) - Eco II Watercooling - Win7 64bit
Intel® Core™ i7-2600k 3.4GHz - Crucial 4GB DDR3 - NVIDIA GeForce GTX550Ti 1GB - Win7 64bit
Intel® Core™ i7-860 2.8GHz - Crucial 8GB DDR3 - NVIDIA GeForce GTS240 1GB - Win8 64bit
NOTE: Unless explicitly stated otherwise, everything written by my hand is MY opinion. I do NOT speak for any company, real or imagined...
Reply With Quote
  #7  
Old 29 Feb 2012, 00:49
delivery guy's Avatar
delivery guy delivery guy is offline
  unitedstates
Location: California
Join Date: Jan 2010
Posts: 638
I added an APU light detecting volts.
But it starts after 1 second and works well.

I figured the APU will be for an Aux Power unit when parked and the generator runs from the fuel or the APU. Not sure! i plan to make a sound for the generator. APU does not need one.
Reply With Quote
  #8  
Old 02 Mar 2012, 12:03
delivery guy's Avatar
delivery guy delivery guy is offline
  unitedstates
Location: California
Join Date: Jan 2010
Posts: 638
Update

Here is what I learned recently.

The Bell 205 has a main generator and a standby gen. Also if the main fails the starter generator can be used as a main gen. They also suggest using a GPU for start up. So I decided to make the APU system work for the standby gen and the GPU. This allows the main generator to use failures in the game. Just switch over to the standby generator.

Any tips would be great!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Common Interface to MSFS and X-Plane: Simulator Communication System philipp General chat 3 08 Jan 2012 22:03
XML Electrical System TooLowGear Gauges 2 04 Oct 2009 15:22
Airshow System Cyberconian Tools programming 1 25 Jul 2008 07:06
Visual Cue System for Shipboard Landing dstreet General 4 09 May 2008 19:03
Managed client samples crash, won't debug Ben74 SimConnect 5 19 Feb 2008 20:35


All times are GMT -4. The time now is 21:04.

Kirsch designed by Andrew & Austin


Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.