From c0ea2a5be3ee92586d9293b7d9d243082caf4493 Mon Sep 17 00:00:00 2001 From: Mehdi Ataei Date: Fri, 18 Oct 2024 18:00:43 -0400 Subject: [PATCH] Changed the exmaple mesh address --- examples/cfd/windtunnel_3d.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cfd/windtunnel_3d.py b/examples/cfd/windtunnel_3d.py index c83e2c9..96c79f7 100644 --- a/examples/cfd/windtunnel_3d.py +++ b/examples/cfd/windtunnel_3d.py @@ -74,8 +74,8 @@ def define_boundary_indices(self): walls = [box["bottom"][i] + box["top"][i] + box["front"][i] + box["back"][i] for i in range(self.velocity_set.d)] walls = np.unique(np.array(walls), axis=-1).tolist() - # Load the mesh - stl_filename = "examples/cfd/stl-files/DrivAer-Notchback.stl" + # Load the mesh (replace with your own mesh) + stl_filename = "../stl-files/DrivAer-Notchback.stl" mesh = trimesh.load_mesh(stl_filename, process=False) mesh_vertices = mesh.vertices