Question

14 レ O. S 360 211.2レ| 215.24 214 in 21. 2 21.2 | 198. SVI 186. 6 vi L+ 214 360

please write this table in computer after that
a)drawing this relation with exail app or matlab (two figeres -a without capacitor b-with capascitor ) where x axis is km and y axis voltage .
b)describe this relation .
note :(please write all solutions with computer font )

0 0
Add a comment Improve this question Transcribed image text
Answer #1

km CurrentUA 144 216 0.5 A211.2 195.8186.7 360 144 216 0.5 A 211.2 213.3209.4 360 211.2203.3 197.8 211.2172.2150.2 211.2215.9

a) % MATLAB code for plotting data:

km = [144 216 360];

% Voltage without capacitor
ua = [211.2 211.2 211.2];
ub = [203.3 195.8 172.2];
uc = [197.8 186.7 150.2];

% Voltage with capacitor
ua_c = ua;
ub_c = [215.9 213.3 198.3];
uc_c = [214.1 209.4 186.6];

figure;plot(km, ua,);
hold on
plot(km, ub);
plot(km, uc);
xlim([min(km) max(km)]);
legend('Ua', 'Ub', 'Uc');
title('Figure (a): Distance vs Voltage without Capacitor');
xlabel(' Distance (km) ----->');
ylabel('Voltage (V) ----->');

figure;plot(km, ua_c);
hold on
plot(km, ub_c);
plot(km, uc_c);
xlim([min(km) max(km)]);
legend('Ua', 'Ub', 'Uc');
title('Figure (b): Distance vs Voltage with Capacitor');
xlabel(' Distance (km) ----->');
ylabel('Voltage (V) ----->');

Figure (a): Distance vs Voltage without Capacitor 220 Uc 210 200 190 180 170 160 F 150 160 180 200 220 240 260 280 300 320 34

Figure (b): Distance vs Voltage with Capacitor Ua 220 Uc 215 210 205 F 9 200 195 190 300 320 340 360 260 280 240 Distance (km

b) Ua remains constant with increasing km in case of both with and without capacitor.

   Ub and Uc decrease with increasing km. Uc value is less than Ub and Uc decreases faster than Ub.

   Ub and Uc have higher value in case of with capacitor though their general behaviour as mentioned in
   previous sentence is same in case of both with and without capacitor.

Add a comment
Know the answer?
Add Answer to:
Please write this table in computer after that a)drawing this relation with exail app or matlab (...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Please use matlab to code this program. Write a computer program that takes as input an angle β and the components of a...

    Please use matlab to code this program. Write a computer program that takes as input an angle β and the components of a position vector in frame A (i.e. r). The transformation from frame A to frame B is a rotation about the 1-axis. Your code should calculate the DCM CAB, and the components of the vector in frame B (i.e.rB. Your code should output all of the following, including a label and units (if applicable) for each: CAB 4.8...

  • Hi it's python I imported a data which are so many words in txt and I arranged and reshaped with ...

    Hi it's python I imported a data which are so many words in txt and I arranged and reshaped with alphabetically both rows and columns I was successful with these steps but I am stuck with next step below is my code and screenshot import numpy as np import pandas as pd data=pd.read_csv("/Users/superman/Downloads/words_file2.txt",header=None) df_input=pd.DataFrame(data) df_output=pd.DataFrame(np.arange(676).reshape((26,26)), index = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'], columns = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']) df_output.index.name="Start" df_output.columns.name="End" df_output This below screen shot is what I have to find I have to find each word...

  • Code is in C# Your instructor would like to thank to Marty Stepp and Hélène Martin...

    Code is in C# Your instructor would like to thank to Marty Stepp and Hélène Martin at the University of Washington, Seattle, who originally wrote this assignment (for their CSE 142, in Java) This program focuses on classes and objects. Turn in two files named Birthday.cs and Date.cs. You will also need the support file Date.dll; it is contained in the starter project for this assignment. The assignment has two parts: a client program that uses Date objects, and a...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT