Fix PDF export from VSCode

This commit is contained in:
Kilian Hofmann 2024-05-06 16:40:17 +02:00
parent dff44f936d
commit eaa19d9e9d
5 changed files with 19121 additions and 20065 deletions

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@ Second column is FF per engine in kg/hr
Third column is IAS
- If single value, apply to all weights
- If multiple values, apply to respective weights (delimited with `,`)
-
Fourth column is MACH
- If single value, apply to all weights
- If multiple values, apply to respective weights (delimited with `,`)
@ -28,7 +28,7 @@ First index is weight (equates to the lines in the file)
Second index is CI (equates to the columns in a line)
- Must be in range $[0, 999]$
# Format of raw curves
# Format for raw curve tables
2d matrix of curve parameters
Columns delimited with `;` \
@ -47,3 +47,15 @@ $$
Extract parameters $a,b,c$ from the table \
$x$ is the CI and must be in range $[0,999]$ \
$f(x)$ is the mach number for the given altitude, weight, CI, and MMO
# Conversion of weight to index
$$f(x) = \frac{x - 140}{10}$$
$x$ is weight (see range restrictions where applicable)\
$f(x)$ is the resulting index for the LUTs
# Conversion of altitude to index
$$f(x) = \frac{x - 250}{20}$$
$x$ is altitude (see range restrictions where applicable)\
$f(x)$ is the resulting index for the LUTs

File diff suppressed because one or more lines are too long

View File

@ -9473,7 +9473,7 @@
},
{
"cell_type": "code",
"execution_count": 16,
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
@ -9529,7 +9529,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
@ -9544,8 +9544,15 @@
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.9"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 2
"nbformat_minor": 4
}

Binary file not shown.