profile_trailing_edge_gap — PROFILE measure op

Data kinds: pairsmeasurement

Call: import fullseye as fs; fs.ledger.profile_trailing_edge_gap(contour, n=201) (to call the implementation directly, import profileops; profileops.profile_trailing_edge_gap(contour, n=201); from the registry, opsprofile.get("profile_trailing_edge_gap"))

Usage

> This operator's description has not been translated yet. The original text follows as it is.

後縁の開き(翼弦比)。上面と下面の後縁端の距離。

NACA 4 桁の既定係数(-0.1015)は後縁をわずかに開くので、0 にならないのが

正しい。閉じる係数(-0.1036)なら 0 に近づく。

手順: `profile_sides(contour, n)(弦長 1 に正規化し、弦を n` 等分した各

位置で上面・下面を線形補間)を取り、**`x = 1` 側から見て上下両方が取れた

最初の位置**の `upper - lower` を返す。単位は弦長比(無次元)。

• `contour: (N, 2)` の (x, y)、8 点以上、有限、閉じた断面であること

(端点間の隙間が全体の 20 % を超えると「閉じていない」として `ValueError`)。

• `n`: 弦の分割数、5 以上(既定 201)。粗いと後縁から手前の位置で測ることに

なり、テーパした後縁では実際の隙間より大きく出る。細かいほど後縁に寄る。

• 返り値: float(弦長比)。実測(`n=201): profile_synth_naca4("2412")` で

0.0039、`closed_te=True` でも 0.0015 ―― 閉じた後縁でも 0 にならないのは、

上下両方が取れる最後の位置が後縁のわずかに手前で、そこにはまだ厚みが

あるため。符号は上面の `y` が下面より大きい限り正。

• 失敗: `ValueError`(形、閉じていない、上下が取れる位置が 1 つも無い、

上下面が一致して厚み 0)。

`profile_thickness` の末尾の値と同じ量を「後縁の 1 点だけ」で返すもの。

`profile_synth_naca4(closed_te=True)` で作った真値と比べれば検算になる。

Detailed usage guide

profile_metrology family guide

References (sample data, literature)

• Sample-data catalog (download URLs / licences) — 2-D uses skimage.data (BSD/public domain) plus synthetic images; 3-D lists download URLs for real data sources (Stanford, PDS, …).

• Operator provenance and references — the sources of the research/methods this op family came from.

• The canonical algorithm (author, year) and its uses are named in the family usage guide above.

Runnable examples (verified samples that actually call this op)

profile_shape_inspectionpy -3.11 examples/profile_shape_inspection.py

Ops the type connects to (they accept measurement as input)

Same category (measure)

profile_sides · profile_thickness · profile_camber · profile_leading_edge_radius


*Provenance: profileops.py — PROFILE operator registry. This per-op note is generated by tools/opdocs.py md (do not hand-edit).*

© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.