Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I want to plot the change of deltaP respect to I and S in the same figure on MATLAB.Here is code: S=1; I=0.1; while I
I want to plot the change of deltaP respect to I and S in the same figure on MATLAB.Here is code:
S=1; I=0.1; while I<0.9 while S<5 F=96485; Q=I/(4*F)*S/0.21*(8.314*343)/(130000-30866); v=Q/(3*0.1*0.1); Re=(0.0012*v*0.1)/0.000272; f=56/Re; deltaP=f*41.6/0.1*1.20*v^2/2+(5*30*f)*1.20*v^2/2; disp(deltaP); S=S+1; break end I=I+0.1; end
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