summaryrefslogtreecommitdiff
path: root/3802/CH1/EX1.7/Ex1_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3802/CH1/EX1.7/Ex1_7.sce')
-rw-r--r--3802/CH1/EX1.7/Ex1_7.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3802/CH1/EX1.7/Ex1_7.sce b/3802/CH1/EX1.7/Ex1_7.sce
new file mode 100644
index 000000000..fb1278418
--- /dev/null
+++ b/3802/CH1/EX1.7/Ex1_7.sce
@@ -0,0 +1,16 @@
+//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex1_7.sce
+
+clc;
+clear;
+printf("\n From the given plots the waveform of voltage is the time integral of the current wave.So the electric device must be capacitor\n")
+
+t=2; //time in seconds
+V=100; //voltage of elecric device(capacitor) in volts
+I=5; //capacitance (electric devce) current in amphere
+C=(I*t)/V;
+printf("\n So the value of capacitance=%1.1f farads",C)