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

fix: Update takeoff calculator command to highlight new ongoing development #496

Merged
merged 7 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

Update <small>_ July 2024</small>

- fix: update takeoff calculator and flex temp command to highlight new improvements (01/07/2024)

Update <small>_ June 2024</small>

- fix: econnreset description (08/06/2024)
Expand Down
8 changes: 6 additions & 2 deletions src/commands/aircraft/flex-temp.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import { MessageCommandDefinition } from '../../lib/command';
import { CommandCategory } from '../../constants';
import { makeEmbed } from '../../lib/embed';
import { makeEmbed, makeLines } from '../../lib/embed';

const flexEmbed = makeEmbed({
title: 'FlyByWire A32NX | Flex Temp',
description: 'A320neo takeoff performance data is not readily available. To set your Flex Temp in the simulator please see the [Flex Temp Section](https://docs.flybywiresim.com/pilots-corner/beginner-guide/preparing-mcdu/#flex-temp) in our MCDU guide.',
description: makeLines([
'The Flex Temp can be calculated in the **Development** version using the Takeoff Performance Calculator in the EFB. Check out the [Documentation](https://docs.flybywiresim.com/flypad-performance/) for more information.',
'',
'For the **Stable** version, see the [Flex Temp Section](https://docs.flybywiresim.com/pilots-corner/beginner-guide/preparing-mcdu/#flex-temp) in our MCDU guide.',
]),
});

export const flexTemp: MessageCommandDefinition = {
Expand Down
10 changes: 6 additions & 4 deletions src/commands/aircraft/takeoffPerf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { CommandCategory } from '../../constants';
import { makeEmbed, makeLines } from '../../lib/embed';

const takeoffPerfEmbed = makeEmbed({
title: 'FlyByWire A32NX | Where is the takeoff calculator?',
description: makeLines(['Currently, Airbus does not publicly release takeoff performance data for the A320neo, which means it is difficult to create an accurate takeoff calculator.',
title: 'FlyByWire A32NX | Takeoff Performance Calculator',
description: makeLines([
'A Takeoff Performance Calculator is available on the **Development** version of the A32NX. For more information, check out the [Takeoff Performance Calculator documentation](https://docs.flybywiresim.com/flypad-performance/).',
'',
'While there are many online calculators available, these often use A320ceo data, and are not accurate.',
'For the **Stable** version, see the [V-Speeds Section](https://docs.flybywiresim.com/pilots-corner/beginner-guide/preparing-mcdu/#v-speeds) in our MCDU guide.',
alepouna marked this conversation as resolved.
Show resolved Hide resolved
'',
'This unfortunately means that we cannot provide a reliable and accurate takeoff performance calculator at this time.']),
'**Note:** The functionality where the LSK next to the V1, VR and V2 speeds can be used to automatically calculate them in the MCDU PERF page has been removed in the Development version. Use the new Takeoff Performance Calculator instead.',
]),
});

export const takeoffPerf: MessageCommandDefinition = {
Expand Down
Loading