Creating Sphere using Cuboids of varying size

조회 수: 1 (최근 30일)
RAHUL JAISWAL
RAHUL JAISWAL 2021년 2월 22일
댓글: Walter Roberson 2021년 3월 7일
I want to make a sphere using cuboids. The radius of the sphere is 60 mm and I want to divide this whole radius in 12 units so that a single unit has a fixed size of 5mm (a single unit represents a cuboid of size, 5 mm x 5mm x 5mm). Each cuboid unit has its center fixed at some point along the radius. Now, within this unit, the size of the cuboid is varied according to value of b having the same center as previous cuboid (but the current size will be less because of varying cuboid size so that no overlapping between two cuboids). The size of the cuboid (b) is governed by the equation as;
b=5.698-16457*exp(-a/0.11)-8.373*exp(-a/1.092),
where the values of a is varied from 1 to 2 with a step of 0.1. I need a MATLAB code for this problem statement. What appraoch should be used? Thanks in advance.
  댓글 수: 2
darova
darova 2021년 2월 22일
Did you figure out how to plot a cuboid?
RAHUL JAISWAL
RAHUL JAISWAL 2021년 2월 23일
I have used patch function to make cube, which use vertices and faces information to make cube. However, I need to make a cube using its center and sidelength. Plotcube function was used to make the cube using these two variable, but it is not working. Any suggestion?

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

채택된 답변

Walter Roberson
Walter Roberson 2021년 3월 3일
%assume center at xc, yc, zc
dx = sidelength/2;
%Left/Right, Front/Back, Down/Up
vertices = [
-1, -1, -1 %LFD 1
-1, -1, +1 %LFU 2
-1, +1, -1 %LBD 3
-1, +1, +1 %LBU 4
+1, -1, -1 %RFD 5
+1, -1, +1 %RFU 6
+1, +1, -1 %RBD 7
+1, +1, +1 %RBU 8
]
faces = [
1 5 7 3 %bottom
and so on to list the other faces
]
This describes a cuboid centered at 0 0 0 and sidelength 1.
Now multiply vertices by sidelength/2 and add xc to the first column, yc to the second column, zc to the third column, and the resulting set of vertices will describe a cube centered at xc, yc, zc, with the desired side length.
You can then patch() it with 'Faces', faces, 'Vertices', vertices
  댓글 수: 2
RAHUL JAISWAL
RAHUL JAISWAL 2021년 3월 7일
Thank you Walter for your reply. I will try to make cubes with the method provided by you. Thank you for your effort and help.
Walter Roberson
Walter Roberson 2021년 3월 7일
I just realized the above cube has side lengths 2 rather than 1 like I said, but the scale factor I said earlier should still be correct

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by