diff options
Diffstat (limited to '3850/CH38/EX38.5')
-rw-r--r-- | 3850/CH38/EX38.5/Ex38_5.sce | 29 | ||||
-rw-r--r-- | 3850/CH38/EX38.5/Ex38_5.txt | 4 |
2 files changed, 33 insertions, 0 deletions
diff --git a/3850/CH38/EX38.5/Ex38_5.sce b/3850/CH38/EX38.5/Ex38_5.sce new file mode 100644 index 000000000..0f754603d --- /dev/null +++ b/3850/CH38/EX38.5/Ex38_5.sce @@ -0,0 +1,29 @@ + +//To find the Time Constant Maximum Current and Time
+
+//Example 38.5
+
+clear;
+
+clc;
+
+L=20*10^-3;//Seld Inductance of Inductor
+
+R=100;//Resistance of the Resistor in ohms
+
+tau=L/R;//Time Constant of L-R circuit
+
+printf("(a) Time Constant =%.2f ms",tau*10^3);
+
+E=10;//EMF of Battery in Volts
+
+I=E/R;//Maximum Current in Amperes
+
+printf("\n (b) Maximum current = %.2f A",I);
+
+iper=0.99;//Current reaches 99% of the Maximum Value
+
+t=tau*-log(1-iper);//Time elapsed befor the current reaches 99% of the maxium value
+
+printf("\n (c) Time elapsed before the current reaches 99 percent of the maximum value = %.2f ms",t*10^3);
+
diff --git a/3850/CH38/EX38.5/Ex38_5.txt b/3850/CH38/EX38.5/Ex38_5.txt new file mode 100644 index 000000000..fcd5c6f1a --- /dev/null +++ b/3850/CH38/EX38.5/Ex38_5.txt @@ -0,0 +1,4 @@ + + (a) Time Constant =0.20 ms
+ (b) Maximum current = 0.10 A
+ (c) Time elapsed before the current reaches 99 percent of the maximum value = 0.92 ms
\ No newline at end of file |