Convert MATLAB Mesh to Abaqus

버전 1.0.2 (1.76 KB) 작성자: Ayad Al-Rumaithi
Generates Abaqus input file (.inp) using nodes coordinates and elements connectivity in MATLAB
다운로드 수: 541
업데이트 날짜: 2019/4/25

라이선스 보기

function Matlab2Abaqus(Nodes,Elements,Elements_Sets,Filename)

Input:
----------
Nodes: Nodes coordinates matrix of size (N*2) for 2D or (N*3) for 3D problems.

Elements: A cell array containing the connectivity of elements in the form:
Elements{i}=[node_1 node_2 .......node_n] where i is the element index and node_1 to node_n are the nodes indices where element i is connected to.

Elements_Sets:Specify element set in the form of:
Elements_Sets{j}.Name: the name of the j-th element set
Elements_Sets{j}.Elements_Type: A keyword for elements type in j-th element set such as "CPS3" for constant strain triangle. More keywords are found in Abaqus Keywords Manual.
Elements_Sets{j}.Elements: a vector for all element indices in this j-th element set.

Filename: Full path of the input file containing the folder, name of the file and extension such as: 'D:\Example.inp'

Output:
-----------
Input file is generated with the specified location and name and ready to be imported by Abaqus

Example file is also provided with the function

인용 양식

Ayad Al-Rumaithi (2024). Convert MATLAB Mesh to Abaqus (https://www.mathworks.com/matlabcentral/fileexchange/71339-convert-matlab-mesh-to-abaqus), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2017b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 STL (STereoLithography)에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.2

Title

1.0.1

Description

1.0.0