How to define the properties of an orthotropic material on Matlab
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello, I am doing dynamic calculations on Matlab by importing "STL" files in 3D format and I would like to know how to define the properties of an orthotropic material?
댓글 수: 0
채택된 답변
Shubham Khatri
2021년 7월 4일
Hello,
To import STL and define properties, please take a look at the following code.
model = createpde('thermal','steadystate');
gm = importGeometry(model,'SquareBeam.STL');
thermalProperties(thermalmodel,'ThermalConductivity',[80;10;80]) %for orthotropic thermal conductivity
Hope it helps.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!