diff options
Diffstat (limited to '1319/CH12/EX12.3/i_3.sce')
-rw-r--r-- | 1319/CH12/EX12.3/i_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1319/CH12/EX12.3/i_3.sce b/1319/CH12/EX12.3/i_3.sce new file mode 100644 index 000000000..3b37ff918 --- /dev/null +++ b/1319/CH12/EX12.3/i_3.sce @@ -0,0 +1,11 @@ +// To Calculate the average voltage.
+clc;
+clear;
+
+W=500;
+I=40;
+t=15*(10^-3);
+
+V=W/(I*t);
+
+disp('volts',V,'The Average volatage across the terminals of the device =')
|