diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /74/CH10/EX10.11/example11_sce.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '74/CH10/EX10.11/example11_sce.sce')
-rwxr-xr-x | 74/CH10/EX10.11/example11_sce.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/74/CH10/EX10.11/example11_sce.sce b/74/CH10/EX10.11/example11_sce.sce new file mode 100755 index 000000000..e4eb95529 --- /dev/null +++ b/74/CH10/EX10.11/example11_sce.sce @@ -0,0 +1,19 @@ +//chapter10
+//example 10.11
+//page 10.11
+Vo=5;Io=50*10^-3;
+Isc=75*10^-3;Vin=15;
+Vsense=.6;Vref=7;
+I=1*10^-3;//current through R1 and R2
+R2=Vo/I;
+disp(R2)
+VR1=Vref-Vo;//voltage across R1
+disp(VR1)
+R1=VR1/I;
+disp(R1)
+R3=R1*R2/(R1+R2);//R3=R1||R2
+disp(R3)
+Rsc=Vsense/Isc;
+disp(Rsc)
+C1=7.4*10^-6/10;
+disp(R1,R2,R3,Rsc,C1)//component value
\ No newline at end of file |