Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Fuel Imbalance Advisory to EICAS #490

Open
raypurge opened this issue Mar 28, 2023 · 1 comment
Open

Adding Fuel Imbalance Advisory to EICAS #490

raypurge opened this issue Mar 28, 2023 · 1 comment
Labels
enhancement New feature or request

Comments

@raypurge
Copy link

Is your feature request related to a problem? If so, please describe.

Describe the feature you want implemented.
Adding Fuel imbalance Warning, if tank quantity is more than 450 gallon(1360kg)difference. I have to take a look again if its a Warning or advisory message.

References
has to be implemented into the panel.xml

	<Annunciation>
		<Type>Advisory</Type>
		<Text>FUEL IMBAL 1-4</Text>
		<Condition>
			<Or> 
			<GreaterEqual>
				<Subtract>
					<Simvar name="FUEL TANK LEFT AUX QUANTITY" unit="gallon"/>
					<Simvar name="FUEL TANK RIGHT AUX QUANTITY" unit="gallon"/>
				</Subtract>
				<Constant>450</Constant>
			</GreaterEqual>
				
			<GreaterEqual>
				<Subtract>
					<Simvar name="FUEL TANK RIGHT AUX QUANTITY" unit="gallon"/>
					<Simvar name="FUEL TANK LEFT AUX QUANTITY" unit="gallon"/>
					</Subtract>
				<Constant>450</Constant>
			</GreaterEqual>
			</Or>	
		</Condition>
	</Annunciation>

Additional context

Your Discord:

@raypurge raypurge added the enhancement New feature or request label Mar 28, 2023
@ninjomcs
Copy link
Contributor

hi, since you already have an implementation, you could make a pull request yourself if you'd like. let us know in discord if you need any assistance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants