A boiler is constructed of 8-mm-thick steel plates that are fastened together at their ends using a butt joint consisting of two 8-mm cover plates and rivets having a diameter of 10 mm and spaced 50 mm apart as shown. If the steam pressure in the boiler is 1.35 MPa, determine (a) the circumferential stress in the boiler's plate away from the seam, (b) the circumferential stress in the outer cover plate along the rivet line a-a, and (c) the shear stress in the rivets.
Day 12 A while loop will only execute when the conditions are met Golden rule for while loops: your variable has to change within the loop First line is while(condition); last line is end If you are stuck in a loop, do Ctrl + C Write a code for how long it will take to pay back the loan It will go through first with A=100, then new A will be 50, and m will be 0+1 = 1. Then it will go through with A=50, and then m=1+1=2, and so on until A is right above 15. These are not sum questions so if you are trying to add them all up, you need a new variable Question: Question 2: Answer for part 1b) Exercise Part e) m=1; j=0; A=0; while A<50000 m=m+2; A=A(j^2*(1)^m;) end Day 13 Nested Loops you can have ‘for’ and ‘while’ loops in one; this is a nested loop the following code words/commands can only work with loops, not the ‘if’ statement (they will not affect the if statement): 1) break: terminates the execution of a lo