diff options
Diffstat (limited to '2192/CH10/EX10.1/10_1.sce')
-rwxr-xr-x | 2192/CH10/EX10.1/10_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2192/CH10/EX10.1/10_1.sce b/2192/CH10/EX10.1/10_1.sce new file mode 100755 index 000000000..a9d53b5ac --- /dev/null +++ b/2192/CH10/EX10.1/10_1.sce @@ -0,0 +1,11 @@ +clc,clear +printf('Example 10.1\n\n') + +current = 3 +voltage=250 +lumens= 9420 //total lumens emitted by lamp +MSCP = lumens /(4*%pi) //mean spherical candle power +printf('(i)Mean spherical candle power = %.2f',MSCP) +power= current*voltage //power of lamp +efficiency = lumens / power //efficiency of lamp +printf('\n(ii)Efficiency of lamp = %.2f lumens/watt',efficiency) |