Two copper-constantan thermocouples with 1132 and 1116 in diameters are dipped into ice water from ambient (75F). The heat-transfer coefficient to the thermocouples is 1,500 Btu/h.ft2F. Determine the output from each thermocouple in 1,5 and 10 s. Estimate the time beyond which they will read the same temperature (within 0.1 F). Assume the properties of copper-constantan to be the same as those of copper and assume that the junction is spherical.
BE 1500 – Fall 2016 HW 5 Due: October 13, 2016 (1:30 P.M.) 1. Write a code for repmat; the only built-in commands you are allowed to use are input, size, and disp. A=input('matrix '); [m,n]=size(A); z=input('replicated rows '); y=input('replicated columns '); for i=1:m for j=1:n B(i:m:z*m,j:n:y*n)=A(i,j); end end disp(B) 4 points 1 point for comments 1 point for setting up outermost loop (1:m) 1 point for setting up innermost loop (1:n) 1 point for correct answer There are other ways to do this code other than what was given; check to see their correct answers. Take off 1 point per bui