diff options
Diffstat (limited to '1628/CH4/EX4.8')
-rwxr-xr-x | 1628/CH4/EX4.8/Ex4_8.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1628/CH4/EX4.8/Ex4_8.sce b/1628/CH4/EX4.8/Ex4_8.sce new file mode 100755 index 000000000..67b9a7e6f --- /dev/null +++ b/1628/CH4/EX4.8/Ex4_8.sce @@ -0,0 +1,16 @@ + + // Examle 4.8 + +Voc=12.6; // Voltage of car battery +Isc=300; // Short-circuit current +Ro=Voc/Isc; // O/p resistance + + // { P=Vht^2/4Rth } , but here Vth= Voc & Rth= Ro +Pavl=Voc^2/(4*Ro); // Available power +disp(' Available power is = '+string(Pavl)+ ' Watt'); + + + + + + // p 114 4.8
\ No newline at end of file |