Skip to content

Commit

Permalink
Changed the exmaple mesh address
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdiataei committed Oct 18, 2024
1 parent 3a19a42 commit c0ea2a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/cfd/windtunnel_3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c0ea2a5

Please sign in to comment.