Importing Solidworks 2D Geometry into MATLAB
Ältere Kommentare anzeigen
Hello, I'm quite new to MATLAB but I was wondering, how can I import 2D Geometry coordinates from Solidworks into MATLAB? The ultimate goal would to get these geometry coordinates (specifically the distance from the origin to the Y coordinate of the contour, which the geometry is half of a rocket engine contour), to get the datapoints of the ratio of Area/Area of the throat along the entire contour.
Hopefully that makes sense,
Thank you for any help
3 Kommentare
Mario Malic
am 29 Sep. 2023
I am not sure if MATLAB is suitable for this task. What are you trying to extract is not clear to me so please describe it in more detail. In the meantime I would suggest that you try VBA macros in SolidWorks to extract the data for your curve in the text format.
KSSV
am 29 Sep. 2023
In what format the file is? STL ? You can happily import stl files.
Matthew
am 1 Okt. 2023
Antworten (2)
Avni Agrawal
am 9 Okt. 2023
Bearbeitet: Avni Agrawal
am 9 Okt. 2023
Hi,
I understand that you want to import 2D geometry coordinates from Solidworks, specifically an STL file, into MATLAB. You can achieve this by using the "importGeometry" function in MATLAB's PDE Toolbox. You can find more information about this function in the MATLAB documentation here: https://in.mathworks.com/help/pde/ug/pde.pdemodel.importgeometry.html#bulkov_-4
Here's an example of how you can import geometry using the "importGeometry" function in MATLAB's PDE Toolbox:
% Create a PDE model
model = createpde();
% Import the geometry using the importGeometry function
importGeometry(model, 'rocket.stl');
% Plot the imported geometry
pdegplot(model, 'FaceLabels', 'on', 'FaceAlpha', 0.5);
% Further processing or analysis of the imported geometry can be done here
% Display a message to indicate successful geometry import
disp('Geometry imported successfully.');
To extract the coordinates from the STL file and import them into MATLAB, you can use the "stlread" function. Here is an example that demonstrates how to do this:
% Import the STL file using the stlread function
[vertices, faces] = stlread('rocket.stl');
% Extract the coordinates from the vertices
x = vertices(:, 1);
y = vertices(:, 2);
z = vertices(:, 3);
% Process the coordinates as needed
% (e.g., calculate distances, ratios, etc.)
% Your further MATLAB code goes here
% Display a message to indicate completion
disp('Coordinates imported successfully.');
I hope this explanation helps you with importing the 2D geometry coordinates from Solidworks into MATLAB.
4 Kommentare
Mario Malic
am 12 Okt. 2023
Mario Malic
am 15 Okt. 2023
What is the that curve you are trying to obtain the points from - arc, spline?
Mario Malic
am 15 Okt. 2023
0 Stimmen
Here is a SolidWorks macro, you have to select the edge and run the macro. Hopefully it works, otherwise you need to tell me what kind of curve is used to draw the edge.
Kategorien
Mehr zu Bodies finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
