summaryrefslogtreecommitdiff
path: root/1754/CH9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1754/CH9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1754/CH9')
-rwxr-xr-x1754/CH9/EX9.1/Exa9_1.sce14
-rwxr-xr-x1754/CH9/EX9.2/Exa9_2.sce12
-rwxr-xr-x1754/CH9/EX9.3/Exa9_3.sce11
3 files changed, 37 insertions, 0 deletions
diff --git a/1754/CH9/EX9.1/Exa9_1.sce b/1754/CH9/EX9.1/Exa9_1.sce
new file mode 100755
index 000000000..aa6acfa99
--- /dev/null
+++ b/1754/CH9/EX9.1/Exa9_1.sce
@@ -0,0 +1,14 @@
+//Exa 9.1
+clc;
+clear;
+close;
+//Given data :
+VBB=20;//in volt
+VB=0.7;//in volt(For Si)
+ETA=0.6;//intrinsic stand off ratio
+//Part (i)
+StandOffVoltage=ETA*VBB;//in volt
+disp(StandOffVoltage,"Stand Off Voltage in volts :");
+//Part (ii)
+VP=ETA*VBB+VB;//in volts
+disp(VP,"Peak point Voltage in volts : "); \ No newline at end of file
diff --git a/1754/CH9/EX9.2/Exa9_2.sce b/1754/CH9/EX9.2/Exa9_2.sce
new file mode 100755
index 000000000..4da62e972
--- /dev/null
+++ b/1754/CH9/EX9.2/Exa9_2.sce
@@ -0,0 +1,12 @@
+//Exa 9.2
+clc;
+clear;
+close;
+//Given data :
+VP=10;//in volt
+R=100;//in Kohm
+C=1000;//in pF
+VBB=20;//in Volts
+ETA=VP/VBB;//intrinsic stand off ratio
+T=R*10^3*C*10^-12*log(1/(1-ETA));//in sec
+disp(T*10^6,"Time period of sawtooth wave in miro seconds : ") \ No newline at end of file
diff --git a/1754/CH9/EX9.3/Exa9_3.sce b/1754/CH9/EX9.3/Exa9_3.sce
new file mode 100755
index 000000000..a9f7856ce
--- /dev/null
+++ b/1754/CH9/EX9.3/Exa9_3.sce
@@ -0,0 +1,11 @@
+//Exa 9.3
+clc;
+clear;
+close;
+//Given data :
+RBB=10;//in Kohm
+ETA=0.6;//intrinsic stand off ratio
+RB1=ETA*RBB;//in Kohm
+RB2=RBB-RB1;//in Kohm
+disp(RB1,"Resistance RB1 in Kohm :");
+disp(RB2,"Resistance RB2 in Kohm :"); \ No newline at end of file