diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /863/CH2/EX2.11/Ex2_11.txt | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '863/CH2/EX2.11/Ex2_11.txt')
-rw-r--r-- | 863/CH2/EX2.11/Ex2_11.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/863/CH2/EX2.11/Ex2_11.txt b/863/CH2/EX2.11/Ex2_11.txt new file mode 100644 index 000000000..7818798be --- /dev/null +++ b/863/CH2/EX2.11/Ex2_11.txt @@ -0,0 +1,16 @@ +//Caption:Calculate output voltage for (a)10V and (b)20V
+//Ex2.11
+clc;
+clear;
+close;
+E1=10//Input voltage(in volts)
+E2=20//Input voltage(in volts)
+c=1//Capacitance(in micro farad)
+r=1//Resistance(in kilo ohm)
+t=100//Pulse width(in ms)
+i1=(c*E1*10^(-6))/(t*10^(-3))
+eo1=i1*r*1000
+disp(eo1,'Output voltage for (a)(in volts)=')
+i2=(c*E2*10^(-6)/(t*10^(-3)))
+eo2=i2*r*1000
+disp(eo2,'Output voltage for (b)(in volts)=')
\ No newline at end of file |