diff options
Diffstat (limited to '3769/CH7/EX7.13/Ex7_13.sce')
-rw-r--r-- | 3769/CH7/EX7.13/Ex7_13.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3769/CH7/EX7.13/Ex7_13.sce b/3769/CH7/EX7.13/Ex7_13.sce new file mode 100644 index 000000000..b2eb77f35 --- /dev/null +++ b/3769/CH7/EX7.13/Ex7_13.sce @@ -0,0 +1,14 @@ +clear +//Given +V=200 //V +P=500.0 //W +V1=160 //v + +//Calculation +R=V**2/P +H=V1**2/R +P1=P-H +H1=P1*100/P + +//Result +printf("\n Heat percentage is %0.3f percentage", H1) |