pyflightstream 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyflightstream/__init__.py +27 -0
- pyflightstream/cases/__init__.py +332 -0
- pyflightstream/cases/matrix_legacy.py +337 -0
- pyflightstream/commands/__init__.py +544 -0
- pyflightstream/commands/_meta.yaml +18 -0
- pyflightstream/commands/actuators.yaml +167 -0
- pyflightstream/commands/advanced_settings.yaml +136 -0
- pyflightstream/commands/aeroelastic_coupling.yaml +172 -0
- pyflightstream/commands/boundary_conditions.yaml +153 -0
- pyflightstream/commands/ccs_wing_mesh.yaml +74 -0
- pyflightstream/commands/coordinate_systems.yaml +123 -0
- pyflightstream/commands/file_io.yaml +82 -0
- pyflightstream/commands/mesh_import_export.yaml +72 -0
- pyflightstream/commands/motion_definitions.yaml +185 -0
- pyflightstream/commands/probe_points.yaml +116 -0
- pyflightstream/commands/runtime_settings.yaml +160 -0
- pyflightstream/commands/scenes.yaml +14 -0
- pyflightstream/commands/script_controls.yaml +39 -0
- pyflightstream/commands/simulation_controls.yaml +30 -0
- pyflightstream/commands/solver_analysis.yaml +118 -0
- pyflightstream/commands/solver_export.yaml +138 -0
- pyflightstream/commands/solver_initialization.yaml +95 -0
- pyflightstream/commands/solver_settings.yaml +120 -0
- pyflightstream/commands/streamlines.yaml +63 -0
- pyflightstream/commands/surface_sections.yaml +145 -0
- pyflightstream/commands/sweeper.yaml +115 -0
- pyflightstream/commands/unsteady_solver.yaml +68 -0
- pyflightstream/commands/volume_sections.yaml +148 -0
- pyflightstream/farfield/__init__.py +613 -0
- pyflightstream/files/__init__.py +375 -0
- pyflightstream/fsi/__init__.py +57 -0
- pyflightstream/fsi/beam.py +417 -0
- pyflightstream/fsi/centrifugal.py +418 -0
- pyflightstream/fsi/cli.py +206 -0
- pyflightstream/fsi/config.py +316 -0
- pyflightstream/fsi/driver.py +501 -0
- pyflightstream/fsi/kinematics.py +153 -0
- pyflightstream/fsi/loads.py +740 -0
- pyflightstream/fsi/nodes.py +463 -0
- pyflightstream/fsi/state.py +181 -0
- pyflightstream/post/__init__.py +18 -0
- pyflightstream/post/writers.py +195 -0
- pyflightstream/probes/__init__.py +453 -0
- pyflightstream/probes/geometry.py +281 -0
- pyflightstream/probes/planar.py +477 -0
- pyflightstream/qa/__init__.py +59 -0
- pyflightstream/qa/cli.py +364 -0
- pyflightstream/qa/compat.py +285 -0
- pyflightstream/qa/drift.py +406 -0
- pyflightstream/qa/geometry.py +421 -0
- pyflightstream/qa/physics.py +1744 -0
- pyflightstream/qa/probes.py +1023 -0
- pyflightstream/qa/references/PHY-01.yaml +38 -0
- pyflightstream/qa/references/PHY-02.yaml +28 -0
- pyflightstream/qa/references/PHY-05.yaml +29 -0
- pyflightstream/qa/references/PHY-06.yaml +90 -0
- pyflightstream/qa/references/SMI-01.yaml +28 -0
- pyflightstream/qa/references/SMI-02.yaml +28 -0
- pyflightstream/qa/specs.py +1405 -0
- pyflightstream/reference.py +465 -0
- pyflightstream/results/__init__.py +547 -0
- pyflightstream/run/__init__.py +677 -0
- pyflightstream/script/__init__.py +474 -0
- pyflightstream/script/helpers.py +844 -0
- pyflightstream/versions.py +191 -0
- pyflightstream-0.2.0.dist-info/METADATA +88 -0
- pyflightstream-0.2.0.dist-info/RECORD +71 -0
- pyflightstream-0.2.0.dist-info/WHEEL +5 -0
- pyflightstream-0.2.0.dist-info/entry_points.txt +3 -0
- pyflightstream-0.2.0.dist-info/licenses/LICENSE +21 -0
- pyflightstream-0.2.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
schema: pyflightstream-physics-reference/1
|
|
2
|
+
case: PHY-01
|
|
3
|
+
fs_version_basis: '26.120'
|
|
4
|
+
updated: '2026-07-21'
|
|
5
|
+
reason: 'initial reference: first PHY-01 run on 26.120 build 7012026, all four points converged, slope
|
|
6
|
+
4.83/rad consistent with the AR-8 finite-wing anchor'
|
|
7
|
+
source_report: reports/physics/PHY-26120_2026-07-21.yaml
|
|
8
|
+
metrics:
|
|
9
|
+
CL_a0:
|
|
10
|
+
value: -0.0004
|
|
11
|
+
warn: 0.005
|
|
12
|
+
fail: 0.02
|
|
13
|
+
kind: abs
|
|
14
|
+
CL_a2:
|
|
15
|
+
value: 0.1684
|
|
16
|
+
warn: 0.02
|
|
17
|
+
fail: 0.05
|
|
18
|
+
kind: rel
|
|
19
|
+
CL_a4:
|
|
20
|
+
value: 0.337
|
|
21
|
+
warn: 0.02
|
|
22
|
+
fail: 0.05
|
|
23
|
+
kind: rel
|
|
24
|
+
CL_a6:
|
|
25
|
+
value: 0.505
|
|
26
|
+
warn: 0.02
|
|
27
|
+
fail: 0.05
|
|
28
|
+
kind: rel
|
|
29
|
+
CL_slope_per_rad:
|
|
30
|
+
value: 4.826596466182055
|
|
31
|
+
warn: 0.02
|
|
32
|
+
fail: 0.05
|
|
33
|
+
kind: rel
|
|
34
|
+
CDi_a4:
|
|
35
|
+
value: 0.0049
|
|
36
|
+
warn: 0.05
|
|
37
|
+
fail: 0.15
|
|
38
|
+
kind: rel
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
schema: pyflightstream-physics-reference/1
|
|
2
|
+
case: PHY-02
|
|
3
|
+
fs_version_basis: '26.120'
|
|
4
|
+
updated: '2026-07-21'
|
|
5
|
+
reason: 'initial reference: first PHY-02 run on 26.120 build 7012026; equivalence deltas 0.0015 in CL
|
|
6
|
+
and 0.0 in CDi, consistent with the same-session SET_ANALYSIS_SYMMETRY_LOADS calibration'
|
|
7
|
+
source_report: reports/physics/PHY-26120_2026-07-21_phy02.yaml
|
|
8
|
+
metrics:
|
|
9
|
+
CL_full_a4:
|
|
10
|
+
value: 0.337
|
|
11
|
+
warn: 0.02
|
|
12
|
+
fail: 0.05
|
|
13
|
+
kind: rel
|
|
14
|
+
CL_half_a4:
|
|
15
|
+
value: 0.3385
|
|
16
|
+
warn: 0.02
|
|
17
|
+
fail: 0.05
|
|
18
|
+
kind: rel
|
|
19
|
+
delta_CL_a4:
|
|
20
|
+
value: 0.0015000000000000013
|
|
21
|
+
warn: 0.005
|
|
22
|
+
fail: 0.02
|
|
23
|
+
kind: abs
|
|
24
|
+
delta_CDi_a4:
|
|
25
|
+
value: 0.0
|
|
26
|
+
warn: 0.0005
|
|
27
|
+
fail: 0.002
|
|
28
|
+
kind: abs
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
schema: pyflightstream-physics-reference/1
|
|
2
|
+
case: PHY-05
|
|
3
|
+
fs_version_basis: '26.120'
|
|
4
|
+
updated: '2026-07-21'
|
|
5
|
+
reason: 'initial reference: first PHY-05 run on 26.120 build 7012026; values bit-identical to the generic-blade
|
|
6
|
+
case 9002 baseline (same solve without monitors), confirming the promotion is faithful; bands as declared
|
|
7
|
+
(abs for near-zero CL/CDo, rel 1/3 percent for the thrust CDi and CMy)'
|
|
8
|
+
source_report: reports/physics/PHY-26120_2026-07-21_phy05-phy06-first.yaml
|
|
9
|
+
metrics:
|
|
10
|
+
CL:
|
|
11
|
+
value: -0.0001012
|
|
12
|
+
warn: 0.002
|
|
13
|
+
fail: 0.01
|
|
14
|
+
kind: abs
|
|
15
|
+
CDi:
|
|
16
|
+
value: -0.0451749
|
|
17
|
+
warn: 0.01
|
|
18
|
+
fail: 0.03
|
|
19
|
+
kind: rel
|
|
20
|
+
CDo:
|
|
21
|
+
value: 0.0007011
|
|
22
|
+
warn: 0.0005
|
|
23
|
+
fail: 0.002
|
|
24
|
+
kind: abs
|
|
25
|
+
CMy:
|
|
26
|
+
value: 0.0286429
|
|
27
|
+
warn: 0.01
|
|
28
|
+
fail: 0.03
|
|
29
|
+
kind: rel
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
schema: pyflightstream-physics-reference/1
|
|
2
|
+
case: PHY-06
|
|
3
|
+
fs_version_basis: '26.120'
|
|
4
|
+
updated: '2026-07-21'
|
|
5
|
+
reason: 'metric set redefined to the full polar trend on Geovana''s instruction (evidence: PHY-26120_2026-07-21_phy06-polar-first
|
|
6
|
+
and -banded): per-alpha steady-versus-unsteady deltas of CL, CD, CMy over 0/2/4/6 deg plus both lift
|
|
7
|
+
and pitching-moment slopes; measured deltas grow monotonically to +0.0030 in CL at 6 deg, all inside
|
|
8
|
+
the declared bands, and the steady lift slope 4.8266/rad reproduces PHY-01'
|
|
9
|
+
source_report: reports/physics/PHY-26120_2026-07-21_phy06-polar-first.yaml
|
|
10
|
+
metrics:
|
|
11
|
+
delta_CL_a0:
|
|
12
|
+
value: 0.0004
|
|
13
|
+
warn: 0.005
|
|
14
|
+
fail: 0.02
|
|
15
|
+
kind: abs
|
|
16
|
+
delta_CD_a0:
|
|
17
|
+
value: -0.00010000000000000026
|
|
18
|
+
warn: 0.001
|
|
19
|
+
fail: 0.004
|
|
20
|
+
kind: abs
|
|
21
|
+
delta_CMy_a0:
|
|
22
|
+
value: -0.0001
|
|
23
|
+
warn: 0.005
|
|
24
|
+
fail: 0.02
|
|
25
|
+
kind: abs
|
|
26
|
+
delta_CL_a2:
|
|
27
|
+
value: 0.0012999999999999956
|
|
28
|
+
warn: 0.005
|
|
29
|
+
fail: 0.02
|
|
30
|
+
kind: abs
|
|
31
|
+
delta_CD_a2:
|
|
32
|
+
value: -0.00010000000000000113
|
|
33
|
+
warn: 0.001
|
|
34
|
+
fail: 0.004
|
|
35
|
+
kind: abs
|
|
36
|
+
delta_CMy_a2:
|
|
37
|
+
value: -0.0001999999999999988
|
|
38
|
+
warn: 0.005
|
|
39
|
+
fail: 0.02
|
|
40
|
+
kind: abs
|
|
41
|
+
delta_CL_a4:
|
|
42
|
+
value: 0.0021999999999999797
|
|
43
|
+
warn: 0.005
|
|
44
|
+
fail: 0.02
|
|
45
|
+
kind: abs
|
|
46
|
+
delta_CD_a4:
|
|
47
|
+
value: -0.0003999999999999993
|
|
48
|
+
warn: 0.001
|
|
49
|
+
fail: 0.004
|
|
50
|
+
kind: abs
|
|
51
|
+
delta_CMy_a4:
|
|
52
|
+
value: -0.00019999999999999185
|
|
53
|
+
warn: 0.005
|
|
54
|
+
fail: 0.02
|
|
55
|
+
kind: abs
|
|
56
|
+
delta_CL_a6:
|
|
57
|
+
value: 0.0030000000000000027
|
|
58
|
+
warn: 0.005
|
|
59
|
+
fail: 0.02
|
|
60
|
+
kind: abs
|
|
61
|
+
delta_CD_a6:
|
|
62
|
+
value: -0.0005000000000000004
|
|
63
|
+
warn: 0.001
|
|
64
|
+
fail: 0.004
|
|
65
|
+
kind: abs
|
|
66
|
+
delta_CMy_a6:
|
|
67
|
+
value: -0.00040000000000001146
|
|
68
|
+
warn: 0.005
|
|
69
|
+
fail: 0.02
|
|
70
|
+
kind: abs
|
|
71
|
+
CL_slope_steady_per_rad:
|
|
72
|
+
value: 4.826596466182055
|
|
73
|
+
warn: 0.02
|
|
74
|
+
fail: 0.05
|
|
75
|
+
kind: rel
|
|
76
|
+
CMy_slope_steady_per_rad:
|
|
77
|
+
value: -1.2149570045749105
|
|
78
|
+
warn: 0.02
|
|
79
|
+
fail: 0.05
|
|
80
|
+
kind: rel
|
|
81
|
+
CL_slope_unsteady_per_rad:
|
|
82
|
+
value: 4.851520130270246
|
|
83
|
+
warn: 0.02
|
|
84
|
+
fail: 0.05
|
|
85
|
+
kind: rel
|
|
86
|
+
CMy_slope_unsteady_per_rad:
|
|
87
|
+
value: -1.2175353146529992
|
|
88
|
+
warn: 0.02
|
|
89
|
+
fail: 0.05
|
|
90
|
+
kind: rel
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
schema: pyflightstream-physics-reference/1
|
|
2
|
+
case: SMI-01
|
|
3
|
+
fs_version_basis: '26.120'
|
|
4
|
+
updated: '2026-07-21'
|
|
5
|
+
reason: 'initial reference: first SMI-01 run on 26.120 build 7012026, converged at 25 iterations; absolute
|
|
6
|
+
bands, near-zero body coefficients'
|
|
7
|
+
source_report: reports/physics/PHY-26120_2026-07-21_smi.yaml
|
|
8
|
+
metrics:
|
|
9
|
+
CL:
|
|
10
|
+
value: -0.0174
|
|
11
|
+
warn: 0.005
|
|
12
|
+
fail: 0.02
|
|
13
|
+
kind: abs
|
|
14
|
+
CDi:
|
|
15
|
+
value: 0.003
|
|
16
|
+
warn: 0.002
|
|
17
|
+
fail: 0.01
|
|
18
|
+
kind: abs
|
|
19
|
+
CDo:
|
|
20
|
+
value: 0.1305
|
|
21
|
+
warn: 0.002
|
|
22
|
+
fail: 0.01
|
|
23
|
+
kind: abs
|
|
24
|
+
CMy:
|
|
25
|
+
value: -1.7843
|
|
26
|
+
warn: 0.005
|
|
27
|
+
fail: 0.02
|
|
28
|
+
kind: abs
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
schema: pyflightstream-physics-reference/1
|
|
2
|
+
case: SMI-02
|
|
3
|
+
fs_version_basis: '26.120'
|
|
4
|
+
updated: '2026-07-21'
|
|
5
|
+
reason: 'initial reference: first SMI-02 run on 26.120 build 7012026, converged at 94 iterations; relative
|
|
6
|
+
bands, unit-reference full-configuration coefficients'
|
|
7
|
+
source_report: reports/physics/PHY-26120_2026-07-21_smi.yaml
|
|
8
|
+
metrics:
|
|
9
|
+
CL:
|
|
10
|
+
value: 12.1368
|
|
11
|
+
warn: 0.005
|
|
12
|
+
fail: 0.02
|
|
13
|
+
kind: rel
|
|
14
|
+
CDi:
|
|
15
|
+
value: 0.2244
|
|
16
|
+
warn: 0.005
|
|
17
|
+
fail: 0.02
|
|
18
|
+
kind: rel
|
|
19
|
+
CDo:
|
|
20
|
+
value: 0.4229
|
|
21
|
+
warn: 0.005
|
|
22
|
+
fail: 0.02
|
|
23
|
+
kind: rel
|
|
24
|
+
CMy:
|
|
25
|
+
value: -116.6897
|
|
26
|
+
warn: 0.005
|
|
27
|
+
fail: 0.02
|
|
28
|
+
kind: rel
|