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 /281/CH3/EX3.1 | |
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 '281/CH3/EX3.1')
-rwxr-xr-x | 281/CH3/EX3.1/example3_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/281/CH3/EX3.1/example3_1.sce b/281/CH3/EX3.1/example3_1.sce new file mode 100755 index 000000000..eb140a16d --- /dev/null +++ b/281/CH3/EX3.1/example3_1.sce @@ -0,0 +1,14 @@ +disp('chapter 3 ex3.1')
+disp('given')
+disp('resistor connected R1=Rs=47kohms')
+R1=47000
+Rs=47000
+disp('IB(max)=500nA and Ii(offset)=20nA')
+IBmax=500*10^(-9)
+Iioffset=20*10^(-9)
+disp('V(max)=IB(max)*Rs')
+Vmax=IBmax*Rs
+disp('volt',Vmax)
+disp('Vioffset=Ii(offset)*Rs')
+Vioffset=Iioffset*Rs
+disp('volt',Vioffset)
\ No newline at end of file |