From c428149c28e402896405bea7418d1f33278734f2 Mon Sep 17 00:00:00 2001
From: Paul Dechamps <paul.dechamps@uliege.be>
Date: Thu, 27 Feb 2025 18:37:27 +0100
Subject: [PATCH] (feat) Sections now compute the coordinates at the edge of
 the boundary layer

---
 blast/src/blSection.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/blast/src/blSection.cpp b/blast/src/blSection.cpp
index e06ae5e..bcae644 100644
--- a/blast/src/blSection.cpp
+++ b/blast/src/blSection.cpp
@@ -60,6 +60,7 @@ void Section::computeLocalCoordinates()
             auto &nod2 = bl->nodes[ielm];
             double dx = std::sqrt((nod1->pos[0] - nod2->pos[0]) * (nod1->pos[0] - nod2->pos[0]) + (nod1->pos[1] - nod2->pos[1]) * (nod1->pos[1] - nod2->pos[1]));
             nod1->xi = nod2->xi + dx;
+            nod1->xiExt = nod1->xi;
         }
         // Compute the x/c coordinate.
         for (auto &inod : bl->nodes)
-- 
GitLab