summaryrefslogtreecommitdiff
path: root/Working_Examples/154/DEPENDENCIES/ch1_4.sce
diff options
context:
space:
mode:
authorSiddharth Agarwal2019-09-03 18:27:40 +0530
committerSiddharth Agarwal2019-09-03 18:27:40 +0530
commit8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch)
treee1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/154/DEPENDENCIES/ch1_4.sce
parent52a477ec613900885e29c4a0b02806a415b4f83a (diff)
downloadXcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.gz
Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.bz2
Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.zip
Xcos examples from textbooks and for blocksHEADmaster
Diffstat (limited to 'Working_Examples/154/DEPENDENCIES/ch1_4.sce')
-rwxr-xr-xWorking_Examples/154/DEPENDENCIES/ch1_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/Working_Examples/154/DEPENDENCIES/ch1_4.sce b/Working_Examples/154/DEPENDENCIES/ch1_4.sce
new file mode 100755
index 0000000..4a00b66
--- /dev/null
+++ b/Working_Examples/154/DEPENDENCIES/ch1_4.sce
@@ -0,0 +1,14 @@
+clc
+disp("Example 1.4")
+printf("\n")
+printf("Given")
+disp("Potential difference is 50V")
+disp("Charge per minute is 120C/min")
+V=50;x=120;
+//As Electrical energy is to be calculated charge per minute is to be converted in charge per second
+//Charge per second is nothing but the current
+i=x/60;
+P=i*V;
+//Since is 1W=1J/s
+printf("Rate of energy conversion is %dJ/s\n",P)
+