How to export a 3D surface (gyroid) as an stl file

26 views (last 30 days)
Hi,
I'm a final year Mechanical Engineering student and for my final year project I'm studying the deformational behaviour of gyroids under several loading conditions. Currently I have managed to create a the gyroid's surface but I'm struggling to export the surface as an stl file. I've tried using the stlwrite function but it gives an error message saying "Input argument must be a triangulation object". I then tried to triangulate the gyroid surface using several methods but was unsuccessful. Here is the code:
clear all
close all
clc
x_period = 4;
y_period = 4;
z_period = 4;
% Setting meshgrid
[x, y, z] = meshgrid(0:0.1:x_period*pi, 0:0.1:y_period*pi, 0:0.1:z_period*pi)
% Gyroid equation
v = cos(x).*sin(y) + cos(y).*sin(z) + cos(z).*sin(x);
figure(1)
isosurface(x,y,z,v)
axis equal
xlabel ('X')
ylabel ('Y')
zlabel ('Z')
hold on
Any idea how I could save this figure as an stl file?
Thanks
  2 Comments
迪迪 赵
迪迪 赵 on 24 Nov 2021
I have the same problem. Have you solved it? Can you tell me how to solve it? thank you!

Sign in to comment.

Answers (1)

Henrique Ramos
Henrique Ramos on 2 May 2020
Dear Daniel
Use the stlwrite export (file exchange), find for download at,
set the .m file at the same path, and run this code, at the your .m (gyroid)
fv = isosurface(x,y,z,v);
stlwrite('Gyroid.stl',fv)
  4 Comments
Henrique Ramos
Henrique Ramos on 16 Feb 2022
The code is simple like that, and the main thing is the file stlwrite from the link, as I mentioned, should be in the same folder.
Use the stlwrite export (file exchange), find for download at,
% Number of cells
x_period = 4;
y_period = 4;
z_period = 4;
% Mesh grid
[x,y,z] = meshgrid(0:0.1:x_period*pi, 0:0.1:y_period*pi, 0:0.1:z_period*pi);
% Gyroid Isosurface
f = ((cos(x).*sin(y))) + ((cos(y).*sin(z))) + ((cos(z).*sin(x)));
% PLot Figure
figure(1)
isosurface(x,y,z,f)
axis equal
xlabel('X')
ylabel('Y')
zlabel('Z')
% Name STL and write
stlwrite('Gyroid.stl',isosurface(x,y,z,f))
MITHILESH KURUP
MITHILESH KURUP on 16 Feb 2022
Hello Henrique,
The file stlwrite from the link and the main code, both are in the same folder only.
But, unfortunately it is still giving the same error as before:
Unable to write to Gyroid.stl
The version that I'm using is MATLAB R 2021 b. Could it be due to the current version that I'm using?
Thanks

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!