diff options
Diffstat (limited to '2330/CH10/EX10.6/ex10_6.sce')
-rwxr-xr-x | 2330/CH10/EX10.6/ex10_6.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2330/CH10/EX10.6/ex10_6.sce b/2330/CH10/EX10.6/ex10_6.sce new file mode 100755 index 000000000..e1aec98fc --- /dev/null +++ b/2330/CH10/EX10.6/ex10_6.sce @@ -0,0 +1,13 @@ +// Example 10.6
+format('v',6)
+clc;
+clear;
+close;
+// given data
+V_CC= 30;// in V
+PP= V_CC;// in V
+R_L= 100;// in Ω
+// The value of P_Lmax
+P_Lmax= PP^2/(8*R_L);// in W
+disp(PP,"The value of PP in volts is : ")
+disp(P_Lmax,"The value of P_Lmax in W is : ")
|