필터 지우기
필터 지우기

matlap featool grid error

조회 수: 1 (최근 30일)
장현
장현 2022년 11월 12일
답변: Raghav 2023년 2월 9일
I want to use 'Refine' in grid but i can't because this error : [featool geom_decompose : wrong edge numbering]
How do i have to?
  댓글 수: 1
Precise Simulation
Precise Simulation 2023년 1월 26일
This was probably due to a bug. It should have been fixed in the latest release. Either update your version, or decrease the grid size and remesh.

댓글을 달려면 로그인하십시오.

답변 (1개)

Raghav
Raghav 2023년 2월 9일
Hi,
After reading your question, I understand that you want to know about the implementation of the refine function.
The error message you are encountering, "[featool geom_decomposed : wrong edge numbering]," might be due to the problem with the edge numbering in a geometric decomposition in the FEATool (Finite Element Analysis Toolbox) for MATLAB.
To resolve this issue, you can try the following steps:
  1. Check the input geometry to make sure that it is properly defined and that all edges are correctly connected to the vertices.
  2. Make sure the edge numbering is consistent and correct.
  3. If the error persists, try to simplify the geometry by removing unnecessary details and retry the refine function.
Also, you can use interp2 function, whose documentation can be found from below mentioned link:
The below mentioned example can help you to better understand the interp2 function:
[X,Y] = meshgrid(-3:3);
V = peaks(X,Y);
figure
surf(X,Y,V)
title('Original Sampling');
[Xq,Yq] = meshgrid(-3:0.25:3);
Vq = interp2(X,Y,V,Xq,Yq);
figure
surf(Xq,Yq,Vq);
title('Linear Interpolation Using Finer Grid');
Regards,
Raghav Bansal

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by