• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

FSXA Custom EGT

Messages
75
Country
unitedstates
This code borrows heavily from Paul Varne, I am just modifying it. The only thing that seems to work in this gauge is the:

Code:
	(A:GENERAL ENG FUEL VALVE:1, bool) 
	(A:Radio height, feet)  101 > 
	||
	if{	(A:General Eng1 exhaust gas temperature, celsius) (L:CIT1,number) + (>L:EGT1,number) }

part. Maybe I have been looking at this too hard but I can not figure out why it will only do CIT + Gen Eng1 EGT. The gauge becomes blank when that part is removed. :confused: Thank you for any help in advance!

Code:
<Update Frequency="20" >
	(A:GENERAL ENG FUEL VALVE:1, bool) 
	(A:Radio height, feet)  101 &lt; 
	||
	if{	(A:General eng1 exhaust gas temperature, celsius)(&gt;L:EGT1,number) } 

	(A:GENERAL ENG FUEL VALVE:1, bool) 
	(A:Radio height, feet)  101 &gt; 
	||
	if{	(A:General Eng1 exhaust gas temperature, celsius) (L:CIT1,number) + (&gt;L:EGT1,number) }

	(A:Radio height, feet)  100 &gt; 
	if{
	 (A:GENERAL ENG FUEL VALVE:1, bool) !
	 if{ (L:EGT1,number) 0.5 + (&gt;L:EGT1,number) }
	 (A:Turb eng1 N2, percent) 40 &lt;
	 if{ (L:EGT1,number) 1.0 - (&gt;L:EGT1,number) }

	 (A:GENERAL ENG FUEL VALVE:1, bool) !
	 if{ (L:EGT1,number) 0.5 + (&gt;L:EGT1,number) }
	 (A:Turb Eng1 N2, percent) 40 &lt;
	 if{ (L:EGT1,number) 1.0 - (&gt;L:EGT1,number) }
	}

		<!-- Cruise EGT modulation (lower div = reduced temp): -->
  (A:AIRSPEED MACH,mach) 1.60 &gt; 
	if{
	(L:EGT1,number) 800 &gt;
  (A:GENERAL ENG FAILED:1, bool) !
	&amp;&amp;
	if{ (L:EGT1,number) 790 - 1.22 div (&gt;L:DERICH1,number) }

	(L:EGT1,number) 800 &gt;
	(A:GENERAL ENG FAILED:1, bool) !
	&amp;&amp;
	if{ (L:EGT1,number) 790 - 1.22 div (&gt;L:DERICH1,number) }

  }

		<!-- Shut-Down compensation: -->
		<!-- EGT Eng1:-->
	(L:CIT1,number) (A:TOTAL AIR TEMPERATURE, celsius) &lt;=
	(A:AIRSPEED INDICATED,knots) 100 &lt;
	&amp;&amp;
	if{ 
		(L:CIT1,number) (&gt;L:DERICH1,number)
	  }
		<!-- EGT Eng1: -->
	(L:CIT1,number) (A:TOTAL AIR TEMPERATURE, celsius) &lt;=
	(A:AIRSPEED INDICATED,knots) 100 &lt;
	&amp;&amp;
	if{ 
		(L:CIT1,number) (&gt;L:DERICH1,number)
	  }

		<!-- Derich Power Reduction, Disables AT, sets throttle to 85% when EGT above 860: -->
   (A:Circuit general panel on, bool)
	 (A:AIRSPEED INDICATED,knots) 100 &gt;
	 (L:derich_enable,bool) 1 == 
	 &amp;&amp; &amp;&amp; 
	if{
    (L:EGT1,number) (L:DERICH1,number) - 860 &gt;=
	  if{
	    (A:AUTOPILOT THROTTLE ARM,bool)
	 	 if{ (&gt;K:AUTO_THROTTLE_ARM) }
	    (A:GENERAL ENG THROTTLE LEVER POSITION:1, Percent) 85.0 &gt;
	    if{ 13925.6  (&gt;K:THROTTLE1_SET)  }
    }

		 (L:EGT1,number) (L:DERICH1,number) - 860 &gt;=
	  if{
	    (A:AUTOPILOT THROTTLE ARM,bool)
	 	 if{ (&gt;K:AUTO_THROTTLE_ARM) }
	    (A:GENERAL ENG THROTTLE LEVER POSITION:1, Percent) 85.0 &gt;
	    if{ 13925.6  (&gt;K:THROTTLE2_SET)  }
    }
	}
</Update>
 
Back
Top