diff options
Diffstat (limited to '2075/CH3/EX3.11/pe3_11.sce')
-rwxr-xr-x | 2075/CH3/EX3.11/pe3_11.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2075/CH3/EX3.11/pe3_11.sce b/2075/CH3/EX3.11/pe3_11.sce new file mode 100755 index 000000000..aff0fd1a9 --- /dev/null +++ b/2075/CH3/EX3.11/pe3_11.sce @@ -0,0 +1,16 @@ +//example 3.11
+clc; funcprot(0);
+// Initialization of Variable
+V=7.2;
+Rq=.2;
+Rl=4;
+D=.6;
+//calculation
+Ip=V/(Rq+Rl);
+Vl=Ip*Rl;
+P=D*Vl*Ip;
+disp(P,"power dissipated in watt:")
+Vq=Ip*Rq;
+Pq=D*Vq*Ip;
+disp(Pq,"power dissipated when transistor resistance is 0.2 hm in watt:")
+clear()
|