Area, Centroid, and Moment of Inertia of a Polygon

버전 1.0.2 (1.17 KB) 작성자: Ayad Al-Rumaithi
Finds area, centroid, moment of Inertia and higher order moments of arbitrary polygonal shapes.
다운로드 수: 709
업데이트 날짜: 2019/6/17

라이선스 보기

Area=MOMENT(polygon,0,0)
Cx=MOMENT(polygon,1,0)/Area
Cy=MOMENT(polygon,0,1)/Area
Ixx=MOMENT(polygon,2,0)
Iyy=MOMENT(polygon,0,2)
Ixy=MOMENT(polygon,1,1)

where: the function MOMENT is defined as:

function M=MOMENT(polygon,m,n)
Input:
-------
Polygon is a structure contains coordinates vectors Polygon.x and Polygon.y
m:is the order of moment in x-direction
n:is the order of moment in y-direction

Output:
----------
M: Moment

References:
------------------
Kawakami, M., and Amin Ghali. "Time-dependent stresses in prestressed concrete sections of general shape." PCI journal 41.3 (1996).

인용 양식

Ayad Al-Rumaithi (2024). Area, Centroid, and Moment of Inertia of a Polygon (https://www.mathworks.com/matlabcentral/fileexchange/70090-area-centroid-and-moment-of-inertia-of-a-polygon), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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

summary

1.0.1

description , pic

1.0.0