summaryrefslogtreecommitdiff
path: root/2021/CH21/EX21.4/Ex21_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH21/EX21.4/Ex21_4.sce')
-rwxr-xr-x2021/CH21/EX21.4/Ex21_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2021/CH21/EX21.4/Ex21_4.sce b/2021/CH21/EX21.4/Ex21_4.sce
new file mode 100755
index 000000000..76e659259
--- /dev/null
+++ b/2021/CH21/EX21.4/Ex21_4.sce
@@ -0,0 +1,14 @@
+//Finding of Power, Working ,Idle Period
+//Given
+H=12;
+t=100;
+W=98100;
+v=0.6;
+w=981*12;
+//To Find
+P=w/1000;
+T1=H/v;
+T2=100-T1;
+disp("Power Required ="+string(P)+" Kilo watt");
+disp("Time for working ="+string(T1)+" seconds");
+disp("Idle Time ="+string(T2)+" seconds");