Beyond the core structural field tetrad , the nodal equation gives rise to transport fields and derived invariants that complete the multi-scale characterisation of TNFR network state.
Status: CANONICAL — All fields promoted November 2025 after multi-topology validation.
Two flux fields complement the core tetrad by adding directed transport dynamics.
| Property | Value |
|---|---|
| Physics | Geometric phase confinement drives directed transport |
| Sign convention | Positive = net inward flow; negative = net outward flow; zero = equilibrium |
| Promotion evidence | 48 samples across WS, BA, Grid topologies; anticorrelation to (see §2.2); 100% sign consistency |
| Canonical status | Promoted November 12, 2025 |
| Property | Value |
|---|---|
| Physics | Potential-driven reorganisation transport |
| Sign convention | Positive = net inward reorganisation pressure; negative = net outward |
| Canonical status | Promoted November 12, 2025 |
Additional fields under investigation (not yet canonical):
| Field | Definition | Status |
|---|---|---|
| Phase strain | Second-order phase gradient tensor | Research |
| Phase vorticity | Curl analogue of phase field | Research |
| Reorganisation strain | Second-order NFR gradient | Research |
Implementation: src/tnfr/physics/extended.py — compute_phase_current(), compute_dnfr_flux().
The complex geometric field unifies curvature and transport into a single quantity:
| Property | Expression |
|---|---|
| Magnitude | $ |
| Phase |
Systematic validation reveals near-perfect anticorrelation between the real and imaginary components:
This anticorrelation is a structural consequence: increasing phase curvature (confinement) suppresses phase current (transport) and vice versa.
unifies two complementary aspects of the geometric sector:
The unified field enables gauge structure (§ GAUGE_SYMMETRY_AND_UNIFICATION.md).
Implementation: src/tnfr/physics/unified.py — compute_complex_geometric_field().
Seven derived fields emerge from the 6D field space .
Detects structural handedness. Nonzero chirality signals broken parity in the network — the field configuration has a preferred rotational direction.
Order parameter for phase transitions. indicates balanced sectors; large signals structural asymmetry between geometric and transport fields.
Multi-scale connector that measures how strongly the global potential field couples to the local geometric-transport intensity .
Total structural energy per node. This is a gauge-invariant scalar (see GAUGE_SYMMETRY_AND_UNIFICATION.md §1.2).
Mixed-sector coupling density. Connects potential, geometric, and transport contributions through cross-terms.
Conserved topological quantity under grammar-compliant evolution. Forms a U(1) doublet whose norm is gauge-invariant.
Implementation: src/tnfr/physics/unified.py — compute_chirality(), compute_symmetry_breaking(), compute_coherence_coupling(), compute_energy_density(), compute_action_density(), compute_topological_charge().
The Lyapunov energy functional decomposes into kinetic and potential sectors:
where:
Per-node Hamiltonian density: .
| Sector | Fields | Conjugate pair | Physical role |
|---|---|---|---|
| Geometric | , | via | Confinement vs transport |
| Potential | , |
The phase gradient mediates between sectors, appearing in the potential energy but driving transport through its gradient.
Element-specific structural signatures are constructed from the field tetrad and extended fields:
| Threshold | Value | Derivation |
|---|---|---|
| $ | \nabla\phi | $ bound |
| canonical | 90% of wrap-angle maximum | |
| Permissive curvature (Au) | 95% of the π phase-wrap (operational margin) |
Implementation: src/tnfr/physics/signatures.py — compute_element_signature(), spectral coherence metrics.
Core Tetrad (CANONICAL) Extended Transport (CANONICAL)
├── Φ_s (structural potential) ├── J_φ (phase current)
├── |∇φ| (phase gradient) └── J_ΔNFR (ΔNFR flux)
├── K_φ (phase curvature)
└── ξ_C (coherence length)
↓
Complex Unification
Ψ = K_φ + i·J_φ
↓
Derived Invariants (CANONICAL)
├── χ (chirality)
├── S (symmetry breaking)
├── C (coherence coupling)
├── E (energy density)
├── A (action density)
└── Q (topological charge)Causal chain: The hierarchy above is diagnostic, not dynamical. The experimentally confirmed causal chain is: Operator → (ν_f, ΔNFR) → dEPI/dt → Tetrad → (ℰ, Q). All fields and invariants are uniquely determined by the nodal equation state; they do not feed back into the dynamics. See STRUCTURAL_OPERATORS.md §17.5 and example 39.
| Module | Content |
|---|---|
src/tnfr/physics/extended.py | , computation |
src/tnfr/physics/unified.py | , , , , , , |
src/tnfr/physics/signatures.py | Element signatures, spectral coherence |
src/tnfr/physics/telemetry.py | Optimised computation pipeline |
Tests: tests/test_extended_fields.py, tests/test_unified_fields.py
from tnfr.sdk import TNFR
net = TNFR.create(20).ring().evolve(5)
invariants = net.tensor_invariants() # energy_density, topological_charge
emergent = net.emergent_fields() # chirality, symmetry_breaking, coherence_coupling| Example | Concept from this document |
|---|
| 33_complex_field_unification.py | Ψ = K_φ + i·J_φ anticorrelation, emergent fields χ/𝒮/𝒞, energy decomposition | | unified_fields_showcase.py | Ψ = K_φ + i·J_φ, emergent fields χ/𝒮/𝒰, tensor invariants |
src/tnfr/physics/fields.py — compute_tensor_invariants(), compute_emergent_fields(), compute_complex_geometric_field_arrays()| Stability vs reorganisation |