summaryrefslogtreecommitdiff
path: root/3802/CH13/EX13.1/Ex13_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3802/CH13/EX13.1/Ex13_1.sce')
-rw-r--r--3802/CH13/EX13.1/Ex13_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3802/CH13/EX13.1/Ex13_1.sce b/3802/CH13/EX13.1/Ex13_1.sce
new file mode 100644
index 000000000..65b0ddeb7
--- /dev/null
+++ b/3802/CH13/EX13.1/Ex13_1.sce
@@ -0,0 +1,18 @@
+//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex13_1.sce.
+
+clc;
+clear;
+Vc=60;
+V_not=120;
+t=20;
+C=10e-6;
+R=-t/(C*log(Vc/V_not));
+printf("\n The value of resistance=%1.3f mega_ohm",R*1e-6)
+
+
+