Answered step by step
Verified Expert Solution
Question
1 Approved Answer
COMPLETE PART B AND USE NEWTON RAPHSON ITERATION METHOD SO SOLVE WHAT IS a and b. The answer should be 0.79 and 0.19 ish Question
COMPLETE PART B AND USE NEWTON RAPHSON ITERATION METHOD SO SOLVE WHAT IS a and b.
The answer should be 0.79 and 0.19 ish
Question 1 Box-shaped design are commonly seen for small satellites. The box-shaped design is simple and easy to manufacture. However, the box-shaped design requires careful calculation of the dimensions, so that the expandable solar panels can be mounted on the satellite when folded. Figure 1 shows the unfolding process of a box-shaped satellite with the solar panels mounted on the side and bottom faces. For this satellite, to ensure the power supply, nine solar panels are mounted on the side and bottom faces, where eight of them on the side faces are foldable. The ninth on the bottom face is fixed on the bottom face and is not seen in Figure 1. Figure 1: Unfolding process of solar panels on a box-shaped satellite. The production cost of the solar panels depends on their total area A, which is further determined by the designable dimensions of the satellite. Let us assume that top and bottom faces of the satellite are both square with edge length a, and the height between the two faces is b, then the total area of the solar panels is given by A = a+8ab The capability of this satellite for carrying payload is determined by the volume of the satellite, denoted by V, which also depends on the designable dimensions a and b, namely Va2b. In this question, we assume that the V = 0.125 m, and the thickness of the solar panels is not included in the payload volume. Therefore, to minimise the total cost of the satellite, we need to find the optimal designable dimensions a and b. (a) Write a MATLAB function named Solar PanelArea.m to calculate the total area A of the solar panels. In case of need, use the file name Solar Panel AreaDeriv.m for the derivative, and file name Solar Panel AreaDeriv2.m for the second derivative. The headers of the functions must be function area function areaDeriv = SolarPanel AreaDeriv(a) function areaDeriv2 Solar PanelArea(a) Solar Panel AreaDeriv2(a) Page 2 of 1 [5 MARKS] (b) Write a MATLAB script to find the optimal designable dimensions a and b that minimise the total area A of the solar panels. The script must be named optimalDimensions.m. The last line of the script must be fprintf('The optimal dimensions are a %f m and b = %f m. ', a, b); In your report, detail the process you have followed to find the optimal dimensions, generate plots when necessary. The precision of your results must be of 10-9 or higher in terms of absolute tolerance, please indicate the stopping criteria you have chosen. [10 MARKS]
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started