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 /2330/CH10/EX10.4 | |
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 '2330/CH10/EX10.4')
-rwxr-xr-x | 2330/CH10/EX10.4/ex10_4.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2330/CH10/EX10.4/ex10_4.sce b/2330/CH10/EX10.4/ex10_4.sce new file mode 100755 index 000000000..ae063b189 --- /dev/null +++ b/2330/CH10/EX10.4/ex10_4.sce @@ -0,0 +1,22 @@ +// Example 10.4
+format('v',6)
+clc;
+clear;
+close;
+// given data
+V_CC= 40;// in V
+V_BE= 0.7;// in V
+R= 1*10^3;// in Ω
+R_L= 10;// in Ω
+V_CEQ= 20;// in V
+I_CQ= (V_CC-2*V_BE)/(2*R);// in A
+// The value of P_DQ
+P_DQ= V_CEQ*I_CQ;// in W
+disp(P_DQ,"The value of P_DQ in W is : ")
+PP= 2*V_CEQ;// in V
+// The value of P_Lmax
+P_Lmax= PP^2/(8*R_L);// in W
+// The value of P_Dmax
+P_Dmax= PP^2/(40*R_L);// in W
+disp(P_Lmax,"The value of P_Lmax in W is : ")
+disp(P_Dmax,"The value of P_Dmax in W is : ")
|